blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 3
264
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
85
| license_type
stringclasses 2
values | repo_name
stringlengths 5
140
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 986
values | visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 3.89k
681M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 23
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 145
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
10.4M
| extension
stringclasses 122
values | content
stringlengths 3
10.4M
| authors
listlengths 1
1
| author_id
stringlengths 0
158
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
578415c4b8d08c593869cdc6b7a87ed4904e2745
|
110e87a5810e56401252841f645c9d4e7b71b85b
|
/HackerRank/Greedy/GridChallenge/gridChallenge.cpp
|
ea4251be7db46170578ceb8794d6ebff7921f99a
|
[] |
no_license
|
lynntian/Code
|
8b917696eedf298bb7c24b5d53c9b68a7c45af48
|
7f93e5f3cd745d67b2a9a7b57147b9701ea30f08
|
refs/heads/master
| 2021-01-21T14:48:34.938721
| 2016-07-02T02:51:16
| 2016-07-02T02:51:16
| 57,042,489
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,150
|
cpp
|
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
bool canBeRearranged(vector<string>& in, int a, int b, int N, char& c)
{
if(a < 0 || b < 0 || a >= N || b >= N)
{
return true;
}
auto tmp = in[a].at(b);
//cout << "Current a, b, c: " << a << ", " << b << ", " << tmp << endl;
if( tmp < c) return false;
return canBeRearranged(in, a+1, b, N, tmp); //&& canBeRearranged(in, a+1, b, N, tmp);
}
bool helper(vector<string>& in, int N)
{
for(int i =0; i < N; i++)
{
if (! canBeRearranged(in, 0, i, N, in[0].at(i)))
return false;
}
return true;
}
int main() {
int T;
cin >> T;
for(int i = 0; i < T; i ++)
{
int N;
cin >> N;
auto in = vector<string>(N, "");
for(int j = 0; j < N; j++)
{
string tmp;
cin >> tmp;
sort(tmp.begin(), tmp.end());
in[j] = tmp;
}
if(helper(in, N))
{
cout << "YES" << endl;
}
else cout << "NO" << endl;
}
return 0;
}
|
[
"tianlingyu90@gmail.com"
] |
tianlingyu90@gmail.com
|
9125df7af7ccf65e4d8ecacc4384922af0cd2311
|
0bc4089e181c1a12d0783acaae450f24a66bf38e
|
/depart.cpp
|
c7cd1c12592b4739d92cfe122ef95fef60183d2b
|
[] |
no_license
|
djxone123456/CPP-bai-lam
|
a2c718631b7b18b483c9e3e501a57aefb252f432
|
28f8d3656ed91f3374ede9d0c9753616edba5630
|
refs/heads/master
| 2023-02-20T18:38:18.782369
| 2021-01-16T14:17:21
| 2021-01-16T14:17:21
| 288,203,213
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,935
|
cpp
|
#include <bits/stdc++.h>
#define MP make_pair
#define PB push_back
#define INF INT_MAX
#define PI 3.1415926535897932384626433832795
#define MOD 1000000007
using namespace std;
typedef pair <int, int> pi;
typedef long long ll;
typedef unsigned long long ull;
int n, cnt = 0, dd[900004], f[900004],sz, maxlen = 0;
int child[900004][40] = {};
string m;
void add(string s)
{
int node = 0;
for(int i = 0;i<s.size();i++)
{
int x = (int)s[i] - 'a';
if(child[node][x] == 0)
{
child[node][x] = ++cnt;
}
node = child[node][x];
}
dd[node] = 1;
}
int found(string s)
{
int node = 0, prevnode = 0;
for(int i = 0;i<s.size();i++)
{
int x = (int)s[i] - 'a';
if(child[node][x] == 0) return 0;
node = child[node][x];
}
return dd[node];
}
int trau(int pos)
{
if(pos > sz)
{
// cout<<1;
return 1;
}
int node = 0;
int &res = f[pos];
if(res != -1) return res;
res = 0;
for(int i = pos;i<=min(sz,pos + 100);i++)
{
int x = (int)m[i] - 'a';
if(child[node][x] == 0) break;
// cout<<pos<<endl;
node = child[node][x];
if(dd[node] == 1) res = (res + trau(i + 1)) % MOD;
}
return res;
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
#ifdef djxone123456
freopen("debug.inp","r",stdin);
freopen("debug.out","w",stdout);
#endif
freopen("depart.inp","r",stdin);
freopen("depart.out","w",stdout);
cin>>n;
for(int i = 1;i<=n;i++)
{
string s;
cin>>s;
add(s);
}
cin>>m;
m = '0' + m;
sz = m.size() - 1;
memset(f, 255, sizeof(f));
cout<<trau(1);
return 0;
}
|
[
"noreply@github.com"
] |
djxone123456.noreply@github.com
|
ba6f7afc5f59beed48842856c8b32a1ea0e96293
|
8dbbcdc463f915e53632de5a3ebcbb315b0f3b6c
|
/src/client/Client/EQComm/EQComm/CommonScene.cpp
|
99cf4dfa6349f04d6035055900f4b489d270a792
|
[] |
no_license
|
atom-chen/project_EQGame
|
75030023ccb1d244b9ca722daead72c90b178c62
|
5fb9d4af79cbaa78ce89075c35aa2a488440cf6e
|
refs/heads/master
| 2020-06-17T03:29:37.641027
| 2017-10-06T12:56:20
| 2017-10-06T12:56:20
| null | 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 998
|
cpp
|
#include "EQCommPCH.h"
#include "CommonScene.h"
#include "LogicTable.h"
#include "SceneManager.h"
#include "MainPlayer.h"
#include "EQGameMgr.h"
#include "EQCamera.h"
#include "GameState.h"
#include "EQOgreSys.h"
#include "ConfigOption.h"
#include "AmbientMgr.h"
CommonScene::CommonScene(int id) : EQGameScene(id)
{
addListener(new CommonSceneListener);
}
CommonScene::~CommonScene()
{
removeListener();
}
void CommonSceneListener::postCreateScene(EQGameScene* s)
{
sStateMgr.setState(GS_MAINGAME);
//室外还原阴影
EQOgreSys::getSingleton().setShadow(EQOgreSys::getSingleton().getConfigOption()->getShadow());
//初始化室外灯开关
// if(AmbientMgr::getSingleton().getDayNight())
// ZoneLightMgr::getSingleton().turnOffAllLights();
// else
// ZoneLightMgr::getSingleton().turnOnAllLights();
EQSceneManager::getSingleton().turnAllLight(!AmbientMgr::getSingleton().getDayNight());
//室外需要自动开关灯
AmbientMgr::getSingleton().setAutoTurnOnOffLight(true);
}
|
[
"892134825@qq.com"
] |
892134825@qq.com
|
138b5d845ae382413ce2b27be60ba98929e3438f
|
a2f40e310addf04461b7c0ac8cefbbfbecdeea74
|
/Codes/coding_practice_2.7/time.cpp
|
9e3e1e038bf2724bc32d475c18a9f6fb7287a985
|
[] |
no_license
|
CaptainXX/Notes
|
9549389b5982447cc35565c99caebb3f3a931d86
|
e6fd0acf0f9014ddf44c03a5f405d7204c2498a6
|
refs/heads/master
| 2020-03-25T20:51:29.360308
| 2018-08-30T09:46:02
| 2018-08-30T09:46:02
| 144,149,403
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 392
|
cpp
|
// time.cpp -- Show inputed time in a better form
#include <iostream>
void showtime(int h, int m);
int main()
{
using namespace std;
int h, m;
cout << "Enter the number of hours: ";
cin >> h;
cout << "Enter the number of minutes: ";
cin >> m;
showtime(h, m);
return 0;
}
void showtime(int h, int m)
{
using std::cout;
using std::endl;
cout << "Time: " << h << ":" << m << endl;
}
|
[
"670909183@qq.com"
] |
670909183@qq.com
|
81ddd8f4f650c50d4c7c56065a452e083969a1f8
|
27475d12a707df45a8a46cb2fcf9448718b7f74c
|
/ExpressionClassifier.cpp
|
7f3743614ce116c36ab6ef880742ce1f47e3ab04
|
[
"MIT"
] |
permissive
|
NitishNat/Emotion-Detecting-Hands-Free-Music-Player
|
78da486c052c236d86b955e3c0395d64e36e739b
|
19a776eea9004746731ed7af17e59ee3681e41c9
|
refs/heads/master
| 2020-06-23T21:20:28.000453
| 2019-07-25T04:41:41
| 2019-07-25T04:41:41
| 198,755,321
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,205
|
cpp
|
#include "ExpressionClassifier.h"
using namespace cv;
/*
sigma describes the classification sharpness. A larger sigma means the
boundary between different expressions is more blurry. It won't change
the classification, but will give you probabilities that are smoother.
*/
ExpressionClassifier::ExpressionClassifier()
:sigma(10.0) {
}
void ExpressionClassifier::save(string directory) const {
ofDirectory dir(directory);
dir.create(true);
for(int i = 0; i < size(); i++) {
string filename = dir.path() + "/" + expressions[i].getDescription() + ".yml";
cout << "saving to " << filename << endl;
expressions[i].save(filename);
}
}
void ExpressionClassifier::load(string directory) {
ofDirectory dir(directory);
dir.listDir();
int n = dir.size();
expressions.resize(n);
for(int i = 0; i < n; i++) {
expressions[i].load(dir.getPath(i));
}
}
unsigned int ExpressionClassifier::classify(const ofxFaceTracker& tracker) {
return classify(tracker.getObjectPointsMat());
}
unsigned int ExpressionClassifier::classify(const Mat& objectPoints) {
Mat cur;
objectPoints.copyTo(cur);
norm(cur);
int n = size();
probability.resize(n);
if(n == 0) {
return 0;
}
vector<vector<double> > val(n);
double sum = 0;
for(int i = 0; i < n; i++){
int m = expressions[i].size();
for(int j = 0; j < m; j++){
double v = norm(cur, expressions[i].getExample(j));
double p = exp(-v * v / sigma);
val[i].push_back(p);
sum += p;
}
}
for(int i = 0; i < n; i++){
probability[i] = 0;
int m = expressions[i].size();
for(int j = 0; j < m; j++) {
probability[i] += val[i][j];
}
probability[i] /= sum;
}
return getPrimaryExpression();
}
unsigned int ExpressionClassifier::getPrimaryExpression() const {
int maxExpression = 0;
double maxProbability = 0;
for(int i = 0; i < probability.size(); i++) {
double cur = getProbability(i);
if(cur > maxProbability) {
maxExpression = i;
maxProbability = cur;
}
}
return maxExpression;
}
double ExpressionClassifier::getProbability(unsigned int i) const {
if(i < probability.size()) {
return probability[i];
} else {
return 0;
}
}
string ExpressionClassifier::getDescription(unsigned int i) const {
return expressions[i].getDescription();
}
Expression& ExpressionClassifier::getExpression(unsigned int i) {
return expressions[i];
}
void ExpressionClassifier::setSigma(double sigma) {
this->sigma = sigma;
}
double ExpressionClassifier::getSigma() const {
return sigma;
}
unsigned int ExpressionClassifier::size() const {
return expressions.size();
}
void ExpressionClassifier::addExpression(string description) {
if(description == "") {
description = ofToString(expressions.size());
}
expressions.push_back(Expression(description));
}
void ExpressionClassifier::addExpression(Expression& expression) {
expressions.push_back(expression);
}
void ExpressionClassifier::addSample(const ofxFaceTracker& tracker) {
addSample(tracker.getObjectPointsMat());
}
void ExpressionClassifier::addSample(const Mat& objectPoints) {
if(size() == 0) {
addExpression();
}
expressions.back().addSample(objectPoints);
}
void ExpressionClassifier::reset() {
expressions.clear();
}
|
[
"nitishn2@illinois.edu"
] |
nitishn2@illinois.edu
|
6cdeacf410d4b4b9fabf10e37c35d98c4e03f739
|
9cfb4a81c228f3333e153aebf8fe149ee2fac81f
|
/tictactoe.cpp
|
4060373d7a2c0aa716f23d008826626f01d340c8
|
[] |
no_license
|
Jating73/Tic-Tac-Toe-Game
|
d45d1a5cb2d2845795702605cb590ffce52f9275
|
2c18a9c4a2ccc7f4b682bc874518957ffa6c9885
|
refs/heads/master
| 2022-11-28T10:57:10.175784
| 2020-08-08T19:49:38
| 2020-08-08T19:49:38
| 286,109,451
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,169
|
cpp
|
#include <bits/stdc++.h>
using namespace std;
char ch[10]={'0','1','2','3','4','5','6','7','8','9'};
int i,x,player;
char mark;
void showBoard();
int checkWin();
int main() {
player=1;
do{
showBoard();
if(player%2==0)
player=2;
else
player=1;
cout<<"Player "<<player<<endl;
cout<<"Enter your choice: ";
cin>>x;
if(player == 1)
mark='X';
else
mark='O';
if(x==1 && ch[x]=='1')
ch[x]=mark;
else if(x==2 && ch[x]=='2')
ch[x]=mark;
else if(x==3 && ch[x]=='3')
ch[x]=mark;
else if(x==4 && ch[x]=='4')
ch[x]=mark;
else if(x==5 && ch[x]=='5')
ch[x]=mark;
else if(x==6 && ch[x]=='6')
ch[x]=mark;
else if(x==7 && ch[x]=='7')
ch[x]=mark;
else if(x==8 && ch[x]=='8')
ch[x]=mark;
else if(x==9 && ch[x]=='9')
ch[x]=mark;
else{
cout<<"Invalid Move!"<<endl;
player--;
system("pause");
cin.ignore();
}
i=checkWin();
player++;
}while(i==0);
showBoard();
if(i==1)
{
cout<<"Player: "<<--player<<" Won!"<<endl;
}
else{
cout<<"Draw!"<<endl;
}
}
int checkWin(){
if(ch[1]==ch[2] && ch[2]==ch[3])
return 1;
else if(ch[4]==ch[5] && ch[5]==ch[6])
return 1;
else if(ch[7]==ch[8] && ch[8]==ch[9])
return 1;
else if(ch[1]==ch[4] && ch[4]==ch[7])
return 1;
else if(ch[2]==ch[5] && ch[5]==ch[8])
return 1;
else if(ch[3]==ch[6] && ch[6]==ch[9])
return 1;
else if(ch[1]==ch[5] && ch[5]==ch[9])
return 1;
else if(ch[3]==ch[5] && ch[5]==ch[7])
return 1;
else
return 0;
}
void showBoard()
{
system("cls");
cout<<"Tic-Tac-Toe Game"<<endl;
cout<<endl;
cout<<"Player 1: X Player 2: O"<<endl;
cout<<" | | "<<endl;
cout<<" "<<ch[1]<<" |"<<" "<<ch[2]<<" |"<<" "<<ch[3]<<endl;
cout<<"_____|_____|_____"<<endl;
cout<<" | | "<<endl;
cout<<" "<<ch[4]<<" |"<<" "<<ch[5]<<" |"<<" "<<ch[6]<<endl;
cout<<"_____|_____|_____"<<endl;
cout<<" | | "<<endl;
cout<<" "<<ch[7]<<" |"<<" "<<ch[8]<<" |"<<" "<<ch[9]<<endl;
cout<<" | | "<<endl;
}
|
[
"jatingambhir22@gmail.com"
] |
jatingambhir22@gmail.com
|
a7c839459482b19297ae7c4a6c48351045df628e
|
08d19b0dcce1d0cf666c538a8ff289f8beca63b8
|
/hdmap/ad_map/ad_map_access/impl/tests/generated/ad/map/landmark/ENULandmarkValidInputRangeTests.cpp
|
8aa4c576e223a895b539a49cc7db55cf3b5833d5
|
[] |
no_license
|
feiyuxiaoThu/IITS
|
faf8e84aeb8c4a412bc6f955149f9fdf0dd2d092
|
0f5cd710a6fff1c19795662f8032cb9e22575bd7
|
refs/heads/main
| 2023-06-26T11:19:22.680078
| 2021-07-29T11:26:59
| 2021-07-29T11:26:59
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 11,976
|
cpp
|
/*
* ----------------- BEGIN LICENSE BLOCK ---------------------------------
*
* Copyright (C) 2018-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
* ----------------- END LICENSE BLOCK -----------------------------------
*/
/*
* Generated file
*/
#include <gtest/gtest.h>
#include <limits>
#include "ad/map/landmark/ENULandmarkValidInputRange.hpp"
TEST(ENULandmarkValidInputRangeTests, testValidInputRange) {
::ad::map::landmark::ENULandmark value;
::ad::map::landmark::LandmarkId valueId(
std::numeric_limits<::ad::map::landmark::LandmarkId>::lowest());
value.id = valueId;
::ad::map::landmark::LandmarkType valueType(
::ad::map::landmark::LandmarkType::INVALID);
value.type = valueType;
::ad::map::point::ENUPoint valuePosition;
::ad::map::point::ENUCoordinate valuePositionX(-16384);
valuePosition.x = valuePositionX;
::ad::map::point::ENUCoordinate valuePositionY(-16384);
valuePosition.y = valuePositionY;
::ad::map::point::ENUCoordinate valuePositionZ(-16384);
valuePosition.z = valuePositionZ;
value.position = valuePosition;
::ad::map::point::ENUHeading valueHeading(-3.141592655);
value.heading = valueHeading;
::ad::map::landmark::TrafficLightType valueTrafficLightType(
::ad::map::landmark::TrafficLightType::INVALID);
value.trafficLightType = valueTrafficLightType;
ASSERT_TRUE(withinValidInputRange(value));
}
TEST(ENULandmarkValidInputRangeTests, testValidInputRangeTypeTooSmall) {
::ad::map::landmark::ENULandmark value;
::ad::map::landmark::LandmarkId valueId(
std::numeric_limits<::ad::map::landmark::LandmarkId>::lowest());
value.id = valueId;
::ad::map::landmark::LandmarkType valueType(
::ad::map::landmark::LandmarkType::INVALID);
value.type = valueType;
::ad::map::point::ENUPoint valuePosition;
::ad::map::point::ENUCoordinate valuePositionX(-16384);
valuePosition.x = valuePositionX;
::ad::map::point::ENUCoordinate valuePositionY(-16384);
valuePosition.y = valuePositionY;
::ad::map::point::ENUCoordinate valuePositionZ(-16384);
valuePosition.z = valuePositionZ;
value.position = valuePosition;
::ad::map::point::ENUHeading valueHeading(-3.141592655);
value.heading = valueHeading;
::ad::map::landmark::TrafficLightType valueTrafficLightType(
::ad::map::landmark::TrafficLightType::INVALID);
value.trafficLightType = valueTrafficLightType;
// override member with data type value below input range minimum
::ad::map::landmark::LandmarkType invalidInitializedMember(
static_cast<::ad::map::landmark::LandmarkType>(-1));
value.type = invalidInitializedMember;
ASSERT_FALSE(withinValidInputRange(value));
}
TEST(ENULandmarkValidInputRangeTests, testValidInputRangeTypeTooBig) {
::ad::map::landmark::ENULandmark value;
::ad::map::landmark::LandmarkId valueId(
std::numeric_limits<::ad::map::landmark::LandmarkId>::lowest());
value.id = valueId;
::ad::map::landmark::LandmarkType valueType(
::ad::map::landmark::LandmarkType::INVALID);
value.type = valueType;
::ad::map::point::ENUPoint valuePosition;
::ad::map::point::ENUCoordinate valuePositionX(-16384);
valuePosition.x = valuePositionX;
::ad::map::point::ENUCoordinate valuePositionY(-16384);
valuePosition.y = valuePositionY;
::ad::map::point::ENUCoordinate valuePositionZ(-16384);
valuePosition.z = valuePositionZ;
value.position = valuePosition;
::ad::map::point::ENUHeading valueHeading(-3.141592655);
value.heading = valueHeading;
::ad::map::landmark::TrafficLightType valueTrafficLightType(
::ad::map::landmark::TrafficLightType::INVALID);
value.trafficLightType = valueTrafficLightType;
// override member with data type value above input range maximum
::ad::map::landmark::LandmarkType invalidInitializedMember(
static_cast<::ad::map::landmark::LandmarkType>(-1));
value.type = invalidInitializedMember;
ASSERT_FALSE(withinValidInputRange(value));
}
TEST(ENULandmarkValidInputRangeTests, testValidInputRangePositionTooSmall) {
::ad::map::landmark::ENULandmark value;
::ad::map::landmark::LandmarkId valueId(
std::numeric_limits<::ad::map::landmark::LandmarkId>::lowest());
value.id = valueId;
::ad::map::landmark::LandmarkType valueType(
::ad::map::landmark::LandmarkType::INVALID);
value.type = valueType;
::ad::map::point::ENUPoint valuePosition;
::ad::map::point::ENUCoordinate valuePositionX(-16384);
valuePosition.x = valuePositionX;
::ad::map::point::ENUCoordinate valuePositionY(-16384);
valuePosition.y = valuePositionY;
::ad::map::point::ENUCoordinate valuePositionZ(-16384);
valuePosition.z = valuePositionZ;
value.position = valuePosition;
::ad::map::point::ENUHeading valueHeading(-3.141592655);
value.heading = valueHeading;
::ad::map::landmark::TrafficLightType valueTrafficLightType(
::ad::map::landmark::TrafficLightType::INVALID);
value.trafficLightType = valueTrafficLightType;
// override member with data type value below input range minimum
::ad::map::point::ENUPoint invalidInitializedMember;
::ad::map::point::ENUCoordinate invalidInitializedMemberX(-16384 * 1.1);
invalidInitializedMember.x = invalidInitializedMemberX;
value.position = invalidInitializedMember;
ASSERT_FALSE(withinValidInputRange(value));
}
TEST(ENULandmarkValidInputRangeTests, testValidInputRangePositionTooBig) {
::ad::map::landmark::ENULandmark value;
::ad::map::landmark::LandmarkId valueId(
std::numeric_limits<::ad::map::landmark::LandmarkId>::lowest());
value.id = valueId;
::ad::map::landmark::LandmarkType valueType(
::ad::map::landmark::LandmarkType::INVALID);
value.type = valueType;
::ad::map::point::ENUPoint valuePosition;
::ad::map::point::ENUCoordinate valuePositionX(-16384);
valuePosition.x = valuePositionX;
::ad::map::point::ENUCoordinate valuePositionY(-16384);
valuePosition.y = valuePositionY;
::ad::map::point::ENUCoordinate valuePositionZ(-16384);
valuePosition.z = valuePositionZ;
value.position = valuePosition;
::ad::map::point::ENUHeading valueHeading(-3.141592655);
value.heading = valueHeading;
::ad::map::landmark::TrafficLightType valueTrafficLightType(
::ad::map::landmark::TrafficLightType::INVALID);
value.trafficLightType = valueTrafficLightType;
// override member with data type value above input range maximum
::ad::map::point::ENUPoint invalidInitializedMember;
::ad::map::point::ENUCoordinate invalidInitializedMemberX(16384 * 1.1);
invalidInitializedMember.x = invalidInitializedMemberX;
value.position = invalidInitializedMember;
ASSERT_FALSE(withinValidInputRange(value));
}
TEST(ENULandmarkValidInputRangeTests, testValidInputRangeHeadingTooSmall) {
::ad::map::landmark::ENULandmark value;
::ad::map::landmark::LandmarkId valueId(
std::numeric_limits<::ad::map::landmark::LandmarkId>::lowest());
value.id = valueId;
::ad::map::landmark::LandmarkType valueType(
::ad::map::landmark::LandmarkType::INVALID);
value.type = valueType;
::ad::map::point::ENUPoint valuePosition;
::ad::map::point::ENUCoordinate valuePositionX(-16384);
valuePosition.x = valuePositionX;
::ad::map::point::ENUCoordinate valuePositionY(-16384);
valuePosition.y = valuePositionY;
::ad::map::point::ENUCoordinate valuePositionZ(-16384);
valuePosition.z = valuePositionZ;
value.position = valuePosition;
::ad::map::point::ENUHeading valueHeading(-3.141592655);
value.heading = valueHeading;
::ad::map::landmark::TrafficLightType valueTrafficLightType(
::ad::map::landmark::TrafficLightType::INVALID);
value.trafficLightType = valueTrafficLightType;
// override member with data type value below input range minimum
::ad::map::point::ENUHeading invalidInitializedMember(-3.141592655 * 1.1);
value.heading = invalidInitializedMember;
ASSERT_FALSE(withinValidInputRange(value));
}
TEST(ENULandmarkValidInputRangeTests, testValidInputRangeHeadingTooBig) {
::ad::map::landmark::ENULandmark value;
::ad::map::landmark::LandmarkId valueId(
std::numeric_limits<::ad::map::landmark::LandmarkId>::lowest());
value.id = valueId;
::ad::map::landmark::LandmarkType valueType(
::ad::map::landmark::LandmarkType::INVALID);
value.type = valueType;
::ad::map::point::ENUPoint valuePosition;
::ad::map::point::ENUCoordinate valuePositionX(-16384);
valuePosition.x = valuePositionX;
::ad::map::point::ENUCoordinate valuePositionY(-16384);
valuePosition.y = valuePositionY;
::ad::map::point::ENUCoordinate valuePositionZ(-16384);
valuePosition.z = valuePositionZ;
value.position = valuePosition;
::ad::map::point::ENUHeading valueHeading(-3.141592655);
value.heading = valueHeading;
::ad::map::landmark::TrafficLightType valueTrafficLightType(
::ad::map::landmark::TrafficLightType::INVALID);
value.trafficLightType = valueTrafficLightType;
// override member with data type value above input range maximum
::ad::map::point::ENUHeading invalidInitializedMember(3.141592655 * 1.1);
value.heading = invalidInitializedMember;
ASSERT_FALSE(withinValidInputRange(value));
}
TEST(ENULandmarkValidInputRangeTests, testValidInputRangeheadingDefault) {
::ad::map::landmark::ENULandmark value;
::ad::map::point::ENUHeading valueDefault;
value.heading = valueDefault;
ASSERT_FALSE(withinValidInputRange(value));
}
TEST(ENULandmarkValidInputRangeTests,
testValidInputRangeTrafficLightTypeTooSmall) {
::ad::map::landmark::ENULandmark value;
::ad::map::landmark::LandmarkId valueId(
std::numeric_limits<::ad::map::landmark::LandmarkId>::lowest());
value.id = valueId;
::ad::map::landmark::LandmarkType valueType(
::ad::map::landmark::LandmarkType::INVALID);
value.type = valueType;
::ad::map::point::ENUPoint valuePosition;
::ad::map::point::ENUCoordinate valuePositionX(-16384);
valuePosition.x = valuePositionX;
::ad::map::point::ENUCoordinate valuePositionY(-16384);
valuePosition.y = valuePositionY;
::ad::map::point::ENUCoordinate valuePositionZ(-16384);
valuePosition.z = valuePositionZ;
value.position = valuePosition;
::ad::map::point::ENUHeading valueHeading(-3.141592655);
value.heading = valueHeading;
::ad::map::landmark::TrafficLightType valueTrafficLightType(
::ad::map::landmark::TrafficLightType::INVALID);
value.trafficLightType = valueTrafficLightType;
// override member with data type value below input range minimum
::ad::map::landmark::TrafficLightType invalidInitializedMember(
static_cast<::ad::map::landmark::TrafficLightType>(-1));
value.trafficLightType = invalidInitializedMember;
ASSERT_FALSE(withinValidInputRange(value));
}
TEST(ENULandmarkValidInputRangeTests,
testValidInputRangeTrafficLightTypeTooBig) {
::ad::map::landmark::ENULandmark value;
::ad::map::landmark::LandmarkId valueId(
std::numeric_limits<::ad::map::landmark::LandmarkId>::lowest());
value.id = valueId;
::ad::map::landmark::LandmarkType valueType(
::ad::map::landmark::LandmarkType::INVALID);
value.type = valueType;
::ad::map::point::ENUPoint valuePosition;
::ad::map::point::ENUCoordinate valuePositionX(-16384);
valuePosition.x = valuePositionX;
::ad::map::point::ENUCoordinate valuePositionY(-16384);
valuePosition.y = valuePositionY;
::ad::map::point::ENUCoordinate valuePositionZ(-16384);
valuePosition.z = valuePositionZ;
value.position = valuePosition;
::ad::map::point::ENUHeading valueHeading(-3.141592655);
value.heading = valueHeading;
::ad::map::landmark::TrafficLightType valueTrafficLightType(
::ad::map::landmark::TrafficLightType::INVALID);
value.trafficLightType = valueTrafficLightType;
// override member with data type value above input range maximum
::ad::map::landmark::TrafficLightType invalidInitializedMember(
static_cast<::ad::map::landmark::TrafficLightType>(-1));
value.trafficLightType = invalidInitializedMember;
ASSERT_FALSE(withinValidInputRange(value));
}
|
[
"dawei.wang@inceptio.ai"
] |
dawei.wang@inceptio.ai
|
03a1a9e1b0fad8300bfc2e53dfa9f9612fbc311b
|
7a9ea572274a1b220c965a31155c062c24f05380
|
/include/record3d_unity_streaming/Record3DUnityStreaming.h
|
5929e9c7b1fca05b29de67fb00fc9e778cb646fd
|
[] |
no_license
|
BadException/record3d_unity_streaming
|
928ad5839748216a52edd2580ecb47c0d7838245
|
49152244daa10686220c06c4f80dd9a823357e0f
|
refs/heads/master
| 2022-12-28T02:11:40.214758
| 2020-09-26T13:56:34
| 2020-09-26T13:56:34
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,389
|
h
|
#ifndef RECORD3D_UNITY_STREAMING_H
#define RECORD3D_UNITY_STREAMING_H
#include <string>
#include <vector>
#include <record3d/Record3DStructs.h>
#include <iostream>
#ifdef __cplusplus
#ifdef WIN32
#define EXPORT_DLL __declspec(dllexport)
extern "C"
{
#else
#define EXPORT_DLL
extern "C"
{
#endif
#endif
struct DeviceHandlesInfo
{
void* arr_ptr;
uint32_t arr_size;
};
struct FrameMetadata
{
int32_t width;
int32_t height;
int32_t numComponentsPerPositionTexturePixel;
int32_t numComponentsPerColorTexturePixel;
};
struct FrameInfo
{
// Frame
void* depthFrameBufferPtr;
void* rgbFrameBufferPtr;
int32_t depthFrameBufferSize;
int32_t rgbFrameBufferSize;
int32_t frameWidth;
int32_t frameHeight;
};
struct Record3DDevice
{
int32_t handle;
};
EXPORT_DLL FrameMetadata GetFrameMetadata();
EXPORT_DLL DeviceHandlesInfo ListAllDeviceHandles();
EXPORT_DLL void FinishDeviceInfoHandling(DeviceHandlesInfo $devInfo);
typedef void (*OnNewFrameCallback)(FrameInfo);
typedef void (*OnStreamStoppedCallback)();
EXPORT_DLL bool StartStreaming(Record3DDevice $deviceHandle, OnNewFrameCallback $newFrameCallback, OnStreamStoppedCallback $streamStoppedCallback);
#ifdef __cplusplus
}
#endif
#endif //RECORD3D_UNITY_STREAMING_H
|
[
"marek.simonik1@gmail.com"
] |
marek.simonik1@gmail.com
|
0505b714bef498a658b682f0f9ed297792684886
|
9f8ba99f26a1970995cf5d782aeab880800920b8
|
/src/TraceImpl.cpp
|
4e84d37a5e8e81c9bb9cdb62558eb4fb656a3104
|
[] |
no_license
|
ruleless/snail
|
de1ae20bda849b524b89a9b9927e831887dc5e7e
|
3421540753870f3c4eb63d376576135d06d2a915
|
refs/heads/master
| 2021-01-21T21:48:46.864117
| 2016-03-21T02:33:27
| 2016-03-21T02:33:27
| 39,679,220
| 0
| 1
| null | null | null | null |
GB18030
|
C++
| false
| false
| 8,889
|
cpp
|
#include "Trace.h"
#ifdef SUPPORT_TRACE
#include <list>
#include <assert.h>
#include <stdio.h>
#include <time.h>
#include <iostream>
#if PLATFORM == PLATFORM_WIN32
# include <richedit.h>
# include <tchar.h>
#endif
//--------------------------------------------------------------------------
// Trace API
void createTrace(int level, bool hasTime)
{
if (gTrace)
{
delete gTrace;
}
gTrace = new STrace();
if (!gTrace->initialise(level, hasTime))
{
delete gTrace;
gTrace = 0;
}
}
void closeTrace()
{
if (gTrace)
{
delete gTrace;
gTrace = 0;
}
}
int setTraceLevel(int level)
{
return gTrace->setTraceLevel(level);
}
int getTraceLevel()
{
return gTrace->getTraceLevel();
}
void setTraceHasTime(bool b)
{
gTrace->hasTime(b);
}
bool setTraceHasLimitFrequency(bool limitFrequency)
{
return gTrace->setTraceLimitFrequency(limitFrequency);
}
bool hasLimitFrequency()
{
return gTrace->hasLimitFrequency();
}
void registerTrace(STrace::Listener* sink)
{
gTrace->registerTrace(sink);
}
void unregisterTrace(STrace::Listener* sink)
{
gTrace->unregisterTrace(sink);
}
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
#define STD_COLOR_NONE "\033[0m"
#define STD_COLOR_BLACK "\033[30m"
#define STD_COLOR_GREEN "\033[32m"
#define STD_COLOR_PURPLE "\033[35m"
#define STD_COLOR_RED "\033[31m"
#define STD_COLOR_EMPHASIS "\033[4;33m"
#define STD_COLOR_YELLOW "\033[33m"
// 输出到控制台
class TraceConsole : public STrace::Listener
{
public:
virtual void onTrace(const char* msg, const char* time, TraceLevel level)
{
assert(msg != NULL);
#if PLATFORM == PLATFORM_WIN32
if (time && hasTime())
std::cout<<time;
std::cout<<msg;
#else
static const char* color[] =
{
0,
STD_COLOR_NONE, // Info
STD_COLOR_GREEN, // Trace
0,
STD_COLOR_PURPLE, // Warning
0,0,0,
STD_COLOR_RED, // Error
0,0,0,0,0,0,0,
STD_COLOR_EMPHASIS, // Emphasis
};
if (time && hasTime())
{
printf("%s%s", color[level], time);
}
printf("%s%s", color[level], msg);
printf(STD_COLOR_NONE);
#endif
}
};
STrace::Listener* output2Console(int level, bool hasTime)
{
TraceConsole* sink = new TraceConsole();
sink->setTraceLevel(level);
sink->hasTime(hasTime);
registerTrace(sink);
return sink;
}
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
// 输出到Html文件
class TraceHtmlFile : public STrace::Listener
{
FILE* mFile;
public:
TraceHtmlFile() : mFile(0) {}
~TraceHtmlFile()
{
if (mFile)
{
fputs("</font>\n</body>\n</html>", mFile);
fclose(mFile);
}
}
bool create(const char* filename, bool bWrite)
{
if(bWrite)
{
mFile = fopen(filename, "wt");
}
else
{
mFile = fopen(filename, "at");
}
if (!mFile)
{
return false;
}
assert(mFile != 0);
#ifdef _UNICODE
uchar BOM[3] = {0xEF,0xBB,0xBF};
fwrite(BOM, sizeof(BOM)/sizeof(uchar), 1, mFile);
fputs(
"<html>\n"
"<head>\n"
"<meta http-equiv=\"content-type\" content=\"text/html; charset=utf8\">\n"
"<title>Html Output</title>\n"
"</head>\n"
"<body>\n<font face=\"Fixedsys\" size=\"2\" color=\"#0000FF\">\n", mFile);
#else
fputs(
"<html>\n"
"<head>\n"
"<meta http-equiv=\"content-type\" content=\"text/html; charset=gb2312\">\n"
"<title>Html Output</title>\n"
"</head>\n"
"<body>\n<font face=\"Fixedsys\" size=\"2\" color=\"#0000FF\">\n", mFile);
#endif
return true;
}
virtual void onTrace(const char* msg, const char* time, TraceLevel level)
{
assert(msg != NULL);
static const char* color[] =
{
0,
"<font color=\"#000000\">", // Info
"<font color=\"#0000FF\">", // Trace
0,
"<font color=\"#FF00FF\">", // Warning
0,0,0,
"<font color=\"#FF0000\">", // Error
0,0,0,0,0,0,0,
"<font color=\"#FFFF00\" style =\"background-color:#6a3905;\">", // Emphasis
};
fputs(color[(int)level], mFile);
if (time && hasTime())
{
fputs(time, mFile);
}
char* pStart = (char *)msg;
char* pPos = pStart;
char* pEnd = pStart + strlen(pStart) - sizeof(char);
while (pPos <= pEnd)
{
if (*pPos == '\n') // 换行
{
if (pStart < pPos)
{
fwrite(pStart, pPos - pStart, 1, mFile);
}
fputs("<br>", mFile);
pStart = ++pPos;
}
else
{
pPos ++;
}
}
if (pStart < pPos)
fwrite(pStart, pPos - pStart, 1, mFile);
fputs("</font>\n", mFile);
fflush(mFile);
}
};
STrace::Listener* output2Html(const tchar* filename, int level, bool hasTime)
{
TraceHtmlFile* sink = new TraceHtmlFile();
if (!sink->create(filename, true))
{
delete sink;
return 0;
}
sink->setTraceLevel(level);
sink->hasTime(hasTime);
registerTrace(sink);
return sink;
}
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
// windows RichEdit
#if PLATFORM == PLATFORM_WIN32
#ifdef _DEBUG
# define MAX_RICHEDIT_MESSAGE_LEN (256 * 1024) // RichEdit中最大容纳长度
#else
# define MAX_RICHEDIT_MESSAGE_LEN (128 * 1024)
#endif
class TraceRichEdit : public STrace::Listener
{
private:
void* mHwnd;
public:
TraceRichEdit(void* hwnd) : mHwnd(hwnd) {}
virtual void onTrace(const char* msg, const char* time, TraceLevel level)
{
if (!mHwnd)
return;
if (time && hasTime())
addTraceToRichEdit(mHwnd, time, level);
addTraceToRichEdit(mHwnd, msg, level);
}
void dispatch()
{
}
};
void addTraceToRichEdit(void* hWndRichEdit, const char* msg, TraceLevel level)
{
assert(msg != NULL);
if (!msg || *msg == 0)
return;
HWND hWnd = (HWND)hWndRichEdit;
if (hWnd == NULL || !::IsWindow(hWnd))
return;
// GetSel
CHARRANGE crOld;
::SendMessage(hWnd, EM_EXGETSEL, 0, (LPARAM)&crOld);
// GetTextLength
int nLen = (int)::SendMessage(hWnd, WM_GETTEXTLENGTH, NULL, NULL);
int nStrLen = (int)_tcslen(msg);
CHARRANGE cr;
if (nLen + nStrLen > MAX_RICHEDIT_MESSAGE_LEN)
{
// SetSel
cr.cpMin = 0;
cr.cpMax = nLen + nStrLen - MAX_RICHEDIT_MESSAGE_LEN; //+ (MAX_RICHEDIT_MESSAGE_LEN>>5);
::SendMessage(hWnd, EM_EXSETSEL, 0, (LPARAM)&cr);
// ReplaceSel
::SendMessage(hWnd, EM_REPLACESEL, (WPARAM)0, (LPARAM)"");
// GetTextLength
nLen = (int)::SendMessage(hWnd, WM_GETTEXTLENGTH, NULL, NULL);
}
// SetSel
cr.cpMin = nLen;
cr.cpMax = nLen;
::SendMessage(hWnd, EM_EXSETSEL, 0, (LPARAM)&cr);
// SetSelectionCharFormat
CHARFORMAT2 cf;
memset(&cf, 0, sizeof(CHARFORMAT2));
cf.dwMask = CFM_COLOR | CFM_CHARSET | CFM_SIZE
| CFM_BOLD | CFM_ITALIC | CFM_STRIKEOUT | CFM_UNDERLINE | CFM_LINK | CFM_SHADOW;
cf.dwEffects = 0;
cf.bCharSet = GB2312_CHARSET;
static const COLORREF cls[] =
{
0,
RGB(0,0,0), // Info
RGB(0,0,255), // Trace
0,
RGB(255,0,255), // Warning
0,0,0,
RGB(255,0,0), // Error
0,0,0,0,0,0,0,
RGB(255,255,0) // Emphasis
};
if (level == levelEmphasis)
{
cf.dwMask |= CFM_BACKCOLOR;
cf.crBackColor = RGB(106,57,5);
}
cf.crTextColor = cls[(int)level];
cf.yHeight = 9 * 20;
cf.cbSize = sizeof(CHARFORMAT2);
::SendMessage(hWnd, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&cf);
// ReplaceSel
::SendMessage(hWnd, EM_REPLACESEL, (WPARAM) 0, (LPARAM)msg);
if (crOld.cpMax > crOld.cpMin)
{
// SetSel
::SendMessage(hWnd, EM_EXSETSEL, 0, (LPARAM)&crOld);
}
// Scroll lines
SCROLLINFO ScrollInfo;
ScrollInfo.cbSize = sizeof(SCROLLINFO);
ScrollInfo.fMask = SIF_ALL;
::GetScrollInfo(hWnd, SB_VERT, &ScrollInfo);
int nTotalLine = (int)::SendMessage(hWnd, EM_GETLINECOUNT, 0, 0);
if (nTotalLine > 0)
{
int nEachLineHeihgt = ScrollInfo.nMax / nTotalLine;
if (nEachLineHeihgt > 0)
{
int nUpLine = 0;
if (nTotalLine > 0 && ScrollInfo.nMax > 0 && nEachLineHeihgt > 0)
nUpLine = (ScrollInfo.nMax - ScrollInfo.nPos - (ScrollInfo.nPage - 1)) / nEachLineHeihgt;
if (nUpLine > 0)
::SendMessage(hWnd, EM_LINESCROLL, 0, nUpLine);
}
}
}
void dispatch2RichEdit(STrace::Listener* tl)
{
TraceRichEdit* tre = (TraceRichEdit*)tl;
if (tre)
{
tre->dispatch();
}
}
STrace::Listener* output2RichEdit(void* hwnd, int level, bool hasTime)
{
TraceRichEdit* sink = new TraceRichEdit(hwnd);
sink->setTraceLevel(level);
sink->hasTime(hasTime);
registerTrace(sink);
return sink;
}
#endif
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
void output(const tchar* msg, TraceLevel level)
{
if (NULL == gTrace)
{
#if PLATFORM == PLATFORM_WIN32
#ifdef _DEBUG
if (::IsDebuggerPresent())
{
::OutputDebugString(msg);
}
#endif
#endif
}
else
{
gTrace->output(msg, level);
}
}
//--------------------------------------------------------------------------
#endif // #ifdef SUPPORT_TRACE
|
[
"ruleless@126.com"
] |
ruleless@126.com
|
49642790bc2b18eff1ddbffd35e42f83ef437465
|
c3ab72cd7df88350f013db9146c019f821253745
|
/src/desired_velocity_tester.cpp
|
93c57fbfa0eb2d7b6a85b08bfc3836f9f2ac1cbd
|
[] |
no_license
|
bellz867/homog_track
|
e5a2248ae079ad3f8d54350d77a303b616e5832c
|
bf061fa9f34fd387c6e0b4387b98b25666d3131f
|
refs/heads/master
| 2021-01-21T13:18:25.447390
| 2016-02-19T02:12:49
| 2016-02-19T02:12:49
| 45,148,734
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,027
|
cpp
|
#include <iostream>
#include <cstdio>
#include <string>
#include <vector>
#include <cmath>
#include <fstream>
#include <algorithm>
// ros and opencv includes for using opencv and ros
#include <ros/ros.h>
#include <tf/transform_broadcaster.h>
#include <tf/transform_listener.h>
#include <geometry_msgs/Twist.h>
// main
int main(int argc, char** argv)
{
// node parameters
ros::init(argc,argv,"desired_velocity_generator");
ros::NodeHandle nh;
ros::Publisher desired_pub = nh.advertise<geometry_msgs::Twist>("cmd_vel_from_control",1);
/********** desired wrt world **********/
// generator parameters
double desired_period = 4;//period of oscillation
double desired_frequency_hz = 1/desired_period;//frequency in hertz
double desired_frequency = 2*M_PIl*desired_frequency_hz;//frequency in radians/sec
double desired_radius = 1.25;// desired radius for oscillations in meters
double start_time = ros::Time::now().toSec();
double time_from_start = 0;
double desired_vel = 0;
geometry_msgs::Twist desired_vel_msg;
bool square_wave = false;
ros::Rate loop_rate(300);
while (ros::ok())
{
time_from_start = ros::Time::now().toSec() - start_time;//update elapsed time
desired_vel = desired_radius*desired_frequency*std::cos(desired_frequency*time_from_start);//update desired wave expressed in world frame
if (square_wave)//square wave
{
if (std::signbit(desired_vel))// if negative will output negative magnitude
{
desired_vel_msg.linear.x = -1*desired_radius*desired_frequency;
}
else// otherwise a positive magnitude
{
desired_vel_msg.linear.x = desired_radius*desired_frequency;
}
}
else//sine wave
{
desired_vel_msg.linear.x = desired_vel;
}
//desired_vel_msg.linear.x = 0;
desired_vel_msg.linear.y = 0;
desired_vel_msg.linear.z = 0;
desired_vel_msg.angular.x = 0;
desired_vel_msg.angular.y = 0;
desired_vel_msg.angular.z = 0;
desired_pub.publish(desired_vel_msg);
ros::spinOnce();
loop_rate.sleep();
}
return 0;
}
|
[
"anuppari@ufl.edu"
] |
anuppari@ufl.edu
|
c84553c8b2d66a7cbe0965c86660f6ea8ff6ffb6
|
a2d8b10890dfb1aa14d989d6e32856345acaf545
|
/src/control/KeyboardInput.cpp
|
28986ebd379f2dbcade9572d1b6f905720ad4d7c
|
[
"Apache-2.0"
] |
permissive
|
eeros-project/eeros-framework
|
0a1e39788ee3a70c7f65062fb0e2f5bf9835d512
|
edd6574260127924ecbc6c0d907e0162e240c40e
|
refs/heads/master
| 2023-07-08T16:00:33.621592
| 2023-06-28T11:21:05
| 2023-06-28T11:21:05
| 17,247,637
| 16
| 15
|
Apache-2.0
| 2023-06-27T09:52:11
| 2014-02-27T12:11:16
|
C++
|
UTF-8
|
C++
| false
| false
| 1,367
|
cpp
|
#include <eeros/control/KeyboardInput.hpp>
using namespace eeros::control;
KeyboardInput::KeyboardInput(int priority) : k(priority), isHomed(this), esc(this), emergency(this), reset(this), start(this), stop(this) { }
void KeyboardInput::run() {
uint64_t time = eeros::System::getTimeNs();
out.getSignal().setTimestamp(time);
out.getSignal().setValue(Vector4{k.speed[0], k.speed[1], k.speed[2], k.speed[3]});
isHomed.getSignal().setTimestamp(time);
isHomed.getSignal().setValue(Vector<5,bool>{k.homed[0], k.homed[1], k.homed[2], k.homed[3], k.homed[4]});
esc.getSignal().setValue(k.events.esc);
esc.getSignal().setTimestamp(time);
emergency.getSignal().setValue(k.events.emergency);
emergency.getSignal().setTimestamp(time);
reset.getSignal().setValue(k.events.reset);
reset.getSignal().setTimestamp(time);
start.getSignal().setValue(k.events.start);
start.getSignal().setTimestamp(time);
stop.getSignal().setValue(k.events.stop);
stop.getSignal().setTimestamp(time);
}
Output<Vector<5,bool>>& KeyboardInput::getIsHomed() {
return isHomed;
}
Output<bool>& KeyboardInput::getEsc() {
return esc;
}
Output<bool>& KeyboardInput::getEmergency() {
return emergency;
}
Output<bool>& KeyboardInput::getReset() {
return reset;
}
Output<bool>& KeyboardInput::getStart() {
return start;
}
Output<bool>& KeyboardInput::getStop() {
return stop;
}
|
[
"urs.graf@ntb.ch"
] |
urs.graf@ntb.ch
|
bf6de06fad7185dcc300ca074f936b683c3f6ba7
|
3d9c986206f30ae5c12a2159b4b7ddc96153ad14
|
/Components/CollisionComponent.h
|
53c87b008d8cc44d62cf3d1dd5a37c5eee32e517
|
[] |
no_license
|
EsasHG/Burnout-Engine
|
e00f7c52b721199c95e1a623b40db3807260909e
|
11d7919a3d23e615794a939ecc6f6bae0293e88e
|
refs/heads/master
| 2020-11-28T13:51:41.187336
| 2019-12-24T00:00:44
| 2019-12-24T00:00:44
| 229,838,977
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 669
|
h
|
#ifndef COLLISIONCOMPONENT_H
#define COLLISIONCOMPONENT_H
#include "basecomponent.h"
#include "GSL/matrix4x4.h"
#include "GSL/vector3d.h"
#include "Sound/soundsource.h"
/** Component needed for an entity to have collision. Currently only supports sphere collision.
*/
class CollisionComponent : public BaseComponent
{
public:
CollisionComponent(unsigned inID) : BaseComponent(inID){}
~CollisionComponent() override{}
virtual QJsonObject toJson() const override;
virtual void fromJson(QJsonObject obj) override;
gsl::Vector3D localOrigin{0.f,0.f,0.f};
float radius = 1.f;
friend class CollisionSystem;
};
#endif // COLLISIONCOMPONENT_H
|
[
"espenhg@hotmail.com"
] |
espenhg@hotmail.com
|
92cb7c76b5e83ee8e3637143c421e90804539891
|
bc5634c205bc04684b23c01dcf819ceffa608400
|
/android/frameworks/av/media/libmediaplayerservice/rotation.cpp
|
1cf525cf2bd0de7647adad875c08fad52e9b61d1
|
[
"Apache-2.0",
"LicenseRef-scancode-unicode"
] |
permissive
|
hqctfl/BPI-A20-Android
|
6cc56d6621571ca98a4eb39756e9fb2bf97b2412
|
04390b01fe5fc717adaa8f2cb7963460909a8167
|
refs/heads/master
| 2022-05-31T09:15:52.708247
| 2016-11-04T02:58:28
| 2016-11-04T02:58:28
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 776
|
cpp
|
#include <utils/Log.h>
#include <utils/RefBase.h>
#include <binder/IBinder.h>
#include <binder/Parcel.h>
#include <binder/IServiceManager.h>
#define LOG_TAG "rotation-demo"
namespace android {
int getRotation(){
const String16 name("window");
const String16 interface("android.view.IWindowManager");
const sp<IServiceManager> sm = defaultServiceManager();
sp<IBinder> window;
window = sm->checkService(name);
if( window != NULL ){
Parcel data, reply;
data.writeInterfaceToken(interface);
window->transact(56, data, &reply, 0);
reply.readInt32();
int rotation = reply.readInt32();
return rotation;
}
return -1;
}
}
//int main(int argc, char** argv) {
// SLOGD("rotation is %d",getRotation());
//}
|
[
"mingxin.android@gmail.com"
] |
mingxin.android@gmail.com
|
62ee7787fa1cc64cc08e5dafd935df790bbfa1ba
|
872cd980d8689827d7411993581b451688b00c39
|
/MagasinRouleaux/build-TestAlveoles-Desktop_Qt_5_11_1_GCC_64bit-Debug/ui_alveoleswidget.h
|
13dc9a073245d84e543c0a3f41a969a92445128f
|
[] |
no_license
|
paulhbt/QT
|
11efe3842974c22a2d3c67b21420e0b518010031
|
974c9b7b97b3a3ff4d7bc5cc08d59ec6312268e7
|
refs/heads/master
| 2020-04-05T11:53:29.773280
| 2018-11-09T10:50:00
| 2018-11-09T10:50:00
| 156,849,019
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,473
|
h
|
/********************************************************************************
** Form generated from reading UI file 'alveoleswidget.ui'
**
** Created by: Qt User Interface Compiler version 5.11.1
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_ALVEOLESWIDGET_H
#define UI_ALVEOLESWIDGET_H
#include <QtCore/QVariant>
#include <QtWidgets/QApplication>
#include <QtWidgets/QHBoxLayout>
#include <QtWidgets/QLabel>
#include <QtWidgets/QListWidget>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QSpacerItem>
#include <QtWidgets/QVBoxLayout>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
class Ui_AlveolesWidget
{
public:
QWidget *layoutWidget;
QVBoxLayout *verticalLayout_4;
QHBoxLayout *horizontalLayout;
QVBoxLayout *verticalLayout;
QLabel *labelAlveolesLibres;
QListWidget *listWidgetAlveolesLibres;
QVBoxLayout *verticalLayout_3;
QSpacerItem *verticalSpacer_2;
QPushButton *pushButtonReserver;
QPushButton *pushButtonLiberer;
QSpacerItem *verticalSpacer;
QVBoxLayout *verticalLayout_2;
QLabel *labelRangeesColonnes;
QListWidget *listWidgetOccupee;
QHBoxLayout *horizontalLayout_2;
QSpacerItem *horizontalSpacer;
QPushButton *pushButtonQuitter;
QSpacerItem *horizontalSpacer_2;
void setupUi(QWidget *AlveolesWidget)
{
if (AlveolesWidget->objectName().isEmpty())
AlveolesWidget->setObjectName(QStringLiteral("AlveolesWidget"));
AlveolesWidget->resize(470, 400);
AlveolesWidget->setMinimumSize(QSize(470, 400));
AlveolesWidget->setMaximumSize(QSize(470, 400));
layoutWidget = new QWidget(AlveolesWidget);
layoutWidget->setObjectName(QStringLiteral("layoutWidget"));
layoutWidget->setGeometry(QRect(20, 10, 435, 381));
verticalLayout_4 = new QVBoxLayout(layoutWidget);
verticalLayout_4->setSpacing(6);
verticalLayout_4->setContentsMargins(11, 11, 11, 11);
verticalLayout_4->setObjectName(QStringLiteral("verticalLayout_4"));
verticalLayout_4->setContentsMargins(0, 0, 0, 0);
horizontalLayout = new QHBoxLayout();
horizontalLayout->setSpacing(6);
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
verticalLayout = new QVBoxLayout();
verticalLayout->setSpacing(6);
verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
labelAlveolesLibres = new QLabel(layoutWidget);
labelAlveolesLibres->setObjectName(QStringLiteral("labelAlveolesLibres"));
verticalLayout->addWidget(labelAlveolesLibres);
listWidgetAlveolesLibres = new QListWidget(layoutWidget);
listWidgetAlveolesLibres->setObjectName(QStringLiteral("listWidgetAlveolesLibres"));
verticalLayout->addWidget(listWidgetAlveolesLibres);
horizontalLayout->addLayout(verticalLayout);
verticalLayout_3 = new QVBoxLayout();
verticalLayout_3->setSpacing(6);
verticalLayout_3->setObjectName(QStringLiteral("verticalLayout_3"));
verticalSpacer_2 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
verticalLayout_3->addItem(verticalSpacer_2);
pushButtonReserver = new QPushButton(layoutWidget);
pushButtonReserver->setObjectName(QStringLiteral("pushButtonReserver"));
verticalLayout_3->addWidget(pushButtonReserver);
pushButtonLiberer = new QPushButton(layoutWidget);
pushButtonLiberer->setObjectName(QStringLiteral("pushButtonLiberer"));
verticalLayout_3->addWidget(pushButtonLiberer);
verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
verticalLayout_3->addItem(verticalSpacer);
horizontalLayout->addLayout(verticalLayout_3);
verticalLayout_2 = new QVBoxLayout();
verticalLayout_2->setSpacing(6);
verticalLayout_2->setObjectName(QStringLiteral("verticalLayout_2"));
labelRangeesColonnes = new QLabel(layoutWidget);
labelRangeesColonnes->setObjectName(QStringLiteral("labelRangeesColonnes"));
verticalLayout_2->addWidget(labelRangeesColonnes);
listWidgetOccupee = new QListWidget(layoutWidget);
listWidgetOccupee->setObjectName(QStringLiteral("listWidgetOccupee"));
verticalLayout_2->addWidget(listWidgetOccupee);
horizontalLayout->addLayout(verticalLayout_2);
verticalLayout_4->addLayout(horizontalLayout);
horizontalLayout_2 = new QHBoxLayout();
horizontalLayout_2->setSpacing(6);
horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2"));
horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
horizontalLayout_2->addItem(horizontalSpacer);
pushButtonQuitter = new QPushButton(layoutWidget);
pushButtonQuitter->setObjectName(QStringLiteral("pushButtonQuitter"));
horizontalLayout_2->addWidget(pushButtonQuitter);
horizontalSpacer_2 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
horizontalLayout_2->addItem(horizontalSpacer_2);
verticalLayout_4->addLayout(horizontalLayout_2);
retranslateUi(AlveolesWidget);
QObject::connect(pushButtonQuitter, SIGNAL(clicked()), AlveolesWidget, SLOT(close()));
QMetaObject::connectSlotsByName(AlveolesWidget);
} // setupUi
void retranslateUi(QWidget *AlveolesWidget)
{
AlveolesWidget->setWindowTitle(QApplication::translate("AlveolesWidget", "Test Alv\303\251oles", nullptr));
labelAlveolesLibres->setText(QApplication::translate("AlveolesWidget", "Num\303\251ros d'alv\303\251oles libres", nullptr));
pushButtonReserver->setText(QApplication::translate("AlveolesWidget", "R\303\251server >>", nullptr));
pushButtonLiberer->setText(QApplication::translate("AlveolesWidget", "<< Lib\303\251rer", nullptr));
labelRangeesColonnes->setText(QApplication::translate("AlveolesWidget", "Rang\303\251es & colonnes occup\303\251es", nullptr));
pushButtonQuitter->setText(QApplication::translate("AlveolesWidget", "Quitter", nullptr));
} // retranslateUi
};
namespace Ui {
class AlveolesWidget: public Ui_AlveolesWidget {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_ALVEOLESWIDGET_H
|
[
"paul.hbt@outlook.com"
] |
paul.hbt@outlook.com
|
bcf4fdd399722de960e12d08ec3f53a1dd66d34a
|
c077e4ee1db38238b1c283da65760c74433c82e7
|
/movies.h
|
6c71512f63a1da128fcb07c10a88678b86f7301a
|
[] |
no_license
|
FaaizHaque/Movie-Rental-System
|
4712291925790b9f255549093a4727bfce0aab87
|
eb2dd14c174aba6cb943138c8b20f6ba53b9dbac
|
refs/heads/master
| 2020-04-28T18:56:57.436361
| 2019-03-13T20:37:45
| 2019-03-13T20:37:45
| 175,494,980
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 784
|
h
|
/*
Faaiz Ul Haque
21503527
CS 201 - HW1
Section 1
*/
#ifndef MOVIES_H
#define MOVIES_H
#include "subscribers.h"
class movies
{
public:
movies();
movies ( int ** subIDs, int ID, int num );
int getRentalNum();
int getMovieID();
void setSubIDs( int ** arrayTemp);
void setMovieID( const int ID );
void setRentalNum( const int num );
void addSubID( const int ID, const int month );
void updateArray( int, int);
void instantiateArray();
int ** getSubIDs();
int getSubNum();
virtual ~movies();
protected:
private:
int movieID;
int rentalNum;
int ** subscriberIDs;
int numOfSubs;
};
#endif // MOVIES_H
|
[
"noreply@github.com"
] |
FaaizHaque.noreply@github.com
|
3f32d936a3948c24f2b26020ca3967c3d2ec0bd8
|
96c604bd68ca59b171b853e72b6e6d74fd9f7e17
|
/MRTK_V2/CollaborativeDesignApp/Il2CppOutputProject/Source/il2cppOutput/GenericMethods3.cpp
|
380b89785bade7352377102588cd8e48a088ca2d
|
[] |
no_license
|
ruchirnaphade/AR-Industry-Applications
|
24566da6eb4fe8efe098974ac48ff7c8787fe1df
|
c54d715b6d970abc3b06055d911619a57597ac8f
|
refs/heads/master
| 2022-07-23T19:27:39.636188
| 2020-05-13T15:10:40
| 2020-05-13T15:10:40
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,734,613
|
cpp
|
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct VirtFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
// Microsoft.MixedReality.Toolkit.BaseMixedRealityProfile
struct BaseMixedRealityProfile_tB4DC16619B37D298D22571CE017070A78EF826E8;
// Microsoft.MixedReality.Toolkit.Boundary.Edge[]
struct EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction[]
struct MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInteractionMapping[]
struct MixedRealityInteractionMappingU5BU5D_tA9021B8F5A4C53A970615CF32CF4B0992DEFB4FA;
// Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialAwarenessObserverProfile
struct BaseSpatialAwarenessObserverProfile_tEE30EA47A4C33A81B773F9E53EA3306BBB7FDADC;
// Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme/BlocksAndRenderer[]
struct BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A;
// Microsoft.MixedReality.Toolkit.UI.InteractableThemeBase
struct InteractableThemeBase_t32921DF1297AA5C22F2000A28D1CA5F8095EC11F;
// Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings[]
struct InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5;
// Microsoft.MixedReality.Toolkit.UI.ProfileSettings[]
struct ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88;
// Microsoft.MixedReality.Toolkit.UI.ShaderProperties[]
struct ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103;
// Microsoft.MixedReality.Toolkit.UI.ThemeSettings[]
struct ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA;
// Microsoft.MixedReality.Toolkit.UI.ThemeTarget
struct ThemeTarget_t7F6AA97DF596B6228F674C9EEA23C49808FEEB01;
// Microsoft.MixedReality.Toolkit.Utilities.Easing
struct Easing_t13E61FF806357D21552C3028585751420EDCD360;
// Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorField
struct InspectorField_tAF090FFB92FEBDC9A920C0402A877B3DC76FA333;
// Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData[]
struct InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E;
// Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting[]
struct InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4;
// Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode[]
struct ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9;
// Microsoft.MixedReality.Toolkit.Utilities.SystemType
struct SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432;
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.Comparer`1<System.Object>
struct Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7;
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.Boundary.Edge>
struct EqualityComparer_1_t2325EF6C671A8A5B1B75E0C26BBCBFD9356E8A98;
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction>
struct EqualityComparer_1_t5539349CF2BB6918DDF0B77E8FC52F86CFAEE22B;
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme/BlocksAndRenderer>
struct EqualityComparer_1_tD9FADBA5768DF32FA3E264D8C104E71A53A435E5;
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings>
struct EqualityComparer_1_tBA358B06D509320B3D3C82C2061A9546ED4B0D77;
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.UI.ProfileSettings>
struct EqualityComparer_1_tAAD434C99D7E20699C7C6335341D2EB7064A9C4B;
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.UI.ShaderProperties>
struct EqualityComparer_1_t6FFD9221D0F2B19554CB93BDED86F324F675F41B;
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.UI.ThemeSettings>
struct EqualityComparer_1_t934AEB77EAD7F2F153DAFC6A0F51D1BA652C0086;
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData>
struct EqualityComparer_1_t738C13BF0507189822BF3355B733F04CADAC63CE;
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting>
struct EqualityComparer_1_t728101F67A8CECD65C7520DC19EF6FB7F65A0D26;
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode>
struct EqualityComparer_1_t3507F28BC058454819B289885AD982AE6541A963;
// System.Collections.Generic.EqualityComparer`1<System.Byte>
struct EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5;
// System.Collections.Generic.EqualityComparer`1<System.Char>
struct EqualityComparer_1_t9918F2EC0F0844A7A97CFA33C602072D990AB562;
// System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77;
// System.Collections.Generic.EqualityComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>
struct EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF;
// System.Collections.Generic.EqualityComparer`1<System.Guid>
struct EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E;
// System.Collections.Generic.EqualityComparer`1<System.Int32>
struct EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33;
// System.Collections.Generic.EqualityComparer`1<System.Int32Enum>
struct EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C;
// System.Collections.Generic.EqualityComparer`1<System.Object>
struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA;
// System.Collections.Generic.EqualityComparer`1<System.Single>
struct EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6;
// System.Collections.Generic.EqualityComparer`1<System.UInt32>
struct EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114;
// System.Collections.Generic.EqualityComparer`1<System.UInt64>
struct EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13;
// System.Collections.Generic.EqualityComparer`1<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>
struct EqualityComparer_1_t5AE428F5422000B69378E01CDEC66C25A5CCDC3C;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>
struct EqualityComparer_1_t64516AE22515640CA46E6ACDBB51EB38AE8BA243;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Color>
struct EqualityComparer_1_t3FD85BA110510D8815AF1DFDD8266E284A5632C6;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>
struct EqualityComparer_1_t4814B5237F2155B9F52EA643AB3CCEBDC093964A;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Matrix4x4>
struct EqualityComparer_1_t782178306EB8B0010E7B1E3913E62F5934F46927;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Ray>
struct EqualityComparer_1_tF14F528C27E637700C3B5190DD4040F2B269F291;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.RaycastHit2D>
struct EqualityComparer_1_t7A8526AAC9D8F3F6E9FC92FC80191263130CFDE8;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.TextCore.GlyphRect>
struct EqualityComparer_1_tCDF71D565EF681A3FA07FEA641ACF98768CDF0D2;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>
struct EqualityComparer_1_tC9FE6AC7127ED7A22F717A9EF3208401E3C1D28D;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>
struct EqualityComparer_1_tF33A333C3CC9DCBB0DA73EBB7975182A3CA3FDB6;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>
struct EqualityComparer_1_t7443BABD4F571AE906F5407888530FDE8F1EE9E7;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector2>
struct EqualityComparer_1_t5404190F17E14E6CF5185C22EC4668BCE15B76F1;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>
struct EqualityComparer_1_tF8B3A336A2CCCA76C99157B28AA030355D18120D;
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>
struct EqualityComparer_1_t7E3233D219BAD9A94FD502F672DC198E60C604CA;
// System.Collections.Generic.IComparer`1<Microsoft.MixedReality.Toolkit.Boundary.Edge>
struct IComparer_1_tCD52927D1414E3677542E609DE5C195218EF60F8;
// System.Collections.Generic.IComparer`1<Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction>
struct IComparer_1_t4EAECBE62DFA0794C808F5B53A8047F0BDC4DB17;
// System.Collections.Generic.IComparer`1<Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme/BlocksAndRenderer>
struct IComparer_1_t195DDEDD5B9F7FE436EA64E9A02954645A840B45;
// System.Collections.Generic.IComparer`1<Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings>
struct IComparer_1_t4A2BEDC0E784C36378C016812DB909AE770BD165;
// System.Collections.Generic.IComparer`1<Microsoft.MixedReality.Toolkit.UI.ProfileSettings>
struct IComparer_1_t982931599BC4DB8109D6F6EAE63B3B65E3BBCD3C;
// System.Collections.Generic.IComparer`1<Microsoft.MixedReality.Toolkit.UI.ShaderProperties>
struct IComparer_1_tF9BD3FEAD8D4F64D3C623FD561617FF830D13F9E;
// System.Collections.Generic.IComparer`1<Microsoft.MixedReality.Toolkit.UI.ThemeSettings>
struct IComparer_1_t9B7EF008DA17A8B4CB86B40C06F2A1C2C174A66A;
// System.Collections.Generic.IComparer`1<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData>
struct IComparer_1_t8656A0DA898ED86C53F170AED0540D4D28A8EA99;
// System.Collections.Generic.IComparer`1<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting>
struct IComparer_1_t84CB5B39B3ABA9CCD41899412C68CFA0A0CC0ABA;
// System.Collections.Generic.IComparer`1<Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode>
struct IComparer_1_t30F98ED9910AAC19399C20472CD82E303D22E148;
// System.Collections.Generic.IComparer`1<System.Byte>
struct IComparer_1_tBC3AF9688B98E39B2BB54008685F8865CC27FF31;
// System.Collections.Generic.IComparer`1<System.Char>
struct IComparer_1_t8C4F927E53C452A4492F8A093645E1BAD06E6166;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct IComparer_1_t64E60BCD08EF6D401324D467E53CA76F07D37499;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>
struct IComparer_1_t4BD173D900F1A8B7314414AFCB984DB88AC50EF4;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>
struct IComparer_1_tA891F30E4FF93C2ECB741BD2C82B0D35B192F589;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>
struct IComparer_1_tA41BED11428A8FCB498A813D0E2E420A11D2F2CE;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>
struct IComparer_1_t90EE013AFB1D0184B2AD042B2528AC8AF08A84C5;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>
struct IComparer_1_t8D448C909C96CF7FB2007B671F0A7AF34D3A9C2E;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>
struct IComparer_1_t12F20A34B2A8F1D57251436F6A20224FE5EA1314;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct IComparer_1_tFFDB0CD18679AEF024F7C6C52D3317E22C9DA266;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.UInt32>>
struct IComparer_1_t1648F82A43E02882E5F1056995F014AEDDB0D5DA;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>
struct IComparer_1_t4C60E00DA539267D8CE1F50359FDB56B9AC3AFE7;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>
struct IComparer_1_t0EA136F5CF5CB28C2BDD769983FEA133723E3717;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>
struct IComparer_1_t73748DD1E2A4DA9C09181D30E58A7480D9295C67;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct IComparer_1_t8473B82086D62F6FC7BED678D4C96298C67E6A37;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>>
struct IComparer_1_t3670BA353D32D457348D4874EBE34A35B53DD933;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>
struct IComparer_1_t1D5AF2A5DC06FF9207B8BEC3725E6B93870E1DA2;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>
struct IComparer_1_tDF60B753CA8E8CD37DDC90151E07D17F04034689;
// System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>
struct IComparer_1_tF435BD5BB2907B6EB4702415F844B769B8C9EAC9;
// System.Collections.Generic.IComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>
struct IComparer_1_tF7FF8EDAE8AB673D623F7C7FDEA81B1A94344E0D;
// System.Collections.Generic.IComparer`1<System.Guid>
struct IComparer_1_tACBE0432D76E7E2344460504825B3FDD2A11D8DC;
// System.Collections.Generic.IComparer`1<System.Int32>
struct IComparer_1_t5D09F75F75FD32CDCD24671DFD58441DFA9F5C14;
// System.Collections.Generic.IComparer`1<System.Int32Enum>
struct IComparer_1_tDE193EEAAC2A0DCE9E6E86125B3C7C924691FA1F;
// System.Collections.Generic.IComparer`1<System.Object>
struct IComparer_1_tFF77EB203CF12E843446A71A6581145AB929D681;
// System.Collections.Generic.IComparer`1<System.Single>
struct IComparer_1_t1B55C9BD9F311FD9C4D74FD1B53D03B0ED13FFA2;
// System.Collections.Generic.IComparer`1<System.UInt32>
struct IComparer_1_tEB35069A836D01D7A23FAC5AFD86DFE89E95706C;
// System.Collections.Generic.IComparer`1<System.UInt64>
struct IComparer_1_t7E1CC88723F5E5E455D1F3D16DB58DCF4B173316;
// System.Collections.Generic.IComparer`1<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>
struct IComparer_1_t339EE346010F5E8932BC996D6926D835088EC4A7;
// System.Collections.Generic.IComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct IComparer_1_t8F80D4DF6FBA578DDD5B6EAAF84A1FCDEB0828A1;
// System.Collections.Generic.IComparer`1<UnityEngine.Color32>
struct IComparer_1_t780B89F9CF3647217CE365F865F1BF99288ACC7E;
// System.Collections.Generic.IComparer`1<UnityEngine.Color>
struct IComparer_1_tBFA0C96695D6F66B6AE42AED8DEA684899FF0806;
// System.Collections.Generic.IComparer`1<UnityEngine.EventSystems.RaycastResult>
struct IComparer_1_tD56AD87538FE4FF764203A24496ABA560CFC19EB;
// System.Collections.Generic.IComparer`1<UnityEngine.Matrix4x4>
struct IComparer_1_t624076437C40FFFCD34C724017039FFC34891EF4;
// System.Collections.Generic.IComparer`1<UnityEngine.Ray>
struct IComparer_1_t6AC8D80F233F45826DEEF397CC9AFBDC71A861C7;
// System.Collections.Generic.IComparer`1<UnityEngine.RaycastHit2D>
struct IComparer_1_t5DA9761AC1277562FC54E73AB201E670DA1CBE18;
// System.Collections.Generic.IComparer`1<UnityEngine.TextCore.GlyphRect>
struct IComparer_1_t323D9953C3D9320138D36EFF6E3B93523E9A3180;
// System.Collections.Generic.IComparer`1<UnityEngine.UICharInfo>
struct IComparer_1_t4AA347BDFF17F581F6D385BE12618F732D939221;
// System.Collections.Generic.IComparer`1<UnityEngine.UILineInfo>
struct IComparer_1_t10820B7180200CFAD1A5C5B1CCFD9C75E9E48130;
// System.Collections.Generic.IComparer`1<UnityEngine.UIVertex>
struct IComparer_1_t37413AFAB07B4269F901C45291360E1F5EA79438;
// System.Collections.Generic.IComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct IComparer_1_t8CAEE6758AF945843D758BD3DF5A1ADC2FD66EA8;
// System.Collections.Generic.IComparer`1<UnityEngine.Vector2>
struct IComparer_1_t40E24BDF6AD8C93DFE645984FD6A35A016BA21A1;
// System.Collections.Generic.IComparer`1<UnityEngine.Vector3>
struct IComparer_1_t19801D660A63EB23ADEE44DCDD9208D172E6DC26;
// System.Collections.Generic.IComparer`1<UnityEngine.Vector4>
struct IComparer_1_t6A7119E06BD5FB50F325A954ADBC51DF2881D3F0;
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[]
struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F;
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>[]
struct KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7;
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>[]
struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A;
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>[]
struct KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5;
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>[]
struct KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417;
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>[]
struct KeyValuePair_2U5BU5D_tC7A09A604E89B878B8A673BD6238A819ADDAD26A;
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>[]
struct KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291;
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>[]
struct KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B;
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.UInt32>[]
struct KeyValuePair_2U5BU5D_t2E62DFFEEC2B3F858CEA261AE40C4CC4A8A2808D;
// System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>[]
struct KeyValuePair_2U5BU5D_tF3E7A3C0CD8F236E22836D54F25B24F11461CD8C;
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>[]
struct KeyValuePair_2U5BU5D_tA70A6D970A6407747BDE3F49A31B0BE1D7043951;
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>[]
struct KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB;
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]
struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262;
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>[]
struct KeyValuePair_2U5BU5D_t90D650B211D4280D9C648325D90FE4CDA0CE18D7;
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>[]
struct KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8;
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>[]
struct KeyValuePair_2U5BU5D_tE550885A1F49CF2FBFB8A2E39DC0EADEF91219B8;
// System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>[]
struct KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD;
// System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.InteractableThemeProperty>
struct List_1_tA0B25EF501463C55DE9F03DDC5F52F18495FC002;
// System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings>
struct List_1_t1F3CAD705492F7FFFB9CB7EC0061FAF753444FED;
// System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.ThemeSettings>
struct List_1_t3FBB6272CDFBE81A0ECBDD64EB40931ED6301A57;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D;
// System.Collections.Generic.List`1<System.Type>
struct List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Diagnostics.Tracing.BooleanArrayTypeInfo
struct BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663;
// System.Diagnostics.Tracing.BooleanTypeInfo
struct BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772;
// System.Diagnostics.Tracing.ByteArrayTypeInfo
struct ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB;
// System.Diagnostics.Tracing.ByteTypeInfo
struct ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F;
// System.Diagnostics.Tracing.CharArrayTypeInfo
struct CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7;
// System.Diagnostics.Tracing.CharTypeInfo
struct CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1;
// System.Diagnostics.Tracing.DateTimeOffsetTypeInfo
struct DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7;
// System.Diagnostics.Tracing.DateTimeTypeInfo
struct DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405;
// System.Diagnostics.Tracing.DecimalTypeInfo
struct DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85;
// System.Diagnostics.Tracing.DoubleArrayTypeInfo
struct DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2;
// System.Diagnostics.Tracing.DoubleTypeInfo
struct DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73;
// System.Diagnostics.Tracing.EventDataAttribute
struct EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85;
// System.Diagnostics.Tracing.EventProvider/SessionInfo[]
struct SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906;
// System.Diagnostics.Tracing.GuidArrayTypeInfo
struct GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068;
// System.Diagnostics.Tracing.GuidTypeInfo
struct GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED;
// System.Diagnostics.Tracing.Int16ArrayTypeInfo
struct Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3;
// System.Diagnostics.Tracing.Int16TypeInfo
struct Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B;
// System.Diagnostics.Tracing.Int32ArrayTypeInfo
struct Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C;
// System.Diagnostics.Tracing.Int32TypeInfo
struct Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C;
// System.Diagnostics.Tracing.Int64ArrayTypeInfo
struct Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC;
// System.Diagnostics.Tracing.Int64TypeInfo
struct Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5;
// System.Diagnostics.Tracing.IntPtrArrayTypeInfo
struct IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702;
// System.Diagnostics.Tracing.IntPtrTypeInfo
struct IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55;
// System.Diagnostics.Tracing.NullTypeInfo`1<System.Diagnostics.Tracing.EmptyStruct>
struct NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.UInt16>[]
struct PropertyAccessor_1U5BU5D_t3FF9EB537E7BA2BF324F46D2E1C584FAE5E7D96F;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.UInt32>[]
struct PropertyAccessor_1U5BU5D_tF57AE5C1C779C05869943B1C16C894A2836E9C24;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.UInt64>[]
struct PropertyAccessor_1U5BU5D_tEA8F518DB9B112A0A17907C845D7710346E62001;
// System.Diagnostics.Tracing.PropertyAccessor`1<System.UIntPtr>[]
struct PropertyAccessor_1U5BU5D_t77A35E35098D46F12371B5D926D9EAB7513E01A3;
// System.Diagnostics.Tracing.PropertyAnalysis[]
struct PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB;
// System.Diagnostics.Tracing.SByteArrayTypeInfo
struct SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6;
// System.Diagnostics.Tracing.SByteTypeInfo
struct SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C;
// System.Diagnostics.Tracing.SingleArrayTypeInfo
struct SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239;
// System.Diagnostics.Tracing.SingleTypeInfo
struct SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8;
// System.Diagnostics.Tracing.StringTypeInfo
struct StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26;
// System.Diagnostics.Tracing.TimeSpanTypeInfo
struct TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA;
// System.Diagnostics.Tracing.TraceLoggingTypeInfo
struct TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F;
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16>
struct TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6;
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32>
struct TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10;
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64>
struct TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C;
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr>
struct TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330;
// System.Diagnostics.Tracing.TypeAnalysis
struct TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD;
// System.Diagnostics.Tracing.UInt16ArrayTypeInfo
struct UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE;
// System.Diagnostics.Tracing.UInt16TypeInfo
struct UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E;
// System.Diagnostics.Tracing.UInt32ArrayTypeInfo
struct UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC;
// System.Diagnostics.Tracing.UInt32TypeInfo
struct UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59;
// System.Diagnostics.Tracing.UInt64ArrayTypeInfo
struct UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5;
// System.Diagnostics.Tracing.UInt64TypeInfo
struct UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E;
// System.Diagnostics.Tracing.UIntPtrArrayTypeInfo
struct UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C;
// System.Diagnostics.Tracing.UIntPtrTypeInfo
struct UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D;
// System.Func`2<System.Object,System.Boolean>
struct Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC;
// System.Func`2<UnityEngine.Ray,System.Boolean>
struct Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE;
// System.Guid[]
struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.Int32Enum[]
struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.Predicate`1<System.Object>
struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979;
// System.RankException
struct RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F;
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
// System.Reflection.MemberFilter
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Runtime.CompilerServices.CompilerGeneratedAttribute
struct CompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2;
// System.Single[]
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5;
// System.String
struct String_t;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.Threading.ManualResetEvent
struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408;
// System.Threading.SendOrPostCallback
struct SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01;
// System.Type
struct Type_t;
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
// System.UInt32[]
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
// System.UInt64[]
struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// TMPro.SpriteAssetUtilities.TexturePacker/SpriteData[]
struct SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41;
// UnityEngine.AnimationCurve
struct AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C;
// UnityEngine.AudioClip
struct AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051;
// UnityEngine.BeforeRenderHelper/OrderBlock[]
struct OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101;
// UnityEngine.Color32[]
struct Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983;
// UnityEngine.Color[]
struct ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399;
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966;
// UnityEngine.EventSystems.RaycastResult[]
struct RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65;
// UnityEngine.Events.UnityAction
struct UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4;
// UnityEngine.Events.UnityEvent
struct UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F;
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F;
// UnityEngine.Material
struct Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598;
// UnityEngine.MaterialPropertyBlock
struct MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13;
// UnityEngine.Matrix4x4[]
struct Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9;
// UnityEngine.Mesh
struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C;
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0;
// UnityEngine.Ray[]
struct RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED;
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165;
// UnityEngine.Renderer
struct Renderer_t0556D67DD582620D1F495627EDE30D03284151F4;
// UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734;
// UnityEngine.Sprite
struct Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198;
// UnityEngine.TextCore.GlyphRect[]
struct GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2;
// UnityEngine.Texture
struct Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4;
// UnityEngine.Transform
struct Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA;
// UnityEngine.UICharInfo[]
struct UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482;
// UnityEngine.UILineInfo[]
struct UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC;
// UnityEngine.UIVertex[]
struct UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A;
// UnityEngine.UnitySynchronizationContext/WorkRequest[]
struct WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0;
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6;
// UnityEngine.Vector3[]
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28;
// UnityEngine.Vector4[]
struct Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB;
IL2CPP_EXTERN_C String_t* _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A;
IL2CPP_EXTERN_C String_t* _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25;
IL2CPP_EXTERN_C String_t* _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D;
IL2CPP_EXTERN_C String_t* _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
IL2CPP_EXTERN_C String_t* _stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC;
IL2CPP_EXTERN_C String_t* _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56;
IL2CPP_EXTERN_C String_t* _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA;
IL2CPP_EXTERN_C String_t* _stringLiteralAD8D6903DEF0C8235FCFCD2EF02963C7EFC13C41;
IL2CPP_EXTERN_C String_t* _stringLiteralAFCEDBC2312C37DE46DE59F51E7A76B1B351DD75;
IL2CPP_EXTERN_C String_t* _stringLiteralDBA0F8BCBC38F520B1A5C333F28EEB1DDA183472;
IL2CPP_EXTERN_C String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
IL2CPP_EXTERN_C String_t* _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556;
IL2CPP_EXTERN_C String_t* _stringLiteralEF5C844EAB88BCACA779BD2F3AD67B573BBBBFCA;
IL2CPP_EXTERN_C String_t* _stringLiteralF084C7C4DE4AEADD0AA7AE2EDEFF6D9FB3DDA7A1;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_mEA3B674F656896F71B0C639BC8EEB2FC521DB872_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mB3D0C0E03BFDCA6DCE32948268CC6ACE5D28A08C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m84CD815D21A6D6C056335FD5ABB904D508EB2F2A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mCC3A7E4E4C0798377EB1D1DC7E7211EE35759C9A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mAC9E46FDECEC4FF35292E2DB381716356A9D2522_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_mE999CCA521DD03B6383D41412214029BEF0B86DA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m5285CDC9F41BD33F44970343E620830C4A5963E4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisGuid_t_m6CE4AD2C7E6AF127440BE859120AF7C1D1FB803F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_mCB2D4AD438D996980045B026004389E6C9E436AA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mD0580F6A57C00D4BB0B8497571BD8DE4D46AFC2F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m2C182555176CA144188F81AAD71A2CB9F3B97DED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m422EDDA3031357E73A5DE5DD70068AD8E1858B2D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m9E51BB0EBAD067C4AD5BD72DDCC66A1DFE46355E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m045C87C6F889E6A10CBE7A003F332670C458DB6E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC649768C3F11C43DE320BF26E54183F12709CDEC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mAEEC55E914AA2B3B582B0B985BC8636F45FA9806_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m457B24E910F7BC25FA2D8A86207630B1453069C8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mFDA54C827C1D317996C9BD0BB6D5208A9FDB8615_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m1197B69B899E731E1CBFB1C54A1F408DA98A7B1C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_mC9A170485F63D61087F53E04271603ACEED8534C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_mC9517C8C0CFDC8377A7E22EB81BA7B9BE20555F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m1E809338041B52162EA87A7B8D3F31A39D4D72C2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mFC6E3E824DF7484B94A7EA9B67C1CFDFA4D5A465_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mEEEAD860A7573F1F583EBA7E8343C4A84A7A68E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mCE9E0BBE31D9DD4A428E1A9A923B0F09765520A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m20BE3F0D660F831E8932E3F8E54EF17904360F3E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mC01C436387B9F301A31A63975A60EF31C0F14BC4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA82D8D7AC96631A617854337195E8830DB3F8649_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4_m4D1C8875DC3AFC3F951A05F681431115EB72B34E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mEBD369DABCA4D2399B45FE0EA72909694DDF8399_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m5197F63CA6582B6B88EEC42974071AB7777E1F32_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_mC2AE554FDB5EDAF726BA00BBA06E56E05D67B2EC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_mE688AE9AB2BE31D75E5630EE2B437C571AFF035B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m01428836A7119BC029D578A0B73315C61B270FE1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_mACEC4B3BBCF556F70CE4DF0781AC9C18266D9B59_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m92D8C7146266757EE12622FF6B0BB09065144477_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m977A77D146F0587CEEDAE221F57B35D62EE58BDE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m7CD8A89CCC3270F1591778B5FFDE2FD247A0020B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisRuntimeObject_m231DBB062A7AE93EDDB3DA7F315257F029F408EA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisRuntimeObject_mDB35A59E7FE53934FCA076CC6CEDB1B0CF0E21A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisRuntimeObject_mDB70A968B86A65FAAEACC23E4318A873AB86BE78_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m03FB2954AF31857178AEEEA72BE5CE5EA55B67BE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m48321F54984CB8E7FAF3F76348A7DC698E5C3ABA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8F59A6F6DA436F5F98DEFA57143A5FE243E4D936_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mC0EE7D10AF2003CAEF21AC93EBF2338F59341582_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_m6732FF9F941B4C4CA599383565DCE9E1A3F71E59_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mB192B545BB885349A231450B4670ED8CF2F81E9F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m164D2D0DEF9850BE82BDBDCB708316B46E1D7BEE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m783A55A894592C6BE071E25F5F99E956A3BA7132_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCBB688507C1CCB926EEB79CF495D774E457E39DA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m540250F0BE7BD67F5C7E204F96442E5E7C8B7C6B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mDC37BFA945C8ED7FB8700727168D2F68CCFCE4A3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m6ED066B82A11FF1D2E38AAC05907A107E066F29A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m8D00BEE3850E6748E7BC97419A9C997873444A51_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mE03E866D8CC289D617AA9A5E95FA4263B1238C1D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m22BE921011F4181EBCA1FF732432A529E30BAE7E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_FindIndex_TisRuntimeObject_m080935AA8F5127F69944FA0C9F92E55EC4B4AA83_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_FindIndex_TisRuntimeObject_m139444E431531EEC2474B0CB068687A36B579685_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_FindIndex_TisRuntimeObject_m214491B7AA29D758A126088D7DE01528FC655FE4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_FindLastIndex_TisRuntimeObject_m3CACF7B288BFF83852DC9909FEC8E4E9E467C529_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_FindLastIndex_TisRuntimeObject_m6FA23A622561D230641A38B87A5961B70C2F998B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_FindLastIndex_TisRuntimeObject_mD120E7C8596220358A4C2542B8CC116239CCE36D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_m50F76630646083AE2493C46B06D9D5B9D6C3C22A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m5CE9F6C8D5A1826746221DD45C6187D3C9B8F049_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m1F352B00CF67AEE547813DF32C13E43BD171EB62_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m14DF1820F74C0CBFFFD19399B38AC5FB9A4D981A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mE582D10D9E0BF5EEBEFCD6E19078AA6D05CA0235_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_mC4365C58798F06788D9AAD4796089B8BEA7C5D7A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m83B1F1525A65BE034509F85B7A798756FF331D85_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisGuid_t_mBFE3E8B35C542B661E7B9CE17068434154F777BB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_m200739F61144011AE8554950AF95E62155CF33BF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mB731723C8A1F6E2997A5D21FA270A48C4EAB2B99_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m58E90042E7B17B74CB00683164B0B720BA91A8B5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB69F9A4858DC906B554451585199281F230F4EE5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m3A8AA082C2C2E7085FC7B09D5FE18D4A203A50D3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mDE039BCF9D5C0446B1D683115D39D29D2FE79A59_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m8ABC4C9182362C3064FB4F7DB433AE1813F0A2FC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_m38B925224BE7B76E242FC398D93D9662FDBF9A77_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_m831D225941E00E2D42362A65867C43DA10B1AFCD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA3A1313F7FD2A62CE172AEF0501E52E60B7AE9DD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_mF776BBFB14622D57612CF5C395E56F3642538888_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m37EA652262811150EF62FC34099E322F2EEFCA0D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m76AF616D8A8D3F0F807C161783871C266DE496B8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_mC1389D66F959F48244F648F64EB2624EC1381EB8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisRuntimeObject_m13B203F08875E17F92EC3ABF6A3C7B76351E79A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA91455A82DA1E75779F77E30564F3425C79601A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m8571072D8697027BC648229857C801EE327218B8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m39D77B3B21AD0C5FF6C74D4903289CAFDB17E6B5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mA5646235862DD2C78A918CB0834CAE844AC97D45_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_m72AB6EA9C8133D7F31AEEF0BAB793B9F48F21853_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mF1DA4467BB68F0C623C69CABEE7BDBCF56B4AEE1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mF2AAC652E27FF051859B7D6E67EC59A4F792D963_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mC5CE8E715A43FBBA5924C860EA542AF8202E59FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m48022B8A70A2C45E247884ED52141FCA9695A1B0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m295FA2C782117B117C7C15EA1A40B5C89BCA5A95_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m4644DE89476228E7FE1A31451FBA906DD39AEAE4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m91C0908D1326B8347BC582790135FDA101262CDB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mC187C9391085E050706A864D834108272C3B5F4C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mCE7226D6E0020AF1553F7171B52CD314D7F69356_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisAnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B_mC8F1D65DD438E372A4D9131139494F49987CF436_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisAnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1_m91766D9833AF2737D655BF71FE72B46A7543D637_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisAudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139_mAB3085D8B4D753AD39E204D4CBF9D5346A13DA47_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_m83285759FFB781D9ED8A24F864DA7D80490A3465_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mC20BDC11F0575D4DDACD88DEAB020A75B564F11A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mB68275DACDBA8E7A31E8D4F94E29DE490C338846_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m29830CD9ACA0126B5E56A827D3E7C1EEFDAFFB8D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8F737294D199447E8600FE272EF4B479D43BB930_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m9B747BA30199C9DEF5EFC5DDDCC6B41417445BD0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_m7CBBEACD5642DA737877A020AC980D46F23FCBF2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t002F09010D6E57174B6C73A6AA7D53F256F2E030_m5142E441A730CB10C2F1F82D6BAB6CA096AF4828_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m17FA206B6160A89ECE120941608D1B89D499203C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m9E5B158A4C9B0A5FA3027E4177DA98DA6264A56C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t0947D15694A2F80B19118B0E9DA4161A92D6139A_mC51379159902E31E43B069E9F706B565A78D7BA1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2_m3282E38B358B4461CF429E9BA856BAB7326AD5F4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m66CF6D3513851813DD6659C268BB12FBC88DA4BA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t443D72C18A3A122927C703E1FEBF06B4FDB17F38_m0443A4FA281A4B8195F5E6804278A35E87090ED0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t4588F5F844CFA9BFB03C33BD835C77631202A97B_m06D663C5FBD41F74C64AA49BFA1892A822036BFA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m0002994DEEB217F54EC3111A86BCBEF435DA2B1F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m5A0BC17921AC35849670855347808D9393DF8B16_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m3AECD5FB3B18910B3F0C8107C6EF08B1CEA10CCF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t7F6EFCC50C152F187A40F83B2412AA3926B29874_m44FE645F60462F85DF7BEDEC94EA57405DDB59C3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_m6492CFA1AD01D223CA6A09D9969C2DFA2E2522BB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m29D2C81E85706E37680406C712B7C8D7059BC4C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tBAF6664AA6A875750059858D06D0616671054743_m0E451BF23511A3F2D2E4E840D91A6527329F08DB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tBB2C3E86781F36999E2AE5A12F9264342F927AE4_mACB783F6411839B436F8760A6EB11B6CAF4F9132_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_m6B43F83D6E383FB8F114A21E49F58765BACE7A96_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mA54FCEA16D773F3AE200B75CF17100952E5701A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m967EB5C1814D8B4BCE2F049D793A283FD40F8ECB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_mFCE0B6A27B30770A4B512BEDB254E192D5280D29_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBB075A2082A735C0ECB89547222A737D30DBBCC4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisFileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58_m02C171CB1B77EEB520B7FF95188F8C38342DCD32_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisInputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22_m72F1471664A363CF5D3155FB498A23AE64C02E4B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisInputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4_m7C6EBF7DC3068160C1D416C9B449AA1F66B32395_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisInputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652_mED48230AD3EAD17FE42D1B42F752B54642FBE635_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisInputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409_m3CE610AD6148E524B952218F035DF088C707B9E1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisInputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316_mCBB27A22A708FB3194167D620E368F9C62728D86_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisInputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572_m6EB78BFCD08F38817E5101A186125DC3B000C9CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_m5105025B1F73BD96E7037CE69F9B9B8B1012E92E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mB557FFF75B8919577B6908E3F08942C55EFCBB07_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m659E758B21596E58A4289C84B7B96A1F6D7CDD62_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m4918F1A608A3EFBAE42BA98870BAF1D3F2F66072_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m739A55FED52BC421DC9BDA024BE349CD2D135C19_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A_m8DE0BC400ED94369C41EF97D1C4CE005F2DDF1D1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisMeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B_mAA5F04A0A01ABBF57D26C66104EAF76C009F69CA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisMixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34_m69F57E65A22413288FE8A97A4CAF2AC206D77D96_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisMixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4_mD1EB8CE3980FFB9C1E2BAFF67F922ED4C0F82178_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisMixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074_m17C7A6B28437CE70FC4539A54DAC8B5B8ECEDB15_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_mBB8B9105768BD0619054BE248B0CA0B1D24E14C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisMixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932_m6AADE33EF1A15014BBFEAB8B81BDBE0D21854A37_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisMixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45_m23C973484309E6C14C553DB04ED48BC2605C04F3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisMixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9_mEB91A8F6350D594B38889FA2DDCE98E79C3773F0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisMixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90_mC523466815C8B4C46D28D3B30D39DBADB178A630_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_mEE9F75376AD48C517CF2F48A755A36426E393FC7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4_m2A294C8205343BE79CF8BA8F1602DC853A993CA5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisPointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109_m6CDA63486DDE04292DB9A07C8AB4E62760FE8CF1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_m35859824B93E92DC4BAE008B4A760A8DF82C0AFA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisRayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B_m2350E27F6ADB52095D6403991496A9E8C7519A45_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m7EB571B3E8AC25C72D40E9396E77432DC14241E8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mEB90B7E039CD88096D8235EBC77043B201D089F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisSpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B_mE6BCEC3D77E4FCE2BACBCB63D16030795E4B5FB1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisSpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784_m05467A17D37B6C664E5E88F9497C6A26CB7487DF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m293EA28BAD3E4A83929BAE545B1011CC6143CEBB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_mF39952E86460266BA79B806D545DD5C2920DC6F5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_mB660489B728CE8C089645F41EEC79DFE051FCF77_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0B2D1D24DF475E0A9FF3ACB89CFFB9FD07958AD3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_m6A7AF0218C770BDC786185D61552281BF4051593_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NullTypeInfo_1__ctor_m26AD9AD184C3134222FC7ECD036461D6CB55769C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Statics_CreateDefaultTypeInfo_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m48CB0277EB61948ADEB6E43C95ECF99CFB75F693_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Statics_CreateDefaultTypeInfo_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m0A00AC6719CA0329C8C723DA5D076192B0688510_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Statics_CreateDefaultTypeInfo_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m081A0AFC3C7A0D6746C9148EF02F4182EA58D5A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Statics_CreateDefaultTypeInfo_TisUIntPtr_t_m4BF51455761B5D059AC2E3FA23CEF735EC9D0C9C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Statics_GetCustomAttribute_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m7ECE22C72C43417D525F0001E8CB60E1000579A9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Statics_GetCustomAttribute_TisEventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85_m4F16FDCBB99EAD8A4E96FEDA6F2C0CD45CFA713F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* ArrayTypeInfo_1_t917EFD3106B9A6A891D84AF0A1EAE86F7E53BA5A_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* EnumerableTypeInfo_2_t1B81D72B3A33D350331D3C9F1A4CA859454C351E_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Guid_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IntPtr_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* KeyValuePairTypeInfo_2_t48B3C70F6BED0E9D17020012EC2D719996E9A241_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* KeyValuePair_2_tE2B149987A7A0267959C8B92C6923BAB9823089D_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* NullableTypeInfo_1_tDCBDA4871397F1360E9A30276BDABFDABB3B9115_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UIntPtr_t_0_0_0_var;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_mEA3B674F656896F71B0C639BC8EEB2FC521DB872_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mB3D0C0E03BFDCA6DCE32948268CC6ACE5D28A08C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m84CD815D21A6D6C056335FD5ABB904D508EB2F2A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mCC3A7E4E4C0798377EB1D1DC7E7211EE35759C9A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mAC9E46FDECEC4FF35292E2DB381716356A9D2522_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_mE999CCA521DD03B6383D41412214029BEF0B86DA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m5285CDC9F41BD33F44970343E620830C4A5963E4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisGuid_t_m6CE4AD2C7E6AF127440BE859120AF7C1D1FB803F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_mCB2D4AD438D996980045B026004389E6C9E436AA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mD0580F6A57C00D4BB0B8497571BD8DE4D46AFC2F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m2C182555176CA144188F81AAD71A2CB9F3B97DED_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m422EDDA3031357E73A5DE5DD70068AD8E1858B2D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m9E51BB0EBAD067C4AD5BD72DDCC66A1DFE46355E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m045C87C6F889E6A10CBE7A003F332670C458DB6E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC649768C3F11C43DE320BF26E54183F12709CDEC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mAEEC55E914AA2B3B582B0B985BC8636F45FA9806_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m457B24E910F7BC25FA2D8A86207630B1453069C8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mFDA54C827C1D317996C9BD0BB6D5208A9FDB8615_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m1197B69B899E731E1CBFB1C54A1F408DA98A7B1C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_mC9A170485F63D61087F53E04271603ACEED8534C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_mC9517C8C0CFDC8377A7E22EB81BA7B9BE20555F8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m1E809338041B52162EA87A7B8D3F31A39D4D72C2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mFC6E3E824DF7484B94A7EA9B67C1CFDFA4D5A465_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mEEEAD860A7573F1F583EBA7E8343C4A84A7A68E9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mCE9E0BBE31D9DD4A428E1A9A923B0F09765520A6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m20BE3F0D660F831E8932E3F8E54EF17904360F3E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mC01C436387B9F301A31A63975A60EF31C0F14BC4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA82D8D7AC96631A617854337195E8830DB3F8649_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4_m4D1C8875DC3AFC3F951A05F681431115EB72B34E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mEBD369DABCA4D2399B45FE0EA72909694DDF8399_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m5197F63CA6582B6B88EEC42974071AB7777E1F32_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_mC2AE554FDB5EDAF726BA00BBA06E56E05D67B2EC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_mE688AE9AB2BE31D75E5630EE2B437C571AFF035B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m01428836A7119BC029D578A0B73315C61B270FE1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_mACEC4B3BBCF556F70CE4DF0781AC9C18266D9B59_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m92D8C7146266757EE12622FF6B0BB09065144477_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m977A77D146F0587CEEDAE221F57B35D62EE58BDE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m7CD8A89CCC3270F1591778B5FFDE2FD247A0020B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisRuntimeObject_m231DBB062A7AE93EDDB3DA7F315257F029F408EA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisRuntimeObject_mDB35A59E7FE53934FCA076CC6CEDB1B0CF0E21A8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisRuntimeObject_mDB70A968B86A65FAAEACC23E4318A873AB86BE78_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m03FB2954AF31857178AEEEA72BE5CE5EA55B67BE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m48321F54984CB8E7FAF3F76348A7DC698E5C3ABA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8F59A6F6DA436F5F98DEFA57143A5FE243E4D936_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mC0EE7D10AF2003CAEF21AC93EBF2338F59341582_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_m6732FF9F941B4C4CA599383565DCE9E1A3F71E59_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mB192B545BB885349A231450B4670ED8CF2F81E9F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m164D2D0DEF9850BE82BDBDCB708316B46E1D7BEE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m783A55A894592C6BE071E25F5F99E956A3BA7132_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCBB688507C1CCB926EEB79CF495D774E457E39DA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m540250F0BE7BD67F5C7E204F96442E5E7C8B7C6B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mDC37BFA945C8ED7FB8700727168D2F68CCFCE4A3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m6ED066B82A11FF1D2E38AAC05907A107E066F29A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m8D00BEE3850E6748E7BC97419A9C997873444A51_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mE03E866D8CC289D617AA9A5E95FA4263B1238C1D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m22BE921011F4181EBCA1FF732432A529E30BAE7E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_FindIndex_TisRuntimeObject_m080935AA8F5127F69944FA0C9F92E55EC4B4AA83_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_FindIndex_TisRuntimeObject_m139444E431531EEC2474B0CB068687A36B579685_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_FindIndex_TisRuntimeObject_m214491B7AA29D758A126088D7DE01528FC655FE4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_FindLastIndex_TisRuntimeObject_m3CACF7B288BFF83852DC9909FEC8E4E9E467C529_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_FindLastIndex_TisRuntimeObject_m6FA23A622561D230641A38B87A5961B70C2F998B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_FindLastIndex_TisRuntimeObject_mD120E7C8596220358A4C2542B8CC116239CCE36D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_m50F76630646083AE2493C46B06D9D5B9D6C3C22A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m5CE9F6C8D5A1826746221DD45C6187D3C9B8F049_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m1F352B00CF67AEE547813DF32C13E43BD171EB62_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m14DF1820F74C0CBFFFD19399B38AC5FB9A4D981A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mE582D10D9E0BF5EEBEFCD6E19078AA6D05CA0235_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_mC4365C58798F06788D9AAD4796089B8BEA7C5D7A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m83B1F1525A65BE034509F85B7A798756FF331D85_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisGuid_t_mBFE3E8B35C542B661E7B9CE17068434154F777BB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_m200739F61144011AE8554950AF95E62155CF33BF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mB731723C8A1F6E2997A5D21FA270A48C4EAB2B99_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m58E90042E7B17B74CB00683164B0B720BA91A8B5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB69F9A4858DC906B554451585199281F230F4EE5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m3A8AA082C2C2E7085FC7B09D5FE18D4A203A50D3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mDE039BCF9D5C0446B1D683115D39D29D2FE79A59_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m8ABC4C9182362C3064FB4F7DB433AE1813F0A2FC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_m38B925224BE7B76E242FC398D93D9662FDBF9A77_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_m831D225941E00E2D42362A65867C43DA10B1AFCD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA3A1313F7FD2A62CE172AEF0501E52E60B7AE9DD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_mF776BBFB14622D57612CF5C395E56F3642538888_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m37EA652262811150EF62FC34099E322F2EEFCA0D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m76AF616D8A8D3F0F807C161783871C266DE496B8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_mC1389D66F959F48244F648F64EB2624EC1381EB8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisRuntimeObject_m13B203F08875E17F92EC3ABF6A3C7B76351E79A8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA91455A82DA1E75779F77E30564F3425C79601A4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m8571072D8697027BC648229857C801EE327218B8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m39D77B3B21AD0C5FF6C74D4903289CAFDB17E6B5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mA5646235862DD2C78A918CB0834CAE844AC97D45_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_m72AB6EA9C8133D7F31AEEF0BAB793B9F48F21853_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mF1DA4467BB68F0C623C69CABEE7BDBCF56B4AEE1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mF2AAC652E27FF051859B7D6E67EC59A4F792D963_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mC5CE8E715A43FBBA5924C860EA542AF8202E59FE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m48022B8A70A2C45E247884ED52141FCA9695A1B0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m295FA2C782117B117C7C15EA1A40B5C89BCA5A95_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m4644DE89476228E7FE1A31451FBA906DD39AEAE4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m91C0908D1326B8347BC582790135FDA101262CDB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mC187C9391085E050706A864D834108272C3B5F4C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mCE7226D6E0020AF1553F7171B52CD314D7F69356_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisAnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B_mC8F1D65DD438E372A4D9131139494F49987CF436_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisAnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1_m91766D9833AF2737D655BF71FE72B46A7543D637_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisAudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139_mAB3085D8B4D753AD39E204D4CBF9D5346A13DA47_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_m83285759FFB781D9ED8A24F864DA7D80490A3465_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mC20BDC11F0575D4DDACD88DEAB020A75B564F11A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mB68275DACDBA8E7A31E8D4F94E29DE490C338846_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m29830CD9ACA0126B5E56A827D3E7C1EEFDAFFB8D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8F737294D199447E8600FE272EF4B479D43BB930_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m9B747BA30199C9DEF5EFC5DDDCC6B41417445BD0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_m7CBBEACD5642DA737877A020AC980D46F23FCBF2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t002F09010D6E57174B6C73A6AA7D53F256F2E030_m5142E441A730CB10C2F1F82D6BAB6CA096AF4828_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m17FA206B6160A89ECE120941608D1B89D499203C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m9E5B158A4C9B0A5FA3027E4177DA98DA6264A56C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t0947D15694A2F80B19118B0E9DA4161A92D6139A_mC51379159902E31E43B069E9F706B565A78D7BA1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2_m3282E38B358B4461CF429E9BA856BAB7326AD5F4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m66CF6D3513851813DD6659C268BB12FBC88DA4BA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t443D72C18A3A122927C703E1FEBF06B4FDB17F38_m0443A4FA281A4B8195F5E6804278A35E87090ED0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t4588F5F844CFA9BFB03C33BD835C77631202A97B_m06D663C5FBD41F74C64AA49BFA1892A822036BFA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m0002994DEEB217F54EC3111A86BCBEF435DA2B1F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m5A0BC17921AC35849670855347808D9393DF8B16_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m3AECD5FB3B18910B3F0C8107C6EF08B1CEA10CCF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t7F6EFCC50C152F187A40F83B2412AA3926B29874_m44FE645F60462F85DF7BEDEC94EA57405DDB59C3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_m6492CFA1AD01D223CA6A09D9969C2DFA2E2522BB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m29D2C81E85706E37680406C712B7C8D7059BC4C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_tBAF6664AA6A875750059858D06D0616671054743_m0E451BF23511A3F2D2E4E840D91A6527329F08DB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_tBB2C3E86781F36999E2AE5A12F9264342F927AE4_mACB783F6411839B436F8760A6EB11B6CAF4F9132_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_m6B43F83D6E383FB8F114A21E49F58765BACE7A96_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mA54FCEA16D773F3AE200B75CF17100952E5701A6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m967EB5C1814D8B4BCE2F049D793A283FD40F8ECB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_mFCE0B6A27B30770A4B512BEDB254E192D5280D29_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBB075A2082A735C0ECB89547222A737D30DBBCC4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisFileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58_m02C171CB1B77EEB520B7FF95188F8C38342DCD32_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisInputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22_m72F1471664A363CF5D3155FB498A23AE64C02E4B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisInputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4_m7C6EBF7DC3068160C1D416C9B449AA1F66B32395_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisInputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652_mED48230AD3EAD17FE42D1B42F752B54642FBE635_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisInputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409_m3CE610AD6148E524B952218F035DF088C707B9E1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisInputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316_mCBB27A22A708FB3194167D620E368F9C62728D86_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisInputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572_m6EB78BFCD08F38817E5101A186125DC3B000C9CB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_m5105025B1F73BD96E7037CE69F9B9B8B1012E92E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mB557FFF75B8919577B6908E3F08942C55EFCBB07_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m659E758B21596E58A4289C84B7B96A1F6D7CDD62_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m4918F1A608A3EFBAE42BA98870BAF1D3F2F66072_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m739A55FED52BC421DC9BDA024BE349CD2D135C19_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A_m8DE0BC400ED94369C41EF97D1C4CE005F2DDF1D1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisMeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B_mAA5F04A0A01ABBF57D26C66104EAF76C009F69CA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisMixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34_m69F57E65A22413288FE8A97A4CAF2AC206D77D96_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisMixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4_mD1EB8CE3980FFB9C1E2BAFF67F922ED4C0F82178_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisMixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074_m17C7A6B28437CE70FC4539A54DAC8B5B8ECEDB15_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_mBB8B9105768BD0619054BE248B0CA0B1D24E14C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisMixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932_m6AADE33EF1A15014BBFEAB8B81BDBE0D21854A37_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisMixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45_m23C973484309E6C14C553DB04ED48BC2605C04F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisMixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9_mEB91A8F6350D594B38889FA2DDCE98E79C3773F0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisMixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90_mC523466815C8B4C46D28D3B30D39DBADB178A630_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_mEE9F75376AD48C517CF2F48A755A36426E393FC7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4_m2A294C8205343BE79CF8BA8F1602DC853A993CA5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisPointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109_m6CDA63486DDE04292DB9A07C8AB4E62760FE8CF1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_m35859824B93E92DC4BAE008B4A760A8DF82C0AFA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisRayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B_m2350E27F6ADB52095D6403991496A9E8C7519A45_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m7EB571B3E8AC25C72D40E9396E77432DC14241E8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mEB90B7E039CD88096D8235EBC77043B201D089F8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisSpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B_mE6BCEC3D77E4FCE2BACBCB63D16030795E4B5FB1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisSpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784_m05467A17D37B6C664E5E88F9497C6A26CB7487DF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m293EA28BAD3E4A83929BAE545B1011CC6143CEBB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_mF39952E86460266BA79B806D545DD5C2920DC6F5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_mB660489B728CE8C089645F41EEC79DFE051FCF77_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CollectionsExtensions_SortedInsert_TisRuntimeObject_m45731811EF76597A8D6F6AD56132BE5B1AE6FA3A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Statics_CreateDefaultTypeInfo_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m48CB0277EB61948ADEB6E43C95ECF99CFB75F693_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Statics_CreateDefaultTypeInfo_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m0A00AC6719CA0329C8C723DA5D076192B0688510_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Statics_CreateDefaultTypeInfo_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m081A0AFC3C7A0D6746C9148EF02F4182EA58D5A4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Statics_CreateDefaultTypeInfo_TisUIntPtr_t_m4BF51455761B5D059AC2E3FA23CEF735EC9D0C9C_MetadataUsageId;
struct AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C_marshaled_com;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com;
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_com;
struct EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73;
struct MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B;
struct BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A;
struct InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5;
struct ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88;
struct ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103;
struct ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA;
struct InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E;
struct InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4;
struct ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9;
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F;
struct KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7;
struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A;
struct KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5;
struct KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417;
struct KeyValuePair_2U5BU5D_tC7A09A604E89B878B8A673BD6238A819ADDAD26A;
struct KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291;
struct KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B;
struct KeyValuePair_2U5BU5D_t2E62DFFEEC2B3F858CEA261AE40C4CC4A8A2808D;
struct KeyValuePair_2U5BU5D_tF3E7A3C0CD8F236E22836D54F25B24F11461CD8C;
struct KeyValuePair_2U5BU5D_tA70A6D970A6407747BDE3F49A31B0BE1D7043951;
struct KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB;
struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262;
struct KeyValuePair_2U5BU5D_t90D650B211D4280D9C648325D90FE4CDA0CE18D7;
struct KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8;
struct KeyValuePair_2U5BU5D_tE550885A1F49CF2FBFB8A2E39DC0EADEF91219B8;
struct KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD;
struct SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906;
struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF;
struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A;
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5;
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4;
struct SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41;
struct OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101;
struct Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983;
struct ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399;
struct RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65;
struct Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9;
struct RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED;
struct RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165;
struct GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2;
struct UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482;
struct UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC;
struct UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A;
struct WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0;
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6;
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28;
struct Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66;
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
// Microsoft.MixedReality.Toolkit.CollectionsExtensions
struct CollectionsExtensions_tEFE47715F344C964FD86CC077CCD967073783181 : public RuntimeObject
{
public:
public:
};
struct Il2CppArrayBounds;
// System.Array
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.Comparer`1<System.Object>
struct Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.Boundary.Edge>
struct EqualityComparer_1_t2325EF6C671A8A5B1B75E0C26BBCBFD9356E8A98 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t2325EF6C671A8A5B1B75E0C26BBCBFD9356E8A98_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t2325EF6C671A8A5B1B75E0C26BBCBFD9356E8A98 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t2325EF6C671A8A5B1B75E0C26BBCBFD9356E8A98_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t2325EF6C671A8A5B1B75E0C26BBCBFD9356E8A98 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t2325EF6C671A8A5B1B75E0C26BBCBFD9356E8A98 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t2325EF6C671A8A5B1B75E0C26BBCBFD9356E8A98 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction>
struct EqualityComparer_1_t5539349CF2BB6918DDF0B77E8FC52F86CFAEE22B : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t5539349CF2BB6918DDF0B77E8FC52F86CFAEE22B_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t5539349CF2BB6918DDF0B77E8FC52F86CFAEE22B * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t5539349CF2BB6918DDF0B77E8FC52F86CFAEE22B_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t5539349CF2BB6918DDF0B77E8FC52F86CFAEE22B * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t5539349CF2BB6918DDF0B77E8FC52F86CFAEE22B ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t5539349CF2BB6918DDF0B77E8FC52F86CFAEE22B * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer>
struct EqualityComparer_1_tD9FADBA5768DF32FA3E264D8C104E71A53A435E5 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tD9FADBA5768DF32FA3E264D8C104E71A53A435E5_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tD9FADBA5768DF32FA3E264D8C104E71A53A435E5 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tD9FADBA5768DF32FA3E264D8C104E71A53A435E5_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tD9FADBA5768DF32FA3E264D8C104E71A53A435E5 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tD9FADBA5768DF32FA3E264D8C104E71A53A435E5 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tD9FADBA5768DF32FA3E264D8C104E71A53A435E5 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings>
struct EqualityComparer_1_tBA358B06D509320B3D3C82C2061A9546ED4B0D77 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tBA358B06D509320B3D3C82C2061A9546ED4B0D77_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tBA358B06D509320B3D3C82C2061A9546ED4B0D77 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tBA358B06D509320B3D3C82C2061A9546ED4B0D77_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tBA358B06D509320B3D3C82C2061A9546ED4B0D77 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tBA358B06D509320B3D3C82C2061A9546ED4B0D77 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tBA358B06D509320B3D3C82C2061A9546ED4B0D77 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.UI.ProfileSettings>
struct EqualityComparer_1_tAAD434C99D7E20699C7C6335341D2EB7064A9C4B : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tAAD434C99D7E20699C7C6335341D2EB7064A9C4B_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tAAD434C99D7E20699C7C6335341D2EB7064A9C4B * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tAAD434C99D7E20699C7C6335341D2EB7064A9C4B_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tAAD434C99D7E20699C7C6335341D2EB7064A9C4B * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tAAD434C99D7E20699C7C6335341D2EB7064A9C4B ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tAAD434C99D7E20699C7C6335341D2EB7064A9C4B * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.UI.ShaderProperties>
struct EqualityComparer_1_t6FFD9221D0F2B19554CB93BDED86F324F675F41B : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t6FFD9221D0F2B19554CB93BDED86F324F675F41B_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t6FFD9221D0F2B19554CB93BDED86F324F675F41B * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t6FFD9221D0F2B19554CB93BDED86F324F675F41B_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t6FFD9221D0F2B19554CB93BDED86F324F675F41B * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t6FFD9221D0F2B19554CB93BDED86F324F675F41B ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t6FFD9221D0F2B19554CB93BDED86F324F675F41B * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.UI.ThemeSettings>
struct EqualityComparer_1_t934AEB77EAD7F2F153DAFC6A0F51D1BA652C0086 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t934AEB77EAD7F2F153DAFC6A0F51D1BA652C0086_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t934AEB77EAD7F2F153DAFC6A0F51D1BA652C0086 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t934AEB77EAD7F2F153DAFC6A0F51D1BA652C0086_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t934AEB77EAD7F2F153DAFC6A0F51D1BA652C0086 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t934AEB77EAD7F2F153DAFC6A0F51D1BA652C0086 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t934AEB77EAD7F2F153DAFC6A0F51D1BA652C0086 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData>
struct EqualityComparer_1_t738C13BF0507189822BF3355B733F04CADAC63CE : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t738C13BF0507189822BF3355B733F04CADAC63CE_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t738C13BF0507189822BF3355B733F04CADAC63CE * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t738C13BF0507189822BF3355B733F04CADAC63CE_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t738C13BF0507189822BF3355B733F04CADAC63CE * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t738C13BF0507189822BF3355B733F04CADAC63CE ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t738C13BF0507189822BF3355B733F04CADAC63CE * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting>
struct EqualityComparer_1_t728101F67A8CECD65C7520DC19EF6FB7F65A0D26 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t728101F67A8CECD65C7520DC19EF6FB7F65A0D26_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t728101F67A8CECD65C7520DC19EF6FB7F65A0D26 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t728101F67A8CECD65C7520DC19EF6FB7F65A0D26_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t728101F67A8CECD65C7520DC19EF6FB7F65A0D26 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t728101F67A8CECD65C7520DC19EF6FB7F65A0D26 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t728101F67A8CECD65C7520DC19EF6FB7F65A0D26 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode>
struct EqualityComparer_1_t3507F28BC058454819B289885AD982AE6541A963 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t3507F28BC058454819B289885AD982AE6541A963_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t3507F28BC058454819B289885AD982AE6541A963 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3507F28BC058454819B289885AD982AE6541A963_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t3507F28BC058454819B289885AD982AE6541A963 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t3507F28BC058454819B289885AD982AE6541A963 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t3507F28BC058454819B289885AD982AE6541A963 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Byte>
struct EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Char>
struct EqualityComparer_1_t9918F2EC0F0844A7A97CFA33C602072D990AB562 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t9918F2EC0F0844A7A97CFA33C602072D990AB562_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t9918F2EC0F0844A7A97CFA33C602072D990AB562 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t9918F2EC0F0844A7A97CFA33C602072D990AB562_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t9918F2EC0F0844A7A97CFA33C602072D990AB562 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t9918F2EC0F0844A7A97CFA33C602072D990AB562 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t9918F2EC0F0844A7A97CFA33C602072D990AB562 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>
struct EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Guid>
struct EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Int32>
struct EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Int32Enum>
struct EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Object>
struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Single>
struct EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.UInt32>
struct EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.UInt64>
struct EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<TMPro.SpriteAssetUtilities.TexturePacker_SpriteData>
struct EqualityComparer_1_t5AE428F5422000B69378E01CDEC66C25A5CCDC3C : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t5AE428F5422000B69378E01CDEC66C25A5CCDC3C_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t5AE428F5422000B69378E01CDEC66C25A5CCDC3C * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t5AE428F5422000B69378E01CDEC66C25A5CCDC3C_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t5AE428F5422000B69378E01CDEC66C25A5CCDC3C * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t5AE428F5422000B69378E01CDEC66C25A5CCDC3C ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t5AE428F5422000B69378E01CDEC66C25A5CCDC3C * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper_OrderBlock>
struct EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>
struct EqualityComparer_1_t64516AE22515640CA46E6ACDBB51EB38AE8BA243 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t64516AE22515640CA46E6ACDBB51EB38AE8BA243_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t64516AE22515640CA46E6ACDBB51EB38AE8BA243 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t64516AE22515640CA46E6ACDBB51EB38AE8BA243_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t64516AE22515640CA46E6ACDBB51EB38AE8BA243 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t64516AE22515640CA46E6ACDBB51EB38AE8BA243 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t64516AE22515640CA46E6ACDBB51EB38AE8BA243 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Color>
struct EqualityComparer_1_t3FD85BA110510D8815AF1DFDD8266E284A5632C6 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t3FD85BA110510D8815AF1DFDD8266E284A5632C6_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t3FD85BA110510D8815AF1DFDD8266E284A5632C6 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3FD85BA110510D8815AF1DFDD8266E284A5632C6_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t3FD85BA110510D8815AF1DFDD8266E284A5632C6 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t3FD85BA110510D8815AF1DFDD8266E284A5632C6 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t3FD85BA110510D8815AF1DFDD8266E284A5632C6 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>
struct EqualityComparer_1_t4814B5237F2155B9F52EA643AB3CCEBDC093964A : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t4814B5237F2155B9F52EA643AB3CCEBDC093964A_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t4814B5237F2155B9F52EA643AB3CCEBDC093964A * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t4814B5237F2155B9F52EA643AB3CCEBDC093964A_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t4814B5237F2155B9F52EA643AB3CCEBDC093964A * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t4814B5237F2155B9F52EA643AB3CCEBDC093964A ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t4814B5237F2155B9F52EA643AB3CCEBDC093964A * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Matrix4x4>
struct EqualityComparer_1_t782178306EB8B0010E7B1E3913E62F5934F46927 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t782178306EB8B0010E7B1E3913E62F5934F46927_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t782178306EB8B0010E7B1E3913E62F5934F46927 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t782178306EB8B0010E7B1E3913E62F5934F46927_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t782178306EB8B0010E7B1E3913E62F5934F46927 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t782178306EB8B0010E7B1E3913E62F5934F46927 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t782178306EB8B0010E7B1E3913E62F5934F46927 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Ray>
struct EqualityComparer_1_tF14F528C27E637700C3B5190DD4040F2B269F291 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tF14F528C27E637700C3B5190DD4040F2B269F291_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tF14F528C27E637700C3B5190DD4040F2B269F291 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tF14F528C27E637700C3B5190DD4040F2B269F291_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tF14F528C27E637700C3B5190DD4040F2B269F291 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tF14F528C27E637700C3B5190DD4040F2B269F291 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tF14F528C27E637700C3B5190DD4040F2B269F291 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.RaycastHit2D>
struct EqualityComparer_1_t7A8526AAC9D8F3F6E9FC92FC80191263130CFDE8 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t7A8526AAC9D8F3F6E9FC92FC80191263130CFDE8_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t7A8526AAC9D8F3F6E9FC92FC80191263130CFDE8 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t7A8526AAC9D8F3F6E9FC92FC80191263130CFDE8_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t7A8526AAC9D8F3F6E9FC92FC80191263130CFDE8 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t7A8526AAC9D8F3F6E9FC92FC80191263130CFDE8 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t7A8526AAC9D8F3F6E9FC92FC80191263130CFDE8 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.TextCore.GlyphRect>
struct EqualityComparer_1_tCDF71D565EF681A3FA07FEA641ACF98768CDF0D2 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tCDF71D565EF681A3FA07FEA641ACF98768CDF0D2_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tCDF71D565EF681A3FA07FEA641ACF98768CDF0D2 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tCDF71D565EF681A3FA07FEA641ACF98768CDF0D2_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tCDF71D565EF681A3FA07FEA641ACF98768CDF0D2 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tCDF71D565EF681A3FA07FEA641ACF98768CDF0D2 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tCDF71D565EF681A3FA07FEA641ACF98768CDF0D2 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>
struct EqualityComparer_1_tC9FE6AC7127ED7A22F717A9EF3208401E3C1D28D : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tC9FE6AC7127ED7A22F717A9EF3208401E3C1D28D_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tC9FE6AC7127ED7A22F717A9EF3208401E3C1D28D * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tC9FE6AC7127ED7A22F717A9EF3208401E3C1D28D_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tC9FE6AC7127ED7A22F717A9EF3208401E3C1D28D * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tC9FE6AC7127ED7A22F717A9EF3208401E3C1D28D ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tC9FE6AC7127ED7A22F717A9EF3208401E3C1D28D * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>
struct EqualityComparer_1_tF33A333C3CC9DCBB0DA73EBB7975182A3CA3FDB6 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tF33A333C3CC9DCBB0DA73EBB7975182A3CA3FDB6_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tF33A333C3CC9DCBB0DA73EBB7975182A3CA3FDB6 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tF33A333C3CC9DCBB0DA73EBB7975182A3CA3FDB6_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tF33A333C3CC9DCBB0DA73EBB7975182A3CA3FDB6 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tF33A333C3CC9DCBB0DA73EBB7975182A3CA3FDB6 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tF33A333C3CC9DCBB0DA73EBB7975182A3CA3FDB6 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>
struct EqualityComparer_1_t7443BABD4F571AE906F5407888530FDE8F1EE9E7 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t7443BABD4F571AE906F5407888530FDE8F1EE9E7_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t7443BABD4F571AE906F5407888530FDE8F1EE9E7 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t7443BABD4F571AE906F5407888530FDE8F1EE9E7_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t7443BABD4F571AE906F5407888530FDE8F1EE9E7 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t7443BABD4F571AE906F5407888530FDE8F1EE9E7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t7443BABD4F571AE906F5407888530FDE8F1EE9E7 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext_WorkRequest>
struct EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector2>
struct EqualityComparer_1_t5404190F17E14E6CF5185C22EC4668BCE15B76F1 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t5404190F17E14E6CF5185C22EC4668BCE15B76F1_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t5404190F17E14E6CF5185C22EC4668BCE15B76F1 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t5404190F17E14E6CF5185C22EC4668BCE15B76F1_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t5404190F17E14E6CF5185C22EC4668BCE15B76F1 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t5404190F17E14E6CF5185C22EC4668BCE15B76F1 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t5404190F17E14E6CF5185C22EC4668BCE15B76F1 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>
struct EqualityComparer_1_tF8B3A336A2CCCA76C99157B28AA030355D18120D : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_tF8B3A336A2CCCA76C99157B28AA030355D18120D_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_tF8B3A336A2CCCA76C99157B28AA030355D18120D * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tF8B3A336A2CCCA76C99157B28AA030355D18120D_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_tF8B3A336A2CCCA76C99157B28AA030355D18120D * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_tF8B3A336A2CCCA76C99157B28AA030355D18120D ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_tF8B3A336A2CCCA76C99157B28AA030355D18120D * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>
struct EqualityComparer_1_t7E3233D219BAD9A94FD502F672DC198E60C604CA : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t7E3233D219BAD9A94FD502F672DC198E60C604CA_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t7E3233D219BAD9A94FD502F672DC198E60C604CA * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t7E3233D219BAD9A94FD502F672DC198E60C604CA_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t7E3233D219BAD9A94FD502F672DC198E60C604CA * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t7E3233D219BAD9A94FD502F672DC198E60C604CA ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t7E3233D219BAD9A94FD502F672DC198E60C604CA * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____items_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_1() const { return ____items_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields, ____emptyArray_5)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__emptyArray_5() const { return ____emptyArray_5; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Type>
struct List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____items_1)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__items_1() const { return ____items_1; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_StaticFields, ____emptyArray_5)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__emptyArray_5() const { return ____emptyArray_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Linq.Enumerable
struct Enumerable_tECC271C86C6E8F72E4E27C7C8FD5DB7B63D5D737 : public RuntimeObject
{
public:
public:
};
// System.Linq.Enumerable_<>c__DisplayClass6_0`1<System.Object>
struct U3CU3Ec__DisplayClass6_0_1_t69D2CA48E126DBADF561D4ECF6D6C18FB40017BE : public RuntimeObject
{
public:
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable_<>c__DisplayClass6_0`1::predicate1
Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * ___predicate1_0;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable_<>c__DisplayClass6_0`1::predicate2
Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * ___predicate2_1;
public:
inline static int32_t get_offset_of_predicate1_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass6_0_1_t69D2CA48E126DBADF561D4ECF6D6C18FB40017BE, ___predicate1_0)); }
inline Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * get_predicate1_0() const { return ___predicate1_0; }
inline Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC ** get_address_of_predicate1_0() { return &___predicate1_0; }
inline void set_predicate1_0(Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * value)
{
___predicate1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___predicate1_0), (void*)value);
}
inline static int32_t get_offset_of_predicate2_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass6_0_1_t69D2CA48E126DBADF561D4ECF6D6C18FB40017BE, ___predicate2_1)); }
inline Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * get_predicate2_1() const { return ___predicate2_1; }
inline Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC ** get_address_of_predicate2_1() { return &___predicate2_1; }
inline void set_predicate2_1(Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * value)
{
___predicate2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___predicate2_1), (void*)value);
}
};
// System.Linq.Enumerable_<>c__DisplayClass6_0`1<UnityEngine.Ray>
struct U3CU3Ec__DisplayClass6_0_1_t3C729929CDD16C4B567BE980075236C59C100E80 : public RuntimeObject
{
public:
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable_<>c__DisplayClass6_0`1::predicate1
Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE * ___predicate1_0;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable_<>c__DisplayClass6_0`1::predicate2
Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE * ___predicate2_1;
public:
inline static int32_t get_offset_of_predicate1_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass6_0_1_t3C729929CDD16C4B567BE980075236C59C100E80, ___predicate1_0)); }
inline Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE * get_predicate1_0() const { return ___predicate1_0; }
inline Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE ** get_address_of_predicate1_0() { return &___predicate1_0; }
inline void set_predicate1_0(Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE * value)
{
___predicate1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___predicate1_0), (void*)value);
}
inline static int32_t get_offset_of_predicate2_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass6_0_1_t3C729929CDD16C4B567BE980075236C59C100E80, ___predicate2_1)); }
inline Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE * get_predicate2_1() const { return ___predicate2_1; }
inline Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE ** get_address_of_predicate2_1() { return &___predicate2_1; }
inline void set_predicate2_1(Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE * value)
{
___predicate2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___predicate2_1), (void*)value);
}
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// 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_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
{
};
// Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect_AudioLoFiFilterSettings
struct AudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139
{
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_t2DBDEA6041A08604EC936D49487AB423AB87F139, ___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_t2DBDEA6041A08604EC936D49487AB423AB87F139, ___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;
}
};
// Microsoft.MixedReality.Toolkit.Input.KeywordAndResponse
struct KeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A
{
public:
// System.String Microsoft.MixedReality.Toolkit.Input.KeywordAndResponse::keyword
String_t* ___keyword_0;
// UnityEngine.Events.UnityEvent Microsoft.MixedReality.Toolkit.Input.KeywordAndResponse::response
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * ___response_1;
public:
inline static int32_t get_offset_of_keyword_0() { return static_cast<int32_t>(offsetof(KeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A, ___keyword_0)); }
inline String_t* get_keyword_0() const { return ___keyword_0; }
inline String_t** get_address_of_keyword_0() { return &___keyword_0; }
inline void set_keyword_0(String_t* value)
{
___keyword_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keyword_0), (void*)value);
}
inline static int32_t get_offset_of_response_1() { return static_cast<int32_t>(offsetof(KeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A, ___response_1)); }
inline UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * get_response_1() const { return ___response_1; }
inline UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F ** get_address_of_response_1() { return &___response_1; }
inline void set_response_1(UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * value)
{
___response_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___response_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.KeywordAndResponse
struct KeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A_marshaled_pinvoke
{
char* ___keyword_0;
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * ___response_1;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.KeywordAndResponse
struct KeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A_marshaled_com
{
Il2CppChar* ___keyword_0;
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * ___response_1;
};
// Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer
struct BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B
{
public:
// UnityEngine.MaterialPropertyBlock Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer::Block
MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 * ___Block_0;
// UnityEngine.Renderer Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer::Renderer
Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * ___Renderer_1;
public:
inline static int32_t get_offset_of_Block_0() { return static_cast<int32_t>(offsetof(BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B, ___Block_0)); }
inline MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 * get_Block_0() const { return ___Block_0; }
inline MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 ** get_address_of_Block_0() { return &___Block_0; }
inline void set_Block_0(MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 * value)
{
___Block_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Block_0), (void*)value);
}
inline static int32_t get_offset_of_Renderer_1() { return static_cast<int32_t>(offsetof(BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B, ___Renderer_1)); }
inline Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * get_Renderer_1() const { return ___Renderer_1; }
inline Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 ** get_address_of_Renderer_1() { return &___Renderer_1; }
inline void set_Renderer_1(Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * value)
{
___Renderer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Renderer_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme/BlocksAndRenderer
struct BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_marshaled_pinvoke
{
MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 * ___Block_0;
Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * ___Renderer_1;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme/BlocksAndRenderer
struct BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_marshaled_com
{
MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 * ___Block_0;
Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * ___Renderer_1;
};
// Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings
struct InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D
{
public:
// System.String Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings::Name
String_t* ___Name_0;
// System.String Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings::AssemblyQualifiedName
String_t* ___AssemblyQualifiedName_1;
// System.Type Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings::Type
Type_t * ___Type_2;
// Microsoft.MixedReality.Toolkit.UI.InteractableThemeBase Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings::Theme
InteractableThemeBase_t32921DF1297AA5C22F2000A28D1CA5F8095EC11F * ___Theme_3;
// System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.InteractableThemeProperty> Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings::Properties
List_1_tA0B25EF501463C55DE9F03DDC5F52F18495FC002 * ___Properties_4;
// System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.InteractableThemeProperty> Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings::History
List_1_tA0B25EF501463C55DE9F03DDC5F52F18495FC002 * ___History_5;
// Microsoft.MixedReality.Toolkit.Utilities.Easing Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings::Easing
Easing_t13E61FF806357D21552C3028585751420EDCD360 * ___Easing_6;
// System.Boolean Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings::NoEasing
bool ___NoEasing_7;
// System.Boolean Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings::IsValid
bool ___IsValid_8;
// Microsoft.MixedReality.Toolkit.UI.ThemeTarget Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings::ThemeTarget
ThemeTarget_t7F6AA97DF596B6228F674C9EEA23C49808FEEB01 * ___ThemeTarget_9;
public:
inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D, ___Name_0)); }
inline String_t* get_Name_0() const { return ___Name_0; }
inline String_t** get_address_of_Name_0() { return &___Name_0; }
inline void set_Name_0(String_t* value)
{
___Name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Name_0), (void*)value);
}
inline static int32_t get_offset_of_AssemblyQualifiedName_1() { return static_cast<int32_t>(offsetof(InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D, ___AssemblyQualifiedName_1)); }
inline String_t* get_AssemblyQualifiedName_1() const { return ___AssemblyQualifiedName_1; }
inline String_t** get_address_of_AssemblyQualifiedName_1() { return &___AssemblyQualifiedName_1; }
inline void set_AssemblyQualifiedName_1(String_t* value)
{
___AssemblyQualifiedName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___AssemblyQualifiedName_1), (void*)value);
}
inline static int32_t get_offset_of_Type_2() { return static_cast<int32_t>(offsetof(InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D, ___Type_2)); }
inline Type_t * get_Type_2() const { return ___Type_2; }
inline Type_t ** get_address_of_Type_2() { return &___Type_2; }
inline void set_Type_2(Type_t * value)
{
___Type_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Type_2), (void*)value);
}
inline static int32_t get_offset_of_Theme_3() { return static_cast<int32_t>(offsetof(InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D, ___Theme_3)); }
inline InteractableThemeBase_t32921DF1297AA5C22F2000A28D1CA5F8095EC11F * get_Theme_3() const { return ___Theme_3; }
inline InteractableThemeBase_t32921DF1297AA5C22F2000A28D1CA5F8095EC11F ** get_address_of_Theme_3() { return &___Theme_3; }
inline void set_Theme_3(InteractableThemeBase_t32921DF1297AA5C22F2000A28D1CA5F8095EC11F * value)
{
___Theme_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Theme_3), (void*)value);
}
inline static int32_t get_offset_of_Properties_4() { return static_cast<int32_t>(offsetof(InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D, ___Properties_4)); }
inline List_1_tA0B25EF501463C55DE9F03DDC5F52F18495FC002 * get_Properties_4() const { return ___Properties_4; }
inline List_1_tA0B25EF501463C55DE9F03DDC5F52F18495FC002 ** get_address_of_Properties_4() { return &___Properties_4; }
inline void set_Properties_4(List_1_tA0B25EF501463C55DE9F03DDC5F52F18495FC002 * value)
{
___Properties_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Properties_4), (void*)value);
}
inline static int32_t get_offset_of_History_5() { return static_cast<int32_t>(offsetof(InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D, ___History_5)); }
inline List_1_tA0B25EF501463C55DE9F03DDC5F52F18495FC002 * get_History_5() const { return ___History_5; }
inline List_1_tA0B25EF501463C55DE9F03DDC5F52F18495FC002 ** get_address_of_History_5() { return &___History_5; }
inline void set_History_5(List_1_tA0B25EF501463C55DE9F03DDC5F52F18495FC002 * value)
{
___History_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___History_5), (void*)value);
}
inline static int32_t get_offset_of_Easing_6() { return static_cast<int32_t>(offsetof(InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D, ___Easing_6)); }
inline Easing_t13E61FF806357D21552C3028585751420EDCD360 * get_Easing_6() const { return ___Easing_6; }
inline Easing_t13E61FF806357D21552C3028585751420EDCD360 ** get_address_of_Easing_6() { return &___Easing_6; }
inline void set_Easing_6(Easing_t13E61FF806357D21552C3028585751420EDCD360 * value)
{
___Easing_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Easing_6), (void*)value);
}
inline static int32_t get_offset_of_NoEasing_7() { return static_cast<int32_t>(offsetof(InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D, ___NoEasing_7)); }
inline bool get_NoEasing_7() const { return ___NoEasing_7; }
inline bool* get_address_of_NoEasing_7() { return &___NoEasing_7; }
inline void set_NoEasing_7(bool value)
{
___NoEasing_7 = value;
}
inline static int32_t get_offset_of_IsValid_8() { return static_cast<int32_t>(offsetof(InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D, ___IsValid_8)); }
inline bool get_IsValid_8() const { return ___IsValid_8; }
inline bool* get_address_of_IsValid_8() { return &___IsValid_8; }
inline void set_IsValid_8(bool value)
{
___IsValid_8 = value;
}
inline static int32_t get_offset_of_ThemeTarget_9() { return static_cast<int32_t>(offsetof(InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D, ___ThemeTarget_9)); }
inline ThemeTarget_t7F6AA97DF596B6228F674C9EEA23C49808FEEB01 * get_ThemeTarget_9() const { return ___ThemeTarget_9; }
inline ThemeTarget_t7F6AA97DF596B6228F674C9EEA23C49808FEEB01 ** get_address_of_ThemeTarget_9() { return &___ThemeTarget_9; }
inline void set_ThemeTarget_9(ThemeTarget_t7F6AA97DF596B6228F674C9EEA23C49808FEEB01 * value)
{
___ThemeTarget_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ThemeTarget_9), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings
struct InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_marshaled_pinvoke
{
char* ___Name_0;
char* ___AssemblyQualifiedName_1;
Type_t * ___Type_2;
InteractableThemeBase_t32921DF1297AA5C22F2000A28D1CA5F8095EC11F * ___Theme_3;
List_1_tA0B25EF501463C55DE9F03DDC5F52F18495FC002 * ___Properties_4;
List_1_tA0B25EF501463C55DE9F03DDC5F52F18495FC002 * ___History_5;
Easing_t13E61FF806357D21552C3028585751420EDCD360 * ___Easing_6;
int32_t ___NoEasing_7;
int32_t ___IsValid_8;
ThemeTarget_t7F6AA97DF596B6228F674C9EEA23C49808FEEB01 * ___ThemeTarget_9;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings
struct InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_marshaled_com
{
Il2CppChar* ___Name_0;
Il2CppChar* ___AssemblyQualifiedName_1;
Type_t * ___Type_2;
InteractableThemeBase_t32921DF1297AA5C22F2000A28D1CA5F8095EC11F * ___Theme_3;
List_1_tA0B25EF501463C55DE9F03DDC5F52F18495FC002 * ___Properties_4;
List_1_tA0B25EF501463C55DE9F03DDC5F52F18495FC002 * ___History_5;
Easing_t13E61FF806357D21552C3028585751420EDCD360 * ___Easing_6;
int32_t ___NoEasing_7;
int32_t ___IsValid_8;
ThemeTarget_t7F6AA97DF596B6228F674C9EEA23C49808FEEB01 * ___ThemeTarget_9;
};
// Microsoft.MixedReality.Toolkit.UI.ProfileSettings
struct ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301
{
public:
// System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.ThemeSettings> Microsoft.MixedReality.Toolkit.UI.ProfileSettings::ThemeSettings
List_1_t3FBB6272CDFBE81A0ECBDD64EB40931ED6301A57 * ___ThemeSettings_0;
public:
inline static int32_t get_offset_of_ThemeSettings_0() { return static_cast<int32_t>(offsetof(ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301, ___ThemeSettings_0)); }
inline List_1_t3FBB6272CDFBE81A0ECBDD64EB40931ED6301A57 * get_ThemeSettings_0() const { return ___ThemeSettings_0; }
inline List_1_t3FBB6272CDFBE81A0ECBDD64EB40931ED6301A57 ** get_address_of_ThemeSettings_0() { return &___ThemeSettings_0; }
inline void set_ThemeSettings_0(List_1_t3FBB6272CDFBE81A0ECBDD64EB40931ED6301A57 * value)
{
___ThemeSettings_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ThemeSettings_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.UI.ProfileSettings
struct ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_marshaled_pinvoke
{
List_1_t3FBB6272CDFBE81A0ECBDD64EB40931ED6301A57 * ___ThemeSettings_0;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.UI.ProfileSettings
struct ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_marshaled_com
{
List_1_t3FBB6272CDFBE81A0ECBDD64EB40931ED6301A57 * ___ThemeSettings_0;
};
// Microsoft.MixedReality.Toolkit.UI.ThemeSettings
struct ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1
{
public:
// System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings> Microsoft.MixedReality.Toolkit.UI.ThemeSettings::Settings
List_1_t1F3CAD705492F7FFFB9CB7EC0061FAF753444FED * ___Settings_0;
public:
inline static int32_t get_offset_of_Settings_0() { return static_cast<int32_t>(offsetof(ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1, ___Settings_0)); }
inline List_1_t1F3CAD705492F7FFFB9CB7EC0061FAF753444FED * get_Settings_0() const { return ___Settings_0; }
inline List_1_t1F3CAD705492F7FFFB9CB7EC0061FAF753444FED ** get_address_of_Settings_0() { return &___Settings_0; }
inline void set_Settings_0(List_1_t1F3CAD705492F7FFFB9CB7EC0061FAF753444FED * value)
{
___Settings_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Settings_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.UI.ThemeSettings
struct ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_marshaled_pinvoke
{
List_1_t1F3CAD705492F7FFFB9CB7EC0061FAF753444FED * ___Settings_0;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.UI.ThemeSettings
struct ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_marshaled_com
{
List_1_t1F3CAD705492F7FFFB9CB7EC0061FAF753444FED * ___Settings_0;
};
// Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData
struct InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorField Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData::Attributes
InspectorField_tAF090FFB92FEBDC9A920C0402A877B3DC76FA333 * ___Attributes_0;
// System.Object Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData::Value
RuntimeObject * ___Value_1;
// System.String Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData::Name
String_t* ___Name_2;
public:
inline static int32_t get_offset_of_Attributes_0() { return static_cast<int32_t>(offsetof(InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE, ___Attributes_0)); }
inline InspectorField_tAF090FFB92FEBDC9A920C0402A877B3DC76FA333 * get_Attributes_0() const { return ___Attributes_0; }
inline InspectorField_tAF090FFB92FEBDC9A920C0402A877B3DC76FA333 ** get_address_of_Attributes_0() { return &___Attributes_0; }
inline void set_Attributes_0(InspectorField_tAF090FFB92FEBDC9A920C0402A877B3DC76FA333 * value)
{
___Attributes_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Attributes_0), (void*)value);
}
inline static int32_t get_offset_of_Value_1() { return static_cast<int32_t>(offsetof(InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE, ___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);
}
inline static int32_t get_offset_of_Name_2() { return static_cast<int32_t>(offsetof(InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE, ___Name_2)); }
inline String_t* get_Name_2() const { return ___Name_2; }
inline String_t** get_address_of_Name_2() { return &___Name_2; }
inline void set_Name_2(String_t* value)
{
___Name_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Name_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData
struct InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_marshaled_pinvoke
{
InspectorField_tAF090FFB92FEBDC9A920C0402A877B3DC76FA333 * ___Attributes_0;
Il2CppIUnknown* ___Value_1;
char* ___Name_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData
struct InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_marshaled_com
{
InspectorField_tAF090FFB92FEBDC9A920C0402A877B3DC76FA333 * ___Attributes_0;
Il2CppIUnknown* ___Value_1;
Il2CppChar* ___Name_2;
};
// Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo
struct FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58
{
public:
// System.String Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo::CurrentDir
String_t* ___CurrentDir_0;
// System.Int32 Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo::DateCreated
int32_t ___DateCreated_1;
// System.Int32 Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo::FileSize
int32_t ___FileSize_2;
// System.String Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo::Id
String_t* ___Id_3;
// System.String Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo::Name
String_t* ___Name_4;
// System.String Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo::SubPath
String_t* ___SubPath_5;
// System.Int32 Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo::Type
int32_t ___Type_6;
public:
inline static int32_t get_offset_of_CurrentDir_0() { return static_cast<int32_t>(offsetof(FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58, ___CurrentDir_0)); }
inline String_t* get_CurrentDir_0() const { return ___CurrentDir_0; }
inline String_t** get_address_of_CurrentDir_0() { return &___CurrentDir_0; }
inline void set_CurrentDir_0(String_t* value)
{
___CurrentDir_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CurrentDir_0), (void*)value);
}
inline static int32_t get_offset_of_DateCreated_1() { return static_cast<int32_t>(offsetof(FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58, ___DateCreated_1)); }
inline int32_t get_DateCreated_1() const { return ___DateCreated_1; }
inline int32_t* get_address_of_DateCreated_1() { return &___DateCreated_1; }
inline void set_DateCreated_1(int32_t value)
{
___DateCreated_1 = value;
}
inline static int32_t get_offset_of_FileSize_2() { return static_cast<int32_t>(offsetof(FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58, ___FileSize_2)); }
inline int32_t get_FileSize_2() const { return ___FileSize_2; }
inline int32_t* get_address_of_FileSize_2() { return &___FileSize_2; }
inline void set_FileSize_2(int32_t value)
{
___FileSize_2 = value;
}
inline static int32_t get_offset_of_Id_3() { return static_cast<int32_t>(offsetof(FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58, ___Id_3)); }
inline String_t* get_Id_3() const { return ___Id_3; }
inline String_t** get_address_of_Id_3() { return &___Id_3; }
inline void set_Id_3(String_t* value)
{
___Id_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Id_3), (void*)value);
}
inline static int32_t get_offset_of_Name_4() { return static_cast<int32_t>(offsetof(FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58, ___Name_4)); }
inline String_t* get_Name_4() const { return ___Name_4; }
inline String_t** get_address_of_Name_4() { return &___Name_4; }
inline void set_Name_4(String_t* value)
{
___Name_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Name_4), (void*)value);
}
inline static int32_t get_offset_of_SubPath_5() { return static_cast<int32_t>(offsetof(FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58, ___SubPath_5)); }
inline String_t* get_SubPath_5() const { return ___SubPath_5; }
inline String_t** get_address_of_SubPath_5() { return &___SubPath_5; }
inline void set_SubPath_5(String_t* value)
{
___SubPath_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___SubPath_5), (void*)value);
}
inline static int32_t get_offset_of_Type_6() { return static_cast<int32_t>(offsetof(FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58, ___Type_6)); }
inline int32_t get_Type_6() const { return ___Type_6; }
inline int32_t* get_address_of_Type_6() { return &___Type_6; }
inline void set_Type_6(int32_t value)
{
___Type_6 = value;
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo
struct FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58_marshaled_pinvoke
{
char* ___CurrentDir_0;
int32_t ___DateCreated_1;
int32_t ___FileSize_2;
char* ___Id_3;
char* ___Name_4;
char* ___SubPath_5;
int32_t ___Type_6;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo
struct FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58_marshaled_com
{
Il2CppChar* ___CurrentDir_0;
int32_t ___DateCreated_1;
int32_t ___FileSize_2;
Il2CppChar* ___Id_3;
Il2CppChar* ___Name_4;
Il2CppChar* ___SubPath_5;
int32_t ___Type_6;
};
// Mono.Globalization.Unicode.CodePointIndexer_TableRange
struct TableRange_t485CF0807771CC05023466CFCB0AE25C46648100
{
public:
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::Start
int32_t ___Start_0;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::End
int32_t ___End_1;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::Count
int32_t ___Count_2;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::IndexStart
int32_t ___IndexStart_3;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::IndexEnd
int32_t ___IndexEnd_4;
public:
inline static int32_t get_offset_of_Start_0() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___Start_0)); }
inline int32_t get_Start_0() const { return ___Start_0; }
inline int32_t* get_address_of_Start_0() { return &___Start_0; }
inline void set_Start_0(int32_t value)
{
___Start_0 = value;
}
inline static int32_t get_offset_of_End_1() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___End_1)); }
inline int32_t get_End_1() const { return ___End_1; }
inline int32_t* get_address_of_End_1() { return &___End_1; }
inline void set_End_1(int32_t value)
{
___End_1 = value;
}
inline static int32_t get_offset_of_Count_2() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___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_IndexStart_3() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___IndexStart_3)); }
inline int32_t get_IndexStart_3() const { return ___IndexStart_3; }
inline int32_t* get_address_of_IndexStart_3() { return &___IndexStart_3; }
inline void set_IndexStart_3(int32_t value)
{
___IndexStart_3 = value;
}
inline static int32_t get_offset_of_IndexEnd_4() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___IndexEnd_4)); }
inline int32_t get_IndexEnd_4() const { return ___IndexEnd_4; }
inline int32_t* get_address_of_IndexEnd_4() { return &___IndexEnd_4; }
inline void set_IndexEnd_4(int32_t value)
{
___IndexEnd_4 = value;
}
};
// Mono.Security.Uri_UriScheme
struct UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089
{
public:
// System.String Mono.Security.Uri_UriScheme::scheme
String_t* ___scheme_0;
// System.String Mono.Security.Uri_UriScheme::delimiter
String_t* ___delimiter_1;
// System.Int32 Mono.Security.Uri_UriScheme::defaultPort
int32_t ___defaultPort_2;
public:
inline static int32_t get_offset_of_scheme_0() { return static_cast<int32_t>(offsetof(UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089, ___scheme_0)); }
inline String_t* get_scheme_0() const { return ___scheme_0; }
inline String_t** get_address_of_scheme_0() { return &___scheme_0; }
inline void set_scheme_0(String_t* value)
{
___scheme_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___scheme_0), (void*)value);
}
inline static int32_t get_offset_of_delimiter_1() { return static_cast<int32_t>(offsetof(UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089, ___delimiter_1)); }
inline String_t* get_delimiter_1() const { return ___delimiter_1; }
inline String_t** get_address_of_delimiter_1() { return &___delimiter_1; }
inline void set_delimiter_1(String_t* value)
{
___delimiter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delimiter_1), (void*)value);
}
inline static int32_t get_offset_of_defaultPort_2() { return static_cast<int32_t>(offsetof(UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089, ___defaultPort_2)); }
inline int32_t get_defaultPort_2() const { return ___defaultPort_2; }
inline int32_t* get_address_of_defaultPort_2() { return &___defaultPort_2; }
inline void set_defaultPort_2(int32_t value)
{
___defaultPort_2 = value;
}
};
// Native definition for P/Invoke marshalling of Mono.Security.Uri/UriScheme
struct UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_marshaled_pinvoke
{
char* ___scheme_0;
char* ___delimiter_1;
int32_t ___defaultPort_2;
};
// Native definition for COM marshalling of Mono.Security.Uri/UriScheme
struct UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_marshaled_com
{
Il2CppChar* ___scheme_0;
Il2CppChar* ___delimiter_1;
int32_t ___defaultPort_2;
};
// System.Boolean
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
{
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_tB53F6830F670160873277339AA58F15CAED4399C, ___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_tB53F6830F670160873277339AA58F15CAED4399C_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_tB53F6830F670160873277339AA58F15CAED4399C_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_tB53F6830F670160873277339AA58F15CAED4399C_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.Byte
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07
{
public:
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); }
inline uint8_t get_m_value_0() const { return ___m_value_0; }
inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint8_t value)
{
___m_value_0 = value;
}
};
// System.Char
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9
{
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_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___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_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
}
};
// System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4
{
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_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____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_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____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_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Boolean>
struct Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61
{
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_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61, ___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_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61, ___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_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61, ___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_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61, ___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_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A
{
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_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A, ___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_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A, ___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_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A, ___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_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A, ___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_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27
{
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_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27, ___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_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27, ___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_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27, ___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_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27, ___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_tEF57BE8378C384B7B525EA94DA5797623AB1B44A
{
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_tEF57BE8378C384B7B525EA94DA5797623AB1B44A, ___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_tEF57BE8378C384B7B525EA94DA5797623AB1B44A, ___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_tEF57BE8378C384B7B525EA94DA5797623AB1B44A, ___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_tEF57BE8378C384B7B525EA94DA5797623AB1B44A, ___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_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D
{
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_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___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_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___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_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___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_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___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.Int32,System.UInt32>
struct Entry_tBAF6664AA6A875750059858D06D0616671054743
{
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
uint32_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tBAF6664AA6A875750059858D06D0616671054743, ___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_tBAF6664AA6A875750059858D06D0616671054743, ___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_tBAF6664AA6A875750059858D06D0616671054743, ___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_tBAF6664AA6A875750059858D06D0616671054743, ___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.Int64,System.Object>
struct Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4
{
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_tD950BFD70D1287D3DE34B8019C16932D6867ACD4, ___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_tD950BFD70D1287D3DE34B8019C16932D6867ACD4, ___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_tD950BFD70D1287D3DE34B8019C16932D6867ACD4, ___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_tD950BFD70D1287D3DE34B8019C16932D6867ACD4, ___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_t002F09010D6E57174B6C73A6AA7D53F256F2E030
{
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_t002F09010D6E57174B6C73A6AA7D53F256F2E030, ___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_t002F09010D6E57174B6C73A6AA7D53F256F2E030, ___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_t002F09010D6E57174B6C73A6AA7D53F256F2E030, ___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_t002F09010D6E57174B6C73A6AA7D53F256F2E030, ___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_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE
{
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_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___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_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___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_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___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_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___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_t03898C03E4E291FD6780D28D81A25E3CACF2BADA
{
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_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___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_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___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_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___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_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___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.UInt32,System.Boolean>
struct Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2
{
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_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2, ___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_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2, ___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_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2, ___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_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2, ___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_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117
{
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_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117, ___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_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117, ___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_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117, ___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_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117, ___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_t443D72C18A3A122927C703E1FEBF06B4FDB17F38
{
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_t443D72C18A3A122927C703E1FEBF06B4FDB17F38, ___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_t443D72C18A3A122927C703E1FEBF06B4FDB17F38, ___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_t443D72C18A3A122927C703E1FEBF06B4FDB17F38, ___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_t443D72C18A3A122927C703E1FEBF06B4FDB17F38, ___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.UInt64,System.Object>
struct Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29
{
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
uint64_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_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___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_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___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_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___key_2)); }
inline uint64_t get_key_2() const { return ___key_2; }
inline uint64_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint64_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___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.HashSet`1_Slot<System.Object>
struct Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279
{
public:
// System.Int32 System.Collections.Generic.HashSet`1_Slot::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.HashSet`1_Slot::next
int32_t ___next_1;
// T System.Collections.Generic.HashSet`1_Slot::value
RuntimeObject * ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, ___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(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, ___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_value_2() { return static_cast<int32_t>(offsetof(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, ___value_2)); }
inline RuntimeObject * get_value_2() const { return ___value_2; }
inline RuntimeObject ** get_address_of_value_2() { return &___value_2; }
inline void set_value_2(RuntimeObject * value)
{
___value_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_2), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>
struct KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_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_t411E4248A20D0FDB15190B13EA12EBCB69500C82, ___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_t411E4248A20D0FDB15190B13EA12EBCB69500C82, ___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.Int32,System.Char>
struct KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F
{
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_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F, ___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_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F, ___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_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809
{
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_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809, ___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_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809, ___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_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5
{
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_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5, ___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_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5, ___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_t86464C52F9602337EAC68825E6BE06951D7530CE
{
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_t86464C52F9602337EAC68825E6BE06951D7530CE, ___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_t86464C52F9602337EAC68825E6BE06951D7530CE, ___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.Int32,System.UInt32>
struct KeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___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_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4, ___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_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4, ___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.Int64,System.Object>
struct KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA
{
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_t01369E536C15A7A1AF58F260AD740C479FBFC4EA, ___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_t01369E536C15A7A1AF58F260AD740C479FBFC4EA, ___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_tF975BF5238F06AC9CCA19111DD41484E071258C1
{
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_tF975BF5238F06AC9CCA19111DD41484E071258C1, ___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_tF975BF5238F06AC9CCA19111DD41484E071258C1, ___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_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E
{
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_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___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_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___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_t23481547E419E16E3B96A303578C1EB685C99EEE
{
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_t23481547E419E16E3B96A303578C1EB685C99EEE, ___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_t23481547E419E16E3B96A303578C1EB685C99EEE, ___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.UInt32,System.Boolean>
struct KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE
{
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_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE, ___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_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE, ___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_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C
{
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_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C, ___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_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C, ___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_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA
{
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_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA, ___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_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA, ___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.UInt64,System.Object>
struct KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint64_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_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4, ___key_0)); }
inline uint64_t get_key_0() const { return ___key_0; }
inline uint64_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint64_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4, ___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.DateTime
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132
{
public:
// System.UInt64 System.DateTime::dateData
uint64_t ___dateData_44;
public:
inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___dateData_44)); }
inline uint64_t get_dateData_44() const { return ___dateData_44; }
inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; }
inline void set_dateData_44(uint64_t value)
{
___dateData_44 = value;
}
};
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth365_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value);
}
inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth366_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value);
}
inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MaxValue_32 = value;
}
};
// System.Diagnostics.Tracing.EventProvider_SessionInfo
struct SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A
{
public:
// System.Int32 System.Diagnostics.Tracing.EventProvider_SessionInfo::sessionIdBit
int32_t ___sessionIdBit_0;
// System.Int32 System.Diagnostics.Tracing.EventProvider_SessionInfo::etwSessionId
int32_t ___etwSessionId_1;
public:
inline static int32_t get_offset_of_sessionIdBit_0() { return static_cast<int32_t>(offsetof(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A, ___sessionIdBit_0)); }
inline int32_t get_sessionIdBit_0() const { return ___sessionIdBit_0; }
inline int32_t* get_address_of_sessionIdBit_0() { return &___sessionIdBit_0; }
inline void set_sessionIdBit_0(int32_t value)
{
___sessionIdBit_0 = value;
}
inline static int32_t get_offset_of_etwSessionId_1() { return static_cast<int32_t>(offsetof(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A, ___etwSessionId_1)); }
inline int32_t get_etwSessionId_1() const { return ___etwSessionId_1; }
inline int32_t* get_address_of_etwSessionId_1() { return &___etwSessionId_1; }
inline void set_etwSessionId_1(int32_t value)
{
___etwSessionId_1 = value;
}
};
// System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
{
public:
public:
};
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
{
};
// System.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
public:
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
inline int32_t get__a_1() const { return ____a_1; }
inline int32_t* get_address_of__a_1() { return &____a_1; }
inline void set__a_1(int32_t value)
{
____a_1 = value;
}
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
inline int16_t get__b_2() const { return ____b_2; }
inline int16_t* get_address_of__b_2() { return &____b_2; }
inline void set__b_2(int16_t value)
{
____b_2 = value;
}
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
inline int16_t get__c_3() const { return ____c_3; }
inline int16_t* get_address_of__c_3() { return &____c_3; }
inline void set__c_3(int16_t value)
{
____c_3 = value;
}
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
inline uint8_t get__d_4() const { return ____d_4; }
inline uint8_t* get_address_of__d_4() { return &____d_4; }
inline void set__d_4(uint8_t value)
{
____d_4 = value;
}
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
inline uint8_t get__e_5() const { return ____e_5; }
inline uint8_t* get_address_of__e_5() { return &____e_5; }
inline void set__e_5(uint8_t value)
{
____e_5 = value;
}
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
inline uint8_t get__f_6() const { return ____f_6; }
inline uint8_t* get_address_of__f_6() { return &____f_6; }
inline void set__f_6(uint8_t value)
{
____f_6 = value;
}
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
inline uint8_t get__g_7() const { return ____g_7; }
inline uint8_t* get_address_of__g_7() { return &____g_7; }
inline void set__g_7(uint8_t value)
{
____g_7 = value;
}
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
inline uint8_t get__h_8() const { return ____h_8; }
inline uint8_t* get_address_of__h_8() { return &____h_8; }
inline void set__h_8(uint8_t value)
{
____h_8 = value;
}
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
inline uint8_t get__i_9() const { return ____i_9; }
inline uint8_t* get_address_of__i_9() { return &____i_9; }
inline void set__i_9(uint8_t value)
{
____i_9 = value;
}
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
inline uint8_t get__j_10() const { return ____j_10; }
inline uint8_t* get_address_of__j_10() { return &____j_10; }
inline void set__j_10(uint8_t value)
{
____j_10 = value;
}
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
inline uint8_t get__k_11() const { return ____k_11; }
inline uint8_t* get_address_of__k_11() { return &____k_11; }
inline void set__k_11(uint8_t value)
{
____k_11 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_12;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____fastRng_14;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
inline Guid_t get_Empty_0() const { return ___Empty_0; }
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(Guid_t value)
{
___Empty_0 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
}
inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__fastRng_14() const { return ____fastRng_14; }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__fastRng_14() { return &____fastRng_14; }
inline void set__fastRng_14(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value)
{
____fastRng_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____fastRng_14), (void*)value);
}
};
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
{
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_t585191389E07734F19F3156FF88FB3EF4800D102, ___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.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;
}
};
// System.Nullable`1<System.Int32>
struct Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Resources.ResourceLocator
struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C
{
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_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____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_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____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_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_pinvoke
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// Native definition for COM marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_com
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// System.Runtime.CompilerServices.CompilerGeneratedAttribute
struct CompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
// System.Single
struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1
{
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_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___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;
}
};
// System.UInt32
struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B
{
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_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___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;
}
};
// System.UInt64
struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E
{
public:
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___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.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame
struct SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04
{
public:
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame::x
float ___x_0;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame::y
float ___y_1;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame::w
float ___w_2;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame::h
float ___h_3;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04, ___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(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04, ___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_w_2() { return static_cast<int32_t>(offsetof(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04, ___w_2)); }
inline float get_w_2() const { return ___w_2; }
inline float* get_address_of_w_2() { return &___w_2; }
inline void set_w_2(float value)
{
___w_2 = value;
}
inline static int32_t get_offset_of_h_3() { return static_cast<int32_t>(offsetof(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04, ___h_3)); }
inline float get_h_3() const { return ___h_3; }
inline float* get_address_of_h_3() { return &___h_3; }
inline void set_h_3(float value)
{
___h_3 = value;
}
};
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteSize
struct SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E
{
public:
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteSize::w
float ___w_0;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteSize::h
float ___h_1;
public:
inline static int32_t get_offset_of_w_0() { return static_cast<int32_t>(offsetof(SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E, ___w_0)); }
inline float get_w_0() const { return ___w_0; }
inline float* get_address_of_w_0() { return &___w_0; }
inline void set_w_0(float value)
{
___w_0 = value;
}
inline static int32_t get_offset_of_h_1() { return static_cast<int32_t>(offsetof(SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E, ___h_1)); }
inline float get_h_1() const { return ___h_1; }
inline float* get_address_of_h_1() { return &___h_1; }
inline void set_h_1(float value)
{
___h_1 = value;
}
};
// UnityEngine.BeforeRenderHelper_OrderBlock
struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727
{
public:
// System.Int32 UnityEngine.BeforeRenderHelper_OrderBlock::order
int32_t ___order_0;
// UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper_OrderBlock::callback
UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * ___callback_1;
public:
inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, ___order_0)); }
inline int32_t get_order_0() const { return ___order_0; }
inline int32_t* get_address_of_order_0() { return &___order_0; }
inline void set_order_0(int32_t value)
{
___order_0 = value;
}
inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, ___callback_1)); }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * get_callback_1() const { return ___callback_1; }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 ** get_address_of_callback_1() { return &___callback_1; }
inline void set_callback_1(UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * value)
{
___callback_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callback_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_marshaled_pinvoke
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_marshaled_com
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// UnityEngine.Color
struct Color_t119BCA590009762C7223FDD3AF9706653AC84ED2
{
public:
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
public:
inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___r_0)); }
inline float get_r_0() const { return ___r_0; }
inline float* get_address_of_r_0() { return &___r_0; }
inline void set_r_0(float value)
{
___r_0 = value;
}
inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___g_1)); }
inline float get_g_1() const { return ___g_1; }
inline float* get_address_of_g_1() { return &___g_1; }
inline void set_g_1(float value)
{
___g_1 = value;
}
inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___b_2)); }
inline float get_b_2() const { return ___b_2; }
inline float* get_address_of_b_2() { return &___b_2; }
inline void set_b_2(float value)
{
___b_2 = value;
}
inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___a_3)); }
inline float get_a_3() const { return ___a_3; }
inline float* get_address_of_a_3() { return &___a_3; }
inline void set_a_3(float value)
{
___a_3 = value;
}
};
// UnityEngine.Color32
struct Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.Color32::rgba
int32_t ___rgba_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___rgba_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Byte UnityEngine.Color32::r
uint8_t ___r_1;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___r_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___g_2_OffsetPadding[1];
// System.Byte UnityEngine.Color32::g
uint8_t ___g_2;
};
#pragma pack(pop, tp)
struct
{
char ___g_2_OffsetPadding_forAlignmentOnly[1];
uint8_t ___g_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___b_3_OffsetPadding[2];
// System.Byte UnityEngine.Color32::b
uint8_t ___b_3;
};
#pragma pack(pop, tp)
struct
{
char ___b_3_OffsetPadding_forAlignmentOnly[2];
uint8_t ___b_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___a_4_OffsetPadding[3];
// System.Byte UnityEngine.Color32::a
uint8_t ___a_4;
};
#pragma pack(pop, tp)
struct
{
char ___a_4_OffsetPadding_forAlignmentOnly[3];
uint8_t ___a_4_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___rgba_0)); }
inline int32_t get_rgba_0() const { return ___rgba_0; }
inline int32_t* get_address_of_rgba_0() { return &___rgba_0; }
inline void set_rgba_0(int32_t value)
{
___rgba_0 = value;
}
inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___r_1)); }
inline uint8_t get_r_1() const { return ___r_1; }
inline uint8_t* get_address_of_r_1() { return &___r_1; }
inline void set_r_1(uint8_t value)
{
___r_1 = value;
}
inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___g_2)); }
inline uint8_t get_g_2() const { return ___g_2; }
inline uint8_t* get_address_of_g_2() { return &___g_2; }
inline void set_g_2(uint8_t value)
{
___g_2 = value;
}
inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___b_3)); }
inline uint8_t get_b_3() const { return ___b_3; }
inline uint8_t* get_address_of_b_3() { return &___b_3; }
inline void set_b_3(uint8_t value)
{
___b_3 = value;
}
inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___a_4)); }
inline uint8_t get_a_4() const { return ___a_4; }
inline uint8_t* get_address_of_a_4() { return &___a_4; }
inline void set_a_4(uint8_t value)
{
___a_4 = value;
}
};
// UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord
struct TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA
{
public:
// System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord::tileX
int32_t ___tileX_0;
// System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord::tileZ
int32_t ___tileZ_1;
public:
inline static int32_t get_offset_of_tileX_0() { return static_cast<int32_t>(offsetof(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA, ___tileX_0)); }
inline int32_t get_tileX_0() const { return ___tileX_0; }
inline int32_t* get_address_of_tileX_0() { return &___tileX_0; }
inline void set_tileX_0(int32_t value)
{
___tileX_0 = value;
}
inline static int32_t get_offset_of_tileZ_1() { return static_cast<int32_t>(offsetof(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA, ___tileZ_1)); }
inline int32_t get_tileZ_1() const { return ___tileZ_1; }
inline int32_t* get_address_of_tileZ_1() { return &___tileZ_1; }
inline void set_tileZ_1(int32_t value)
{
___tileZ_1 = value;
}
};
// UnityEngine.Matrix4x4
struct Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA
{
public:
// System.Single UnityEngine.Matrix4x4::m00
float ___m00_0;
// System.Single UnityEngine.Matrix4x4::m10
float ___m10_1;
// System.Single UnityEngine.Matrix4x4::m20
float ___m20_2;
// System.Single UnityEngine.Matrix4x4::m30
float ___m30_3;
// System.Single UnityEngine.Matrix4x4::m01
float ___m01_4;
// System.Single UnityEngine.Matrix4x4::m11
float ___m11_5;
// System.Single UnityEngine.Matrix4x4::m21
float ___m21_6;
// System.Single UnityEngine.Matrix4x4::m31
float ___m31_7;
// System.Single UnityEngine.Matrix4x4::m02
float ___m02_8;
// System.Single UnityEngine.Matrix4x4::m12
float ___m12_9;
// System.Single UnityEngine.Matrix4x4::m22
float ___m22_10;
// System.Single UnityEngine.Matrix4x4::m32
float ___m32_11;
// System.Single UnityEngine.Matrix4x4::m03
float ___m03_12;
// System.Single UnityEngine.Matrix4x4::m13
float ___m13_13;
// System.Single UnityEngine.Matrix4x4::m23
float ___m23_14;
// System.Single UnityEngine.Matrix4x4::m33
float ___m33_15;
public:
inline static int32_t get_offset_of_m00_0() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m00_0)); }
inline float get_m00_0() const { return ___m00_0; }
inline float* get_address_of_m00_0() { return &___m00_0; }
inline void set_m00_0(float value)
{
___m00_0 = value;
}
inline static int32_t get_offset_of_m10_1() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m10_1)); }
inline float get_m10_1() const { return ___m10_1; }
inline float* get_address_of_m10_1() { return &___m10_1; }
inline void set_m10_1(float value)
{
___m10_1 = value;
}
inline static int32_t get_offset_of_m20_2() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m20_2)); }
inline float get_m20_2() const { return ___m20_2; }
inline float* get_address_of_m20_2() { return &___m20_2; }
inline void set_m20_2(float value)
{
___m20_2 = value;
}
inline static int32_t get_offset_of_m30_3() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m30_3)); }
inline float get_m30_3() const { return ___m30_3; }
inline float* get_address_of_m30_3() { return &___m30_3; }
inline void set_m30_3(float value)
{
___m30_3 = value;
}
inline static int32_t get_offset_of_m01_4() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m01_4)); }
inline float get_m01_4() const { return ___m01_4; }
inline float* get_address_of_m01_4() { return &___m01_4; }
inline void set_m01_4(float value)
{
___m01_4 = value;
}
inline static int32_t get_offset_of_m11_5() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m11_5)); }
inline float get_m11_5() const { return ___m11_5; }
inline float* get_address_of_m11_5() { return &___m11_5; }
inline void set_m11_5(float value)
{
___m11_5 = value;
}
inline static int32_t get_offset_of_m21_6() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m21_6)); }
inline float get_m21_6() const { return ___m21_6; }
inline float* get_address_of_m21_6() { return &___m21_6; }
inline void set_m21_6(float value)
{
___m21_6 = value;
}
inline static int32_t get_offset_of_m31_7() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m31_7)); }
inline float get_m31_7() const { return ___m31_7; }
inline float* get_address_of_m31_7() { return &___m31_7; }
inline void set_m31_7(float value)
{
___m31_7 = value;
}
inline static int32_t get_offset_of_m02_8() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m02_8)); }
inline float get_m02_8() const { return ___m02_8; }
inline float* get_address_of_m02_8() { return &___m02_8; }
inline void set_m02_8(float value)
{
___m02_8 = value;
}
inline static int32_t get_offset_of_m12_9() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m12_9)); }
inline float get_m12_9() const { return ___m12_9; }
inline float* get_address_of_m12_9() { return &___m12_9; }
inline void set_m12_9(float value)
{
___m12_9 = value;
}
inline static int32_t get_offset_of_m22_10() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m22_10)); }
inline float get_m22_10() const { return ___m22_10; }
inline float* get_address_of_m22_10() { return &___m22_10; }
inline void set_m22_10(float value)
{
___m22_10 = value;
}
inline static int32_t get_offset_of_m32_11() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m32_11)); }
inline float get_m32_11() const { return ___m32_11; }
inline float* get_address_of_m32_11() { return &___m32_11; }
inline void set_m32_11(float value)
{
___m32_11 = value;
}
inline static int32_t get_offset_of_m03_12() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m03_12)); }
inline float get_m03_12() const { return ___m03_12; }
inline float* get_address_of_m03_12() { return &___m03_12; }
inline void set_m03_12(float value)
{
___m03_12 = value;
}
inline static int32_t get_offset_of_m13_13() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m13_13)); }
inline float get_m13_13() const { return ___m13_13; }
inline float* get_address_of_m13_13() { return &___m13_13; }
inline void set_m13_13(float value)
{
___m13_13 = value;
}
inline static int32_t get_offset_of_m23_14() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m23_14)); }
inline float get_m23_14() const { return ___m23_14; }
inline float* get_address_of_m23_14() { return &___m23_14; }
inline void set_m23_14(float value)
{
___m23_14 = value;
}
inline static int32_t get_offset_of_m33_15() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m33_15)); }
inline float get_m33_15() const { return ___m33_15; }
inline float* get_address_of_m33_15() { return &___m33_15; }
inline void set_m33_15(float value)
{
___m33_15 = value;
}
};
struct Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields
{
public:
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___zeroMatrix_16;
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___identityMatrix_17;
public:
inline static int32_t get_offset_of_zeroMatrix_16() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields, ___zeroMatrix_16)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_zeroMatrix_16() const { return ___zeroMatrix_16; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_zeroMatrix_16() { return &___zeroMatrix_16; }
inline void set_zeroMatrix_16(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___zeroMatrix_16 = value;
}
inline static int32_t get_offset_of_identityMatrix_17() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields, ___identityMatrix_17)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_identityMatrix_17() const { return ___identityMatrix_17; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_identityMatrix_17() { return &___identityMatrix_17; }
inline void set_identityMatrix_17(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___identityMatrix_17 = value;
}
};
// UnityEngine.Quaternion
struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357
{
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_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___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_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___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_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___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_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___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_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields
{
public:
// UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___identityQuaternion_4;
public:
inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields, ___identityQuaternion_4)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_identityQuaternion_4() const { return ___identityQuaternion_4; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; }
inline void set_identityQuaternion_4(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___identityQuaternion_4 = value;
}
};
// UnityEngine.TextCore.GlyphRect
struct GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C
{
public:
// System.Int32 UnityEngine.TextCore.GlyphRect::m_X
int32_t ___m_X_0;
// System.Int32 UnityEngine.TextCore.GlyphRect::m_Y
int32_t ___m_Y_1;
// System.Int32 UnityEngine.TextCore.GlyphRect::m_Width
int32_t ___m_Width_2;
// System.Int32 UnityEngine.TextCore.GlyphRect::m_Height
int32_t ___m_Height_3;
public:
inline static int32_t get_offset_of_m_X_0() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___m_X_0)); }
inline int32_t get_m_X_0() const { return ___m_X_0; }
inline int32_t* get_address_of_m_X_0() { return &___m_X_0; }
inline void set_m_X_0(int32_t value)
{
___m_X_0 = value;
}
inline static int32_t get_offset_of_m_Y_1() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___m_Y_1)); }
inline int32_t get_m_Y_1() const { return ___m_Y_1; }
inline int32_t* get_address_of_m_Y_1() { return &___m_Y_1; }
inline void set_m_Y_1(int32_t value)
{
___m_Y_1 = value;
}
inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___m_Width_2)); }
inline int32_t get_m_Width_2() const { return ___m_Width_2; }
inline int32_t* get_address_of_m_Width_2() { return &___m_Width_2; }
inline void set_m_Width_2(int32_t value)
{
___m_Width_2 = value;
}
inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___m_Height_3)); }
inline int32_t get_m_Height_3() const { return ___m_Height_3; }
inline int32_t* get_address_of_m_Height_3() { return &___m_Height_3; }
inline void set_m_Height_3(int32_t value)
{
___m_Height_3 = value;
}
};
struct GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_StaticFields
{
public:
// UnityEngine.TextCore.GlyphRect UnityEngine.TextCore.GlyphRect::s_ZeroGlyphRect
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___s_ZeroGlyphRect_4;
public:
inline static int32_t get_offset_of_s_ZeroGlyphRect_4() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_StaticFields, ___s_ZeroGlyphRect_4)); }
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C get_s_ZeroGlyphRect_4() const { return ___s_ZeroGlyphRect_4; }
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C * get_address_of_s_ZeroGlyphRect_4() { return &___s_ZeroGlyphRect_4; }
inline void set_s_ZeroGlyphRect_4(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C value)
{
___s_ZeroGlyphRect_4 = value;
}
};
// UnityEngine.UILineInfo
struct UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6
{
public:
// System.Int32 UnityEngine.UILineInfo::startCharIdx
int32_t ___startCharIdx_0;
// System.Int32 UnityEngine.UILineInfo::height
int32_t ___height_1;
// System.Single UnityEngine.UILineInfo::topY
float ___topY_2;
// System.Single UnityEngine.UILineInfo::leading
float ___leading_3;
public:
inline static int32_t get_offset_of_startCharIdx_0() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___startCharIdx_0)); }
inline int32_t get_startCharIdx_0() const { return ___startCharIdx_0; }
inline int32_t* get_address_of_startCharIdx_0() { return &___startCharIdx_0; }
inline void set_startCharIdx_0(int32_t value)
{
___startCharIdx_0 = value;
}
inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___height_1)); }
inline int32_t get_height_1() const { return ___height_1; }
inline int32_t* get_address_of_height_1() { return &___height_1; }
inline void set_height_1(int32_t value)
{
___height_1 = value;
}
inline static int32_t get_offset_of_topY_2() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___topY_2)); }
inline float get_topY_2() const { return ___topY_2; }
inline float* get_address_of_topY_2() { return &___topY_2; }
inline void set_topY_2(float value)
{
___topY_2 = value;
}
inline static int32_t get_offset_of_leading_3() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___leading_3)); }
inline float get_leading_3() const { return ___leading_3; }
inline float* get_address_of_leading_3() { return &___leading_3; }
inline void set_leading_3(float value)
{
___leading_3 = value;
}
};
// UnityEngine.UnitySynchronizationContext_WorkRequest
struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94
{
public:
// System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext_WorkRequest::m_DelagateCallback
SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * ___m_DelagateCallback_0;
// System.Object UnityEngine.UnitySynchronizationContext_WorkRequest::m_DelagateState
RuntimeObject * ___m_DelagateState_1;
// System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext_WorkRequest::m_WaitHandle
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2;
public:
inline static int32_t get_offset_of_m_DelagateCallback_0() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_DelagateCallback_0)); }
inline SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * get_m_DelagateCallback_0() const { return ___m_DelagateCallback_0; }
inline SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 ** get_address_of_m_DelagateCallback_0() { return &___m_DelagateCallback_0; }
inline void set_m_DelagateCallback_0(SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * value)
{
___m_DelagateCallback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateCallback_0), (void*)value);
}
inline static int32_t get_offset_of_m_DelagateState_1() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_DelagateState_1)); }
inline RuntimeObject * get_m_DelagateState_1() const { return ___m_DelagateState_1; }
inline RuntimeObject ** get_address_of_m_DelagateState_1() { return &___m_DelagateState_1; }
inline void set_m_DelagateState_1(RuntimeObject * value)
{
___m_DelagateState_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateState_1), (void*)value);
}
inline static int32_t get_offset_of_m_WaitHandle_2() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_WaitHandle_2)); }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * get_m_WaitHandle_2() const { return ___m_WaitHandle_2; }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** get_address_of_m_WaitHandle_2() { return &___m_WaitHandle_2; }
inline void set_m_WaitHandle_2(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * value)
{
___m_WaitHandle_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_WaitHandle_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_marshaled_pinvoke
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2;
};
// Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_marshaled_com
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2;
};
// UnityEngine.Vector2
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___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(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___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;
}
};
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___zeroVector_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___oneVector_3)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___upVector_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_upVector_4() const { return ___upVector_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___downVector_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_downVector_5() const { return ___downVector_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___leftVector_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___rightVector_7)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___negativeInfinityVector_9 = value;
}
};
// UnityEngine.Vector3
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720
{
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_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___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_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___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_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___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_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___negativeInfinityVector_14;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___zeroVector_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___oneVector_6)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_oneVector_6() const { return ___oneVector_6; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___upVector_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_upVector_7() const { return ___upVector_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_upVector_7() { return &___upVector_7; }
inline void set_upVector_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___upVector_7 = value;
}
inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___downVector_8)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_downVector_8() const { return ___downVector_8; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_downVector_8() { return &___downVector_8; }
inline void set_downVector_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___downVector_8 = value;
}
inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___leftVector_9)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_leftVector_9() const { return ___leftVector_9; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_leftVector_9() { return &___leftVector_9; }
inline void set_leftVector_9(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___leftVector_9 = value;
}
inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___rightVector_10)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_rightVector_10() const { return ___rightVector_10; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_rightVector_10() { return &___rightVector_10; }
inline void set_rightVector_10(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___rightVector_10 = value;
}
inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___forwardVector_11)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_forwardVector_11() const { return ___forwardVector_11; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_forwardVector_11() { return &___forwardVector_11; }
inline void set_forwardVector_11(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___forwardVector_11 = value;
}
inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___backVector_12)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_backVector_12() const { return ___backVector_12; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_backVector_12() { return &___backVector_12; }
inline void set_backVector_12(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___backVector_12 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___positiveInfinityVector_13)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; }
inline void set_positiveInfinityVector_13(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___positiveInfinityVector_13 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___negativeInfinityVector_14)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; }
inline void set_negativeInfinityVector_14(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___negativeInfinityVector_14 = value;
}
};
// UnityEngine.Vector4
struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E
{
public:
// System.Single UnityEngine.Vector4::x
float ___x_1;
// System.Single UnityEngine.Vector4::y
float ___y_2;
// System.Single UnityEngine.Vector4::z
float ___z_3;
// System.Single UnityEngine.Vector4::w
float ___w_4;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___x_1)); }
inline float get_x_1() const { return ___x_1; }
inline float* get_address_of_x_1() { return &___x_1; }
inline void set_x_1(float value)
{
___x_1 = value;
}
inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___y_2)); }
inline float get_y_2() const { return ___y_2; }
inline float* get_address_of_y_2() { return &___y_2; }
inline void set_y_2(float value)
{
___y_2 = value;
}
inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___z_3)); }
inline float get_z_3() const { return ___z_3; }
inline float* get_address_of_z_3() { return &___z_3; }
inline void set_z_3(float value)
{
___z_3 = value;
}
inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___w_4)); }
inline float get_w_4() const { return ___w_4; }
inline float* get_address_of_w_4() { return &___w_4; }
inline void set_w_4(float value)
{
___w_4 = value;
}
};
struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields
{
public:
// UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___zeroVector_5;
// UnityEngine.Vector4 UnityEngine.Vector4::oneVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___oneVector_6;
// UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___positiveInfinityVector_7;
// UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___negativeInfinityVector_8;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___zeroVector_5)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___oneVector_6)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_oneVector_6() const { return ___oneVector_6; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___positiveInfinityVector_7)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; }
inline void set_positiveInfinityVector_7(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___positiveInfinityVector_7 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___negativeInfinityVector_8)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; }
inline void set_negativeInfinityVector_8(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___negativeInfinityVector_8 = value;
}
};
// Microsoft.MixedReality.Toolkit.Boundary.Edge
struct Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F
{
public:
// UnityEngine.Vector2 Microsoft.MixedReality.Toolkit.Boundary.Edge::PointA
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___PointA_0;
// UnityEngine.Vector2 Microsoft.MixedReality.Toolkit.Boundary.Edge::PointB
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___PointB_1;
public:
inline static int32_t get_offset_of_PointA_0() { return static_cast<int32_t>(offsetof(Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F, ___PointA_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_PointA_0() const { return ___PointA_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_PointA_0() { return &___PointA_0; }
inline void set_PointA_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___PointA_0 = value;
}
inline static int32_t get_offset_of_PointB_1() { return static_cast<int32_t>(offsetof(Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F, ___PointB_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_PointB_1() const { return ___PointB_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_PointB_1() { return &___PointB_1; }
inline void set_PointB_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___PointB_1 = value;
}
};
// Microsoft.MixedReality.Toolkit.Input.CursorStateEnum
struct CursorStateEnum_t247F2213B5F13A4A20859354F8F6FB28423C0FB6
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Input.CursorStateEnum::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CursorStateEnum_t247F2213B5F13A4A20859354F8F6FB28423C0FB6, ___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.Input.GestureInputType
struct GestureInputType_tE0BF82A452F97F80C699F9D207127F34EEB261CF
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Input.GestureInputType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GestureInputType_tE0BF82A452F97F80C699F9D207127F34EEB261CF, ___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.Input.SupportedControllerType
struct SupportedControllerType_t5F457C64820CC9C7A23743C07FC033ABE19D72F9
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Input.SupportedControllerType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SupportedControllerType_t5F457C64820CC9C7A23743C07FC033ABE19D72F9, ___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.Physics.RayStep
struct RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B
{
public:
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Physics.RayStep::<Origin>k__BackingField
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3COriginU3Ek__BackingField_3;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Physics.RayStep::<Terminus>k__BackingField
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3CTerminusU3Ek__BackingField_4;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Physics.RayStep::<Direction>k__BackingField
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3CDirectionU3Ek__BackingField_5;
// System.Single Microsoft.MixedReality.Toolkit.Physics.RayStep::<Length>k__BackingField
float ___U3CLengthU3Ek__BackingField_6;
// System.Single Microsoft.MixedReality.Toolkit.Physics.RayStep::epsilon
float ___epsilon_7;
public:
inline static int32_t get_offset_of_U3COriginU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B, ___U3COriginU3Ek__BackingField_3)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3COriginU3Ek__BackingField_3() const { return ___U3COriginU3Ek__BackingField_3; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3COriginU3Ek__BackingField_3() { return &___U3COriginU3Ek__BackingField_3; }
inline void set_U3COriginU3Ek__BackingField_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___U3COriginU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CTerminusU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B, ___U3CTerminusU3Ek__BackingField_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3CTerminusU3Ek__BackingField_4() const { return ___U3CTerminusU3Ek__BackingField_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3CTerminusU3Ek__BackingField_4() { return &___U3CTerminusU3Ek__BackingField_4; }
inline void set_U3CTerminusU3Ek__BackingField_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___U3CTerminusU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CDirectionU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B, ___U3CDirectionU3Ek__BackingField_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3CDirectionU3Ek__BackingField_5() const { return ___U3CDirectionU3Ek__BackingField_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3CDirectionU3Ek__BackingField_5() { return &___U3CDirectionU3Ek__BackingField_5; }
inline void set_U3CDirectionU3Ek__BackingField_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___U3CDirectionU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CLengthU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B, ___U3CLengthU3Ek__BackingField_6)); }
inline float get_U3CLengthU3Ek__BackingField_6() const { return ___U3CLengthU3Ek__BackingField_6; }
inline float* get_address_of_U3CLengthU3Ek__BackingField_6() { return &___U3CLengthU3Ek__BackingField_6; }
inline void set_U3CLengthU3Ek__BackingField_6(float value)
{
___U3CLengthU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_epsilon_7() { return static_cast<int32_t>(offsetof(RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B, ___epsilon_7)); }
inline float get_epsilon_7() const { return ___epsilon_7; }
inline float* get_address_of_epsilon_7() { return &___epsilon_7; }
inline void set_epsilon_7(float value)
{
___epsilon_7 = value;
}
};
struct RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B_StaticFields
{
public:
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Physics.RayStep::dist
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___dist_0;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Physics.RayStep::dir
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___dir_1;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Physics.RayStep::pos
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___pos_2;
public:
inline static int32_t get_offset_of_dist_0() { return static_cast<int32_t>(offsetof(RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B_StaticFields, ___dist_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_dist_0() const { return ___dist_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_dist_0() { return &___dist_0; }
inline void set_dist_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___dist_0 = value;
}
inline static int32_t get_offset_of_dir_1() { return static_cast<int32_t>(offsetof(RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B_StaticFields, ___dir_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_dir_1() const { return ___dir_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_dir_1() { return &___dir_1; }
inline void set_dir_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___dir_1 = value;
}
inline static int32_t get_offset_of_pos_2() { return static_cast<int32_t>(offsetof(RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B_StaticFields, ___pos_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_pos_2() const { return ___pos_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_pos_2() { return &___pos_2; }
inline void set_pos_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___pos_2 = value;
}
};
// Microsoft.MixedReality.Toolkit.UI.ShaderPropertyType
struct ShaderPropertyType_t7C9910265109D414672618670E92BB9D5E8CC4FC
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.UI.ShaderPropertyType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ShaderPropertyType_t7C9910265109D414672618670E92BB9D5E8CC4FC, ___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.AxisType
struct AxisType_t45CEF046648179DA1FDF98C495D40AA34823C164
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.AxisType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AxisType_t45CEF046648179DA1FDF98C495D40AA34823C164, ___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.Editor.InspectorField_FieldTypes
struct FieldTypes_tC9521E19D1621CC0C8DD80724886D580D3FE55FB
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorField_FieldTypes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FieldTypes_tC9521E19D1621CC0C8DD80724886D580D3FE55FB, ___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.Handedness
struct Handedness_tA51C49CA286A1BC201E1680F521639E9AC1165AB
{
public:
// System.Byte Microsoft.MixedReality.Toolkit.Utilities.Handedness::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Handedness_tA51C49CA286A1BC201E1680F521639E9AC1165AB, ___value___2)); }
inline uint8_t get_value___2() const { return ___value___2; }
inline uint8_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint8_t value)
{
___value___2 = value;
}
};
// Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose
struct MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45
{
public:
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_1;
// UnityEngine.Quaternion Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose::rotation
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___rotation_2;
public:
inline static int32_t get_offset_of_position_1() { return static_cast<int32_t>(offsetof(MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45, ___position_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_1() const { return ___position_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_1() { return &___position_1; }
inline void set_position_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_1 = value;
}
inline static int32_t get_offset_of_rotation_2() { return static_cast<int32_t>(offsetof(MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45, ___rotation_2)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_rotation_2() const { return ___rotation_2; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_rotation_2() { return &___rotation_2; }
inline void set_rotation_2(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___rotation_2 = value;
}
};
struct MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45_StaticFields
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose::<ZeroIdentity>k__BackingField
MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 ___U3CZeroIdentityU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CZeroIdentityU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45_StaticFields, ___U3CZeroIdentityU3Ek__BackingField_0)); }
inline MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 get_U3CZeroIdentityU3Ek__BackingField_0() const { return ___U3CZeroIdentityU3Ek__BackingField_0; }
inline MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 * get_address_of_U3CZeroIdentityU3Ek__BackingField_0() { return &___U3CZeroIdentityU3Ek__BackingField_0; }
inline void set_U3CZeroIdentityU3Ek__BackingField_0(MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 value)
{
___U3CZeroIdentityU3Ek__BackingField_0 = value;
}
};
// Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode
struct ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425
{
public:
// System.String Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode::Name
String_t* ___Name_0;
// UnityEngine.Vector2 Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode::Offset
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Offset_1;
// System.Single Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode::Radius
float ___Radius_2;
// UnityEngine.Transform Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode::Transform
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___Transform_3;
public:
inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425, ___Name_0)); }
inline String_t* get_Name_0() const { return ___Name_0; }
inline String_t** get_address_of_Name_0() { return &___Name_0; }
inline void set_Name_0(String_t* value)
{
___Name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Name_0), (void*)value);
}
inline static int32_t get_offset_of_Offset_1() { return static_cast<int32_t>(offsetof(ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425, ___Offset_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_Offset_1() const { return ___Offset_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_Offset_1() { return &___Offset_1; }
inline void set_Offset_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___Offset_1 = value;
}
inline static int32_t get_offset_of_Radius_2() { return static_cast<int32_t>(offsetof(ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425, ___Radius_2)); }
inline float get_Radius_2() const { return ___Radius_2; }
inline float* get_address_of_Radius_2() { return &___Radius_2; }
inline void set_Radius_2(float value)
{
___Radius_2 = value;
}
inline static int32_t get_offset_of_Transform_3() { return static_cast<int32_t>(offsetof(ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425, ___Transform_3)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_Transform_3() const { return ___Transform_3; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_Transform_3() { return &___Transform_3; }
inline void set_Transform_3(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___Transform_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Transform_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode
struct ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_marshaled_pinvoke
{
char* ___Name_0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Offset_1;
float ___Radius_2;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___Transform_3;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode
struct ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_marshaled_com
{
Il2CppChar* ___Name_0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Offset_1;
float ___Radius_2;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___Transform_3;
};
// Microsoft.MixedReality.Toolkit.Utilities.SupportedPlatforms
struct SupportedPlatforms_tC8AF3595AC2CE7A478C6187C0304D1EB71DD52C0
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.SupportedPlatforms::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SupportedPlatforms_tC8AF3595AC2CE7A478C6187C0304D1EB71DD52C0, ___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;
}
};
// System.ByteEnum
struct ByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD
{
public:
// System.Byte System.ByteEnum::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD, ___value___2)); }
inline uint8_t get_value___2() const { return ___value___2; }
inline uint8_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint8_t value)
{
___value___2 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>
struct Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D
{
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_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___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_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___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_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___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_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___value_3)); }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_3() const { return ___value_3; }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->____value_0), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Vector3>
struct Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874
{
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_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874, ___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_t7F6EFCC50C152F187A40F83B2412AA3926B29874, ___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_t7F6EFCC50C152F187A40F83B2412AA3926B29874, ___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_t7F6EFCC50C152F187A40F83B2412AA3926B29874, ___value_3)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_value_3() const { return ___value_3; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.UInt32,UnityEngine.Vector3>
struct Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8
{
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
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8, ___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_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8, ___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_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8, ___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_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8, ___value_3)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_value_3() const { return ___value_3; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>
struct Entry_t687188C87EF1FD0D50038E634676DBC449857B8E
{
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
TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA ___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_t687188C87EF1FD0D50038E634676DBC449857B8E, ___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_t687188C87EF1FD0D50038E634676DBC449857B8E, ___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_t687188C87EF1FD0D50038E634676DBC449857B8E, ___key_2)); }
inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA get_key_2() const { return ___key_2; }
inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t687188C87EF1FD0D50038E634676DBC449857B8E, ___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.KeyValuePair`2<System.DateTime,System.Object>
struct KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___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_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___key_0)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_key_0() const { return ___key_0; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___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.Guid,System.Int32>
struct KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Guid_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_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937, ___key_0)); }
inline Guid_t get_key_0() const { return ___key_0; }
inline Guid_t * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Guid_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937, ___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.Guid,System.Object>
struct KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Guid_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_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78, ___key_0)); }
inline Guid_t get_key_0() const { return ___key_0; }
inline Guid_t * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Guid_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78, ___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.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// System.Diagnostics.Tracing.EventKeywords
struct EventKeywords_t23A3504C8689DEED4A3545494C8C52C55214B942
{
public:
// System.Int64 System.Diagnostics.Tracing.EventKeywords::value__
int64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventKeywords_t23A3504C8689DEED4A3545494C8C52C55214B942, ___value___2)); }
inline int64_t get_value___2() const { return ___value___2; }
inline int64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int64_t value)
{
___value___2 = value;
}
};
// System.Diagnostics.Tracing.EventLevel
struct EventLevel_t647BA4EA78B2B108075D614A19C8C2204644790E
{
public:
// System.Int32 System.Diagnostics.Tracing.EventLevel::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventLevel_t647BA4EA78B2B108075D614A19C8C2204644790E, ___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;
}
};
// System.Diagnostics.Tracing.EventOpcode
struct EventOpcode_t52B1CBEC2A4C6FDDC00A61ECF12BF584A5146C44
{
public:
// System.Int32 System.Diagnostics.Tracing.EventOpcode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventOpcode_t52B1CBEC2A4C6FDDC00A61ECF12BF584A5146C44, ___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;
}
};
// System.Diagnostics.Tracing.EventTags
struct EventTags_t886E6B89C75F05A5BA40FBC96790AA6C5F24A712
{
public:
// System.Int32 System.Diagnostics.Tracing.EventTags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventTags_t886E6B89C75F05A5BA40FBC96790AA6C5F24A712, ___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;
}
};
// System.Diagnostics.Tracing.TraceLoggingDataType
struct TraceLoggingDataType_tAF569833EAB13AD2793006E97B6D27A72B8301FE
{
public:
// System.Int32 System.Diagnostics.Tracing.TraceLoggingDataType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TraceLoggingDataType_tAF569833EAB13AD2793006E97B6D27A72B8301FE, ___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;
}
};
// 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_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___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_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * 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_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* 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_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* 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_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___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_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// System.Int32Enum
struct Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD
{
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_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD, ___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;
}
};
// System.Reflection.BindingFlags
struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___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;
}
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteData
struct SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728
{
public:
// System.String TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::filename
String_t* ___filename_0;
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::frame
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___frame_1;
// System.Boolean TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::rotated
bool ___rotated_2;
// System.Boolean TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::trimmed
bool ___trimmed_3;
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::spriteSourceSize
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___spriteSourceSize_4;
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteSize TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::sourceSize
SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E ___sourceSize_5;
// UnityEngine.Vector2 TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::pivot
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_6;
public:
inline static int32_t get_offset_of_filename_0() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___filename_0)); }
inline String_t* get_filename_0() const { return ___filename_0; }
inline String_t** get_address_of_filename_0() { return &___filename_0; }
inline void set_filename_0(String_t* value)
{
___filename_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___filename_0), (void*)value);
}
inline static int32_t get_offset_of_frame_1() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___frame_1)); }
inline SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 get_frame_1() const { return ___frame_1; }
inline SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 * get_address_of_frame_1() { return &___frame_1; }
inline void set_frame_1(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 value)
{
___frame_1 = value;
}
inline static int32_t get_offset_of_rotated_2() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___rotated_2)); }
inline bool get_rotated_2() const { return ___rotated_2; }
inline bool* get_address_of_rotated_2() { return &___rotated_2; }
inline void set_rotated_2(bool value)
{
___rotated_2 = value;
}
inline static int32_t get_offset_of_trimmed_3() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___trimmed_3)); }
inline bool get_trimmed_3() const { return ___trimmed_3; }
inline bool* get_address_of_trimmed_3() { return &___trimmed_3; }
inline void set_trimmed_3(bool value)
{
___trimmed_3 = value;
}
inline static int32_t get_offset_of_spriteSourceSize_4() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___spriteSourceSize_4)); }
inline SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 get_spriteSourceSize_4() const { return ___spriteSourceSize_4; }
inline SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 * get_address_of_spriteSourceSize_4() { return &___spriteSourceSize_4; }
inline void set_spriteSourceSize_4(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 value)
{
___spriteSourceSize_4 = value;
}
inline static int32_t get_offset_of_sourceSize_5() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___sourceSize_5)); }
inline SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E get_sourceSize_5() const { return ___sourceSize_5; }
inline SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E * get_address_of_sourceSize_5() { return &___sourceSize_5; }
inline void set_sourceSize_5(SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E value)
{
___sourceSize_5 = value;
}
inline static int32_t get_offset_of_pivot_6() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___pivot_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_pivot_6() const { return ___pivot_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_pivot_6() { return &___pivot_6; }
inline void set_pivot_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___pivot_6 = value;
}
};
// Native definition for P/Invoke marshalling of TMPro.SpriteAssetUtilities.TexturePacker/SpriteData
struct SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_marshaled_pinvoke
{
char* ___filename_0;
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___frame_1;
int32_t ___rotated_2;
int32_t ___trimmed_3;
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___spriteSourceSize_4;
SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E ___sourceSize_5;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_6;
};
// Native definition for COM marshalling of TMPro.SpriteAssetUtilities.TexturePacker/SpriteData
struct SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_marshaled_com
{
Il2CppChar* ___filename_0;
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___frame_1;
int32_t ___rotated_2;
int32_t ___trimmed_3;
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___spriteSourceSize_4;
SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E ___sourceSize_5;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_6;
};
// UnityEngine.AnimationCurve
struct AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.AnimationCurve::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.AnimationCurve
struct AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.AnimationCurve
struct AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// UnityEngine.AnimatorControllerParameterType
struct AnimatorControllerParameterType_t340CE2BBAB87F4684FEA76C24F1BCB9FC10D5B1F
{
public:
// System.Int32 UnityEngine.AnimatorControllerParameterType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AnimatorControllerParameterType_t340CE2BBAB87F4684FEA76C24F1BCB9FC10D5B1F, ___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;
}
};
// UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91
{
public:
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
// System.Single UnityEngine.EventSystems.RaycastResult::distance
float ___distance_2;
// System.Single UnityEngine.EventSystems.RaycastResult::index
float ___index_3;
// System.Int32 UnityEngine.EventSystems.RaycastResult::depth
int32_t ___depth_4;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer
int32_t ___sortingLayer_5;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder
int32_t ___sortingOrder_6;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
// UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
public:
inline static int32_t get_offset_of_m_GameObject_0() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___m_GameObject_0)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_GameObject_0() const { return ___m_GameObject_0; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; }
inline void set_m_GameObject_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_GameObject_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_GameObject_0), (void*)value);
}
inline static int32_t get_offset_of_module_1() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___module_1)); }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * get_module_1() const { return ___module_1; }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 ** get_address_of_module_1() { return &___module_1; }
inline void set_module_1(BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * value)
{
___module_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___module_1), (void*)value);
}
inline static int32_t get_offset_of_distance_2() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___distance_2)); }
inline float get_distance_2() const { return ___distance_2; }
inline float* get_address_of_distance_2() { return &___distance_2; }
inline void set_distance_2(float value)
{
___distance_2 = value;
}
inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___index_3)); }
inline float get_index_3() const { return ___index_3; }
inline float* get_address_of_index_3() { return &___index_3; }
inline void set_index_3(float value)
{
___index_3 = value;
}
inline static int32_t get_offset_of_depth_4() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___depth_4)); }
inline int32_t get_depth_4() const { return ___depth_4; }
inline int32_t* get_address_of_depth_4() { return &___depth_4; }
inline void set_depth_4(int32_t value)
{
___depth_4 = value;
}
inline static int32_t get_offset_of_sortingLayer_5() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingLayer_5)); }
inline int32_t get_sortingLayer_5() const { return ___sortingLayer_5; }
inline int32_t* get_address_of_sortingLayer_5() { return &___sortingLayer_5; }
inline void set_sortingLayer_5(int32_t value)
{
___sortingLayer_5 = value;
}
inline static int32_t get_offset_of_sortingOrder_6() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingOrder_6)); }
inline int32_t get_sortingOrder_6() const { return ___sortingOrder_6; }
inline int32_t* get_address_of_sortingOrder_6() { return &___sortingOrder_6; }
inline void set_sortingOrder_6(int32_t value)
{
___sortingOrder_6 = value;
}
inline static int32_t get_offset_of_worldPosition_7() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldPosition_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldPosition_7() const { return ___worldPosition_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldPosition_7() { return &___worldPosition_7; }
inline void set_worldPosition_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___worldPosition_7 = value;
}
inline static int32_t get_offset_of_worldNormal_8() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldNormal_8)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldNormal_8() const { return ___worldNormal_8; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldNormal_8() { return &___worldNormal_8; }
inline void set_worldNormal_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___worldNormal_8 = value;
}
inline static int32_t get_offset_of_screenPosition_9() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___screenPosition_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_screenPosition_9() const { return ___screenPosition_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_screenPosition_9() { return &___screenPosition_9; }
inline void set_screenPosition_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___screenPosition_9 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_pinvoke
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
};
// Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_com
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
};
// UnityEngine.KeyCode
struct KeyCode_tC93EA87C5A6901160B583ADFCD3EF6726570DC3C
{
public:
// System.Int32 UnityEngine.KeyCode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(KeyCode_tC93EA87C5A6901160B583ADFCD3EF6726570DC3C, ___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;
}
};
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.Ray
struct Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2
{
public:
// UnityEngine.Vector3 UnityEngine.Ray::m_Origin
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Origin_0;
// UnityEngine.Vector3 UnityEngine.Ray::m_Direction
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Direction_1;
public:
inline static int32_t get_offset_of_m_Origin_0() { return static_cast<int32_t>(offsetof(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2, ___m_Origin_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Origin_0() const { return ___m_Origin_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Origin_0() { return &___m_Origin_0; }
inline void set_m_Origin_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Origin_0 = value;
}
inline static int32_t get_offset_of_m_Direction_1() { return static_cast<int32_t>(offsetof(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2, ___m_Direction_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Direction_1() const { return ___m_Direction_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Direction_1() { return &___m_Direction_1; }
inline void set_m_Direction_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Direction_1 = value;
}
};
// UnityEngine.RaycastHit2D
struct RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE
{
public:
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Centroid_0;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Point_1;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Normal_2;
// System.Single UnityEngine.RaycastHit2D::m_Distance
float ___m_Distance_3;
// System.Single UnityEngine.RaycastHit2D::m_Fraction
float ___m_Fraction_4;
// System.Int32 UnityEngine.RaycastHit2D::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Centroid_0() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Centroid_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Centroid_0() const { return ___m_Centroid_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Centroid_0() { return &___m_Centroid_0; }
inline void set_m_Centroid_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Centroid_0 = value;
}
inline static int32_t get_offset_of_m_Point_1() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Point_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Point_1() const { return ___m_Point_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Point_1() { return &___m_Point_1; }
inline void set_m_Point_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Point_1 = value;
}
inline static int32_t get_offset_of_m_Normal_2() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Normal_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Normal_2() const { return ___m_Normal_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Normal_2() { return &___m_Normal_2; }
inline void set_m_Normal_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Normal_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_Fraction_4() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Fraction_4)); }
inline float get_m_Fraction_4() const { return ___m_Fraction_4; }
inline float* get_address_of_m_Fraction_4() { return &___m_Fraction_4; }
inline void set_m_Fraction_4(float value)
{
___m_Fraction_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
// UnityEngine.UICharInfo
struct UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A
{
public:
// UnityEngine.Vector2 UnityEngine.UICharInfo::cursorPos
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___cursorPos_0;
// System.Single UnityEngine.UICharInfo::charWidth
float ___charWidth_1;
public:
inline static int32_t get_offset_of_cursorPos_0() { return static_cast<int32_t>(offsetof(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, ___cursorPos_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_cursorPos_0() const { return ___cursorPos_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_cursorPos_0() { return &___cursorPos_0; }
inline void set_cursorPos_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___cursorPos_0 = value;
}
inline static int32_t get_offset_of_charWidth_1() { return static_cast<int32_t>(offsetof(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, ___charWidth_1)); }
inline float get_charWidth_1() const { return ___charWidth_1; }
inline float* get_address_of_charWidth_1() { return &___charWidth_1; }
inline void set_charWidth_1(float value)
{
___charWidth_1 = value;
}
};
// UnityEngine.UIVertex
struct UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577
{
public:
// UnityEngine.Vector3 UnityEngine.UIVertex::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_0;
// UnityEngine.Vector3 UnityEngine.UIVertex::normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___normal_1;
// UnityEngine.Vector4 UnityEngine.UIVertex::tangent
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___tangent_2;
// UnityEngine.Color32 UnityEngine.UIVertex::color
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_3;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv0
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv0_4;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv1
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv1_5;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv2
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv2_6;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv3
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv3_7;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___position_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_0() const { return ___position_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_normal_1() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_normal_1() const { return ___normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_normal_1() { return &___normal_1; }
inline void set_normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___normal_1 = value;
}
inline static int32_t get_offset_of_tangent_2() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___tangent_2)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_tangent_2() const { return ___tangent_2; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_tangent_2() { return &___tangent_2; }
inline void set_tangent_2(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___tangent_2 = value;
}
inline static int32_t get_offset_of_color_3() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___color_3)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_color_3() const { return ___color_3; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_color_3() { return &___color_3; }
inline void set_color_3(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___color_3 = value;
}
inline static int32_t get_offset_of_uv0_4() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv0_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv0_4() const { return ___uv0_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv0_4() { return &___uv0_4; }
inline void set_uv0_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv0_4 = value;
}
inline static int32_t get_offset_of_uv1_5() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv1_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv1_5() const { return ___uv1_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv1_5() { return &___uv1_5; }
inline void set_uv1_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv1_5 = value;
}
inline static int32_t get_offset_of_uv2_6() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv2_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv2_6() const { return ___uv2_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv2_6() { return &___uv2_6; }
inline void set_uv2_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv2_6 = value;
}
inline static int32_t get_offset_of_uv3_7() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv3_7)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv3_7() const { return ___uv3_7; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv3_7() { return &___uv3_7; }
inline void set_uv3_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv3_7 = value;
}
};
struct UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields
{
public:
// UnityEngine.Color32 UnityEngine.UIVertex::s_DefaultColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___s_DefaultColor_8;
// UnityEngine.Vector4 UnityEngine.UIVertex::s_DefaultTangent
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___s_DefaultTangent_9;
// UnityEngine.UIVertex UnityEngine.UIVertex::simpleVert
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___simpleVert_10;
public:
inline static int32_t get_offset_of_s_DefaultColor_8() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___s_DefaultColor_8)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_s_DefaultColor_8() const { return ___s_DefaultColor_8; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_s_DefaultColor_8() { return &___s_DefaultColor_8; }
inline void set_s_DefaultColor_8(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___s_DefaultColor_8 = value;
}
inline static int32_t get_offset_of_s_DefaultTangent_9() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___s_DefaultTangent_9)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_s_DefaultTangent_9() const { return ___s_DefaultTangent_9; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_s_DefaultTangent_9() { return &___s_DefaultTangent_9; }
inline void set_s_DefaultTangent_9(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___s_DefaultTangent_9 = value;
}
inline static int32_t get_offset_of_simpleVert_10() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___simpleVert_10)); }
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 get_simpleVert_10() const { return ___simpleVert_10; }
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 * get_address_of_simpleVert_10() { return &___simpleVert_10; }
inline void set_simpleVert_10(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 value)
{
___simpleVert_10 = value;
}
};
// Microsoft.MixedReality.Toolkit.Input.MeshCursor_MeshCursorDatum
struct MeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B
{
public:
// System.String Microsoft.MixedReality.Toolkit.Input.MeshCursor_MeshCursorDatum::Name
String_t* ___Name_0;
// Microsoft.MixedReality.Toolkit.Input.CursorStateEnum Microsoft.MixedReality.Toolkit.Input.MeshCursor_MeshCursorDatum::CursorState
int32_t ___CursorState_1;
// UnityEngine.Mesh Microsoft.MixedReality.Toolkit.Input.MeshCursor_MeshCursorDatum::CursorMesh
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___CursorMesh_2;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Input.MeshCursor_MeshCursorDatum::LocalScale
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___LocalScale_3;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Input.MeshCursor_MeshCursorDatum::LocalOffset
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___LocalOffset_4;
public:
inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(MeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B, ___Name_0)); }
inline String_t* get_Name_0() const { return ___Name_0; }
inline String_t** get_address_of_Name_0() { return &___Name_0; }
inline void set_Name_0(String_t* value)
{
___Name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Name_0), (void*)value);
}
inline static int32_t get_offset_of_CursorState_1() { return static_cast<int32_t>(offsetof(MeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B, ___CursorState_1)); }
inline int32_t get_CursorState_1() const { return ___CursorState_1; }
inline int32_t* get_address_of_CursorState_1() { return &___CursorState_1; }
inline void set_CursorState_1(int32_t value)
{
___CursorState_1 = value;
}
inline static int32_t get_offset_of_CursorMesh_2() { return static_cast<int32_t>(offsetof(MeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B, ___CursorMesh_2)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_CursorMesh_2() const { return ___CursorMesh_2; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_CursorMesh_2() { return &___CursorMesh_2; }
inline void set_CursorMesh_2(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___CursorMesh_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CursorMesh_2), (void*)value);
}
inline static int32_t get_offset_of_LocalScale_3() { return static_cast<int32_t>(offsetof(MeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B, ___LocalScale_3)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_LocalScale_3() const { return ___LocalScale_3; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_LocalScale_3() { return &___LocalScale_3; }
inline void set_LocalScale_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___LocalScale_3 = value;
}
inline static int32_t get_offset_of_LocalOffset_4() { return static_cast<int32_t>(offsetof(MeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B, ___LocalOffset_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_LocalOffset_4() const { return ___LocalOffset_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_LocalOffset_4() { return &___LocalOffset_4; }
inline void set_LocalOffset_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___LocalOffset_4 = value;
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.MeshCursor/MeshCursorDatum
struct MeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B_marshaled_pinvoke
{
char* ___Name_0;
int32_t ___CursorState_1;
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___CursorMesh_2;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___LocalScale_3;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___LocalOffset_4;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.MeshCursor/MeshCursorDatum
struct MeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B_marshaled_com
{
Il2CppChar* ___Name_0;
int32_t ___CursorState_1;
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___CursorMesh_2;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___LocalScale_3;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___LocalOffset_4;
};
// Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerMapping
struct MixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.SystemType Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerMapping::controllerType
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___controllerType_0;
// Microsoft.MixedReality.Toolkit.Utilities.Handedness Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerMapping::handedness
uint8_t ___handedness_1;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInteractionMapping[] Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerMapping::interactions
MixedRealityInteractionMappingU5BU5D_tA9021B8F5A4C53A970615CF32CF4B0992DEFB4FA* ___interactions_2;
public:
inline static int32_t get_offset_of_controllerType_0() { return static_cast<int32_t>(offsetof(MixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34, ___controllerType_0)); }
inline SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * get_controllerType_0() const { return ___controllerType_0; }
inline SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 ** get_address_of_controllerType_0() { return &___controllerType_0; }
inline void set_controllerType_0(SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * value)
{
___controllerType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___controllerType_0), (void*)value);
}
inline static int32_t get_offset_of_handedness_1() { return static_cast<int32_t>(offsetof(MixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34, ___handedness_1)); }
inline uint8_t get_handedness_1() const { return ___handedness_1; }
inline uint8_t* get_address_of_handedness_1() { return &___handedness_1; }
inline void set_handedness_1(uint8_t value)
{
___handedness_1 = value;
}
inline static int32_t get_offset_of_interactions_2() { return static_cast<int32_t>(offsetof(MixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34, ___interactions_2)); }
inline MixedRealityInteractionMappingU5BU5D_tA9021B8F5A4C53A970615CF32CF4B0992DEFB4FA* get_interactions_2() const { return ___interactions_2; }
inline MixedRealityInteractionMappingU5BU5D_tA9021B8F5A4C53A970615CF32CF4B0992DEFB4FA** get_address_of_interactions_2() { return &___interactions_2; }
inline void set_interactions_2(MixedRealityInteractionMappingU5BU5D_tA9021B8F5A4C53A970615CF32CF4B0992DEFB4FA* value)
{
___interactions_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___interactions_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerMapping
struct MixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34_marshaled_pinvoke
{
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___controllerType_0;
uint8_t ___handedness_1;
MixedRealityInteractionMappingU5BU5D_tA9021B8F5A4C53A970615CF32CF4B0992DEFB4FA* ___interactions_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerMapping
struct MixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34_marshaled_com
{
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___controllerType_0;
uint8_t ___handedness_1;
MixedRealityInteractionMappingU5BU5D_tA9021B8F5A4C53A970615CF32CF4B0992DEFB4FA* ___interactions_2;
};
// Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting
struct MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4
{
public:
// System.String Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting::description
String_t* ___description_0;
// Microsoft.MixedReality.Toolkit.Utilities.SystemType Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting::controllerType
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___controllerType_1;
// Microsoft.MixedReality.Toolkit.Utilities.Handedness Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting::handedness
uint8_t ___handedness_2;
// System.Boolean Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting::useDefaultModel
bool ___useDefaultModel_3;
// UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting::overrideModel
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___overrideModel_4;
// Microsoft.MixedReality.Toolkit.Utilities.SystemType Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting::controllerVisualizationType
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___controllerVisualizationType_5;
public:
inline static int32_t get_offset_of_description_0() { return static_cast<int32_t>(offsetof(MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4, ___description_0)); }
inline String_t* get_description_0() const { return ___description_0; }
inline String_t** get_address_of_description_0() { return &___description_0; }
inline void set_description_0(String_t* value)
{
___description_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___description_0), (void*)value);
}
inline static int32_t get_offset_of_controllerType_1() { return static_cast<int32_t>(offsetof(MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4, ___controllerType_1)); }
inline SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * get_controllerType_1() const { return ___controllerType_1; }
inline SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 ** get_address_of_controllerType_1() { return &___controllerType_1; }
inline void set_controllerType_1(SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * value)
{
___controllerType_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___controllerType_1), (void*)value);
}
inline static int32_t get_offset_of_handedness_2() { return static_cast<int32_t>(offsetof(MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4, ___handedness_2)); }
inline uint8_t get_handedness_2() const { return ___handedness_2; }
inline uint8_t* get_address_of_handedness_2() { return &___handedness_2; }
inline void set_handedness_2(uint8_t value)
{
___handedness_2 = value;
}
inline static int32_t get_offset_of_useDefaultModel_3() { return static_cast<int32_t>(offsetof(MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4, ___useDefaultModel_3)); }
inline bool get_useDefaultModel_3() const { return ___useDefaultModel_3; }
inline bool* get_address_of_useDefaultModel_3() { return &___useDefaultModel_3; }
inline void set_useDefaultModel_3(bool value)
{
___useDefaultModel_3 = value;
}
inline static int32_t get_offset_of_overrideModel_4() { return static_cast<int32_t>(offsetof(MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4, ___overrideModel_4)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_overrideModel_4() const { return ___overrideModel_4; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_overrideModel_4() { return &___overrideModel_4; }
inline void set_overrideModel_4(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___overrideModel_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___overrideModel_4), (void*)value);
}
inline static int32_t get_offset_of_controllerVisualizationType_5() { return static_cast<int32_t>(offsetof(MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4, ___controllerVisualizationType_5)); }
inline SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * get_controllerVisualizationType_5() const { return ___controllerVisualizationType_5; }
inline SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 ** get_address_of_controllerVisualizationType_5() { return &___controllerVisualizationType_5; }
inline void set_controllerVisualizationType_5(SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * value)
{
___controllerVisualizationType_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___controllerVisualizationType_5), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting
struct MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4_marshaled_pinvoke
{
char* ___description_0;
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___controllerType_1;
uint8_t ___handedness_2;
int32_t ___useDefaultModel_3;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___overrideModel_4;
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___controllerVisualizationType_5;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting
struct MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4_marshaled_com
{
Il2CppChar* ___description_0;
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___controllerType_1;
uint8_t ___handedness_2;
int32_t ___useDefaultModel_3;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___overrideModel_4;
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___controllerVisualizationType_5;
};
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction
struct MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073
{
public:
// System.UInt32 Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction::id
uint32_t ___id_1;
// System.String Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction::description
String_t* ___description_2;
// Microsoft.MixedReality.Toolkit.Utilities.AxisType Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction::axisConstraint
int32_t ___axisConstraint_3;
public:
inline static int32_t get_offset_of_id_1() { return static_cast<int32_t>(offsetof(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073, ___id_1)); }
inline uint32_t get_id_1() const { return ___id_1; }
inline uint32_t* get_address_of_id_1() { return &___id_1; }
inline void set_id_1(uint32_t value)
{
___id_1 = value;
}
inline static int32_t get_offset_of_description_2() { return static_cast<int32_t>(offsetof(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073, ___description_2)); }
inline String_t* get_description_2() const { return ___description_2; }
inline String_t** get_address_of_description_2() { return &___description_2; }
inline void set_description_2(String_t* value)
{
___description_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___description_2), (void*)value);
}
inline static int32_t get_offset_of_axisConstraint_3() { return static_cast<int32_t>(offsetof(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073, ___axisConstraint_3)); }
inline int32_t get_axisConstraint_3() const { return ___axisConstraint_3; }
inline int32_t* get_address_of_axisConstraint_3() { return &___axisConstraint_3; }
inline void set_axisConstraint_3(int32_t value)
{
___axisConstraint_3 = value;
}
};
struct MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_StaticFields
{
public:
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction::<None>k__BackingField
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___U3CNoneU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CNoneU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_StaticFields, ___U3CNoneU3Ek__BackingField_0)); }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 get_U3CNoneU3Ek__BackingField_0() const { return ___U3CNoneU3Ek__BackingField_0; }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * get_address_of_U3CNoneU3Ek__BackingField_0() { return &___U3CNoneU3Ek__BackingField_0; }
inline void set_U3CNoneU3Ek__BackingField_0(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
___U3CNoneU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CNoneU3Ek__BackingField_0))->___description_2), (void*)NULL);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction
struct MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_pinvoke
{
uint32_t ___id_1;
char* ___description_2;
int32_t ___axisConstraint_3;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction
struct MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_com
{
uint32_t ___id_1;
Il2CppChar* ___description_2;
int32_t ___axisConstraint_3;
};
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration
struct MixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.SystemType Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration::componentType
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___componentType_0;
// System.String Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration::componentName
String_t* ___componentName_1;
// System.UInt32 Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration::priority
uint32_t ___priority_2;
// Microsoft.MixedReality.Toolkit.Utilities.SupportedPlatforms Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration::runtimePlatform
int32_t ___runtimePlatform_3;
// Microsoft.MixedReality.Toolkit.BaseMixedRealityProfile Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration::deviceManagerProfile
BaseMixedRealityProfile_tB4DC16619B37D298D22571CE017070A78EF826E8 * ___deviceManagerProfile_4;
public:
inline static int32_t get_offset_of_componentType_0() { return static_cast<int32_t>(offsetof(MixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932, ___componentType_0)); }
inline SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * get_componentType_0() const { return ___componentType_0; }
inline SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 ** get_address_of_componentType_0() { return &___componentType_0; }
inline void set_componentType_0(SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * value)
{
___componentType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___componentType_0), (void*)value);
}
inline static int32_t get_offset_of_componentName_1() { return static_cast<int32_t>(offsetof(MixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932, ___componentName_1)); }
inline String_t* get_componentName_1() const { return ___componentName_1; }
inline String_t** get_address_of_componentName_1() { return &___componentName_1; }
inline void set_componentName_1(String_t* value)
{
___componentName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___componentName_1), (void*)value);
}
inline static int32_t get_offset_of_priority_2() { return static_cast<int32_t>(offsetof(MixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932, ___priority_2)); }
inline uint32_t get_priority_2() const { return ___priority_2; }
inline uint32_t* get_address_of_priority_2() { return &___priority_2; }
inline void set_priority_2(uint32_t value)
{
___priority_2 = value;
}
inline static int32_t get_offset_of_runtimePlatform_3() { return static_cast<int32_t>(offsetof(MixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932, ___runtimePlatform_3)); }
inline int32_t get_runtimePlatform_3() const { return ___runtimePlatform_3; }
inline int32_t* get_address_of_runtimePlatform_3() { return &___runtimePlatform_3; }
inline void set_runtimePlatform_3(int32_t value)
{
___runtimePlatform_3 = value;
}
inline static int32_t get_offset_of_deviceManagerProfile_4() { return static_cast<int32_t>(offsetof(MixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932, ___deviceManagerProfile_4)); }
inline BaseMixedRealityProfile_tB4DC16619B37D298D22571CE017070A78EF826E8 * get_deviceManagerProfile_4() const { return ___deviceManagerProfile_4; }
inline BaseMixedRealityProfile_tB4DC16619B37D298D22571CE017070A78EF826E8 ** get_address_of_deviceManagerProfile_4() { return &___deviceManagerProfile_4; }
inline void set_deviceManagerProfile_4(BaseMixedRealityProfile_tB4DC16619B37D298D22571CE017070A78EF826E8 * value)
{
___deviceManagerProfile_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___deviceManagerProfile_4), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration
struct MixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932_marshaled_pinvoke
{
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___componentType_0;
char* ___componentName_1;
uint32_t ___priority_2;
int32_t ___runtimePlatform_3;
BaseMixedRealityProfile_tB4DC16619B37D298D22571CE017070A78EF826E8 * ___deviceManagerProfile_4;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration
struct MixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932_marshaled_com
{
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___componentType_0;
Il2CppChar* ___componentName_1;
uint32_t ___priority_2;
int32_t ___runtimePlatform_3;
BaseMixedRealityProfile_tB4DC16619B37D298D22571CE017070A78EF826E8 * ___deviceManagerProfile_4;
};
// Microsoft.MixedReality.Toolkit.Input.ObjectCursor_ObjectCursorDatum
struct ObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4
{
public:
// System.String Microsoft.MixedReality.Toolkit.Input.ObjectCursor_ObjectCursorDatum::Name
String_t* ___Name_0;
// Microsoft.MixedReality.Toolkit.Input.CursorStateEnum Microsoft.MixedReality.Toolkit.Input.ObjectCursor_ObjectCursorDatum::CursorState
int32_t ___CursorState_1;
// UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Input.ObjectCursor_ObjectCursorDatum::CursorObject
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___CursorObject_2;
public:
inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(ObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4, ___Name_0)); }
inline String_t* get_Name_0() const { return ___Name_0; }
inline String_t** get_address_of_Name_0() { return &___Name_0; }
inline void set_Name_0(String_t* value)
{
___Name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Name_0), (void*)value);
}
inline static int32_t get_offset_of_CursorState_1() { return static_cast<int32_t>(offsetof(ObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4, ___CursorState_1)); }
inline int32_t get_CursorState_1() const { return ___CursorState_1; }
inline int32_t* get_address_of_CursorState_1() { return &___CursorState_1; }
inline void set_CursorState_1(int32_t value)
{
___CursorState_1 = value;
}
inline static int32_t get_offset_of_CursorObject_2() { return static_cast<int32_t>(offsetof(ObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4, ___CursorObject_2)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_CursorObject_2() const { return ___CursorObject_2; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_CursorObject_2() { return &___CursorObject_2; }
inline void set_CursorObject_2(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___CursorObject_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CursorObject_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.ObjectCursor/ObjectCursorDatum
struct ObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4_marshaled_pinvoke
{
char* ___Name_0;
int32_t ___CursorState_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___CursorObject_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.ObjectCursor/ObjectCursorDatum
struct ObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4_marshaled_com
{
Il2CppChar* ___Name_0;
int32_t ___CursorState_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___CursorObject_2;
};
// Microsoft.MixedReality.Toolkit.Input.PointerOption
struct PointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109
{
public:
// Microsoft.MixedReality.Toolkit.Input.SupportedControllerType Microsoft.MixedReality.Toolkit.Input.PointerOption::controllerType
int32_t ___controllerType_0;
// Microsoft.MixedReality.Toolkit.Utilities.Handedness Microsoft.MixedReality.Toolkit.Input.PointerOption::handedness
uint8_t ___handedness_1;
// UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Input.PointerOption::pointerPrefab
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___pointerPrefab_2;
public:
inline static int32_t get_offset_of_controllerType_0() { return static_cast<int32_t>(offsetof(PointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109, ___controllerType_0)); }
inline int32_t get_controllerType_0() const { return ___controllerType_0; }
inline int32_t* get_address_of_controllerType_0() { return &___controllerType_0; }
inline void set_controllerType_0(int32_t value)
{
___controllerType_0 = value;
}
inline static int32_t get_offset_of_handedness_1() { return static_cast<int32_t>(offsetof(PointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109, ___handedness_1)); }
inline uint8_t get_handedness_1() const { return ___handedness_1; }
inline uint8_t* get_address_of_handedness_1() { return &___handedness_1; }
inline void set_handedness_1(uint8_t value)
{
___handedness_1 = value;
}
inline static int32_t get_offset_of_pointerPrefab_2() { return static_cast<int32_t>(offsetof(PointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109, ___pointerPrefab_2)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_pointerPrefab_2() const { return ___pointerPrefab_2; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_pointerPrefab_2() { return &___pointerPrefab_2; }
inline void set_pointerPrefab_2(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___pointerPrefab_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___pointerPrefab_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.PointerOption
struct PointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109_marshaled_pinvoke
{
int32_t ___controllerType_0;
uint8_t ___handedness_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___pointerPrefab_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.PointerOption
struct PointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109_marshaled_com
{
int32_t ___controllerType_0;
uint8_t ___handedness_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___pointerPrefab_2;
};
// Microsoft.MixedReality.Toolkit.Input.SpriteCursor_SpriteCursorDatum
struct SpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784
{
public:
// System.String Microsoft.MixedReality.Toolkit.Input.SpriteCursor_SpriteCursorDatum::Name
String_t* ___Name_0;
// Microsoft.MixedReality.Toolkit.Input.CursorStateEnum Microsoft.MixedReality.Toolkit.Input.SpriteCursor_SpriteCursorDatum::CursorState
int32_t ___CursorState_1;
// UnityEngine.Sprite Microsoft.MixedReality.Toolkit.Input.SpriteCursor_SpriteCursorDatum::CursorSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___CursorSprite_2;
// UnityEngine.Color Microsoft.MixedReality.Toolkit.Input.SpriteCursor_SpriteCursorDatum::CursorColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___CursorColor_3;
public:
inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(SpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784, ___Name_0)); }
inline String_t* get_Name_0() const { return ___Name_0; }
inline String_t** get_address_of_Name_0() { return &___Name_0; }
inline void set_Name_0(String_t* value)
{
___Name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Name_0), (void*)value);
}
inline static int32_t get_offset_of_CursorState_1() { return static_cast<int32_t>(offsetof(SpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784, ___CursorState_1)); }
inline int32_t get_CursorState_1() const { return ___CursorState_1; }
inline int32_t* get_address_of_CursorState_1() { return &___CursorState_1; }
inline void set_CursorState_1(int32_t value)
{
___CursorState_1 = value;
}
inline static int32_t get_offset_of_CursorSprite_2() { return static_cast<int32_t>(offsetof(SpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784, ___CursorSprite_2)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_CursorSprite_2() const { return ___CursorSprite_2; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_CursorSprite_2() { return &___CursorSprite_2; }
inline void set_CursorSprite_2(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___CursorSprite_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CursorSprite_2), (void*)value);
}
inline static int32_t get_offset_of_CursorColor_3() { return static_cast<int32_t>(offsetof(SpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784, ___CursorColor_3)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_CursorColor_3() const { return ___CursorColor_3; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_CursorColor_3() { return &___CursorColor_3; }
inline void set_CursorColor_3(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___CursorColor_3 = value;
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.SpriteCursor/SpriteCursorDatum
struct SpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784_marshaled_pinvoke
{
char* ___Name_0;
int32_t ___CursorState_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___CursorSprite_2;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___CursorColor_3;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.SpriteCursor/SpriteCursorDatum
struct SpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784_marshaled_com
{
Il2CppChar* ___Name_0;
int32_t ___CursorState_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___CursorSprite_2;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___CursorColor_3;
};
// Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration
struct MixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.SystemType Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration::componentType
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___componentType_0;
// System.String Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration::componentName
String_t* ___componentName_1;
// System.UInt32 Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration::priority
uint32_t ___priority_2;
// Microsoft.MixedReality.Toolkit.Utilities.SupportedPlatforms Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration::runtimePlatform
int32_t ___runtimePlatform_3;
// Microsoft.MixedReality.Toolkit.BaseMixedRealityProfile Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration::configurationProfile
BaseMixedRealityProfile_tB4DC16619B37D298D22571CE017070A78EF826E8 * ___configurationProfile_4;
public:
inline static int32_t get_offset_of_componentType_0() { return static_cast<int32_t>(offsetof(MixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9, ___componentType_0)); }
inline SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * get_componentType_0() const { return ___componentType_0; }
inline SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 ** get_address_of_componentType_0() { return &___componentType_0; }
inline void set_componentType_0(SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * value)
{
___componentType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___componentType_0), (void*)value);
}
inline static int32_t get_offset_of_componentName_1() { return static_cast<int32_t>(offsetof(MixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9, ___componentName_1)); }
inline String_t* get_componentName_1() const { return ___componentName_1; }
inline String_t** get_address_of_componentName_1() { return &___componentName_1; }
inline void set_componentName_1(String_t* value)
{
___componentName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___componentName_1), (void*)value);
}
inline static int32_t get_offset_of_priority_2() { return static_cast<int32_t>(offsetof(MixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9, ___priority_2)); }
inline uint32_t get_priority_2() const { return ___priority_2; }
inline uint32_t* get_address_of_priority_2() { return &___priority_2; }
inline void set_priority_2(uint32_t value)
{
___priority_2 = value;
}
inline static int32_t get_offset_of_runtimePlatform_3() { return static_cast<int32_t>(offsetof(MixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9, ___runtimePlatform_3)); }
inline int32_t get_runtimePlatform_3() const { return ___runtimePlatform_3; }
inline int32_t* get_address_of_runtimePlatform_3() { return &___runtimePlatform_3; }
inline void set_runtimePlatform_3(int32_t value)
{
___runtimePlatform_3 = value;
}
inline static int32_t get_offset_of_configurationProfile_4() { return static_cast<int32_t>(offsetof(MixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9, ___configurationProfile_4)); }
inline BaseMixedRealityProfile_tB4DC16619B37D298D22571CE017070A78EF826E8 * get_configurationProfile_4() const { return ___configurationProfile_4; }
inline BaseMixedRealityProfile_tB4DC16619B37D298D22571CE017070A78EF826E8 ** get_address_of_configurationProfile_4() { return &___configurationProfile_4; }
inline void set_configurationProfile_4(BaseMixedRealityProfile_tB4DC16619B37D298D22571CE017070A78EF826E8 * value)
{
___configurationProfile_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___configurationProfile_4), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration
struct MixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9_marshaled_pinvoke
{
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___componentType_0;
char* ___componentName_1;
uint32_t ___priority_2;
int32_t ___runtimePlatform_3;
BaseMixedRealityProfile_tB4DC16619B37D298D22571CE017070A78EF826E8 * ___configurationProfile_4;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration
struct MixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9_marshaled_com
{
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___componentType_0;
Il2CppChar* ___componentName_1;
uint32_t ___priority_2;
int32_t ___runtimePlatform_3;
BaseMixedRealityProfile_tB4DC16619B37D298D22571CE017070A78EF826E8 * ___configurationProfile_4;
};
// Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration
struct MixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.SystemType Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration::componentType
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___componentType_0;
// System.String Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration::componentName
String_t* ___componentName_1;
// System.UInt32 Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration::priority
uint32_t ___priority_2;
// Microsoft.MixedReality.Toolkit.Utilities.SupportedPlatforms Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration::runtimePlatform
int32_t ___runtimePlatform_3;
// Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialAwarenessObserverProfile Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration::observerProfile
BaseSpatialAwarenessObserverProfile_tEE30EA47A4C33A81B773F9E53EA3306BBB7FDADC * ___observerProfile_4;
public:
inline static int32_t get_offset_of_componentType_0() { return static_cast<int32_t>(offsetof(MixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90, ___componentType_0)); }
inline SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * get_componentType_0() const { return ___componentType_0; }
inline SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 ** get_address_of_componentType_0() { return &___componentType_0; }
inline void set_componentType_0(SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * value)
{
___componentType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___componentType_0), (void*)value);
}
inline static int32_t get_offset_of_componentName_1() { return static_cast<int32_t>(offsetof(MixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90, ___componentName_1)); }
inline String_t* get_componentName_1() const { return ___componentName_1; }
inline String_t** get_address_of_componentName_1() { return &___componentName_1; }
inline void set_componentName_1(String_t* value)
{
___componentName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___componentName_1), (void*)value);
}
inline static int32_t get_offset_of_priority_2() { return static_cast<int32_t>(offsetof(MixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90, ___priority_2)); }
inline uint32_t get_priority_2() const { return ___priority_2; }
inline uint32_t* get_address_of_priority_2() { return &___priority_2; }
inline void set_priority_2(uint32_t value)
{
___priority_2 = value;
}
inline static int32_t get_offset_of_runtimePlatform_3() { return static_cast<int32_t>(offsetof(MixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90, ___runtimePlatform_3)); }
inline int32_t get_runtimePlatform_3() const { return ___runtimePlatform_3; }
inline int32_t* get_address_of_runtimePlatform_3() { return &___runtimePlatform_3; }
inline void set_runtimePlatform_3(int32_t value)
{
___runtimePlatform_3 = value;
}
inline static int32_t get_offset_of_observerProfile_4() { return static_cast<int32_t>(offsetof(MixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90, ___observerProfile_4)); }
inline BaseSpatialAwarenessObserverProfile_tEE30EA47A4C33A81B773F9E53EA3306BBB7FDADC * get_observerProfile_4() const { return ___observerProfile_4; }
inline BaseSpatialAwarenessObserverProfile_tEE30EA47A4C33A81B773F9E53EA3306BBB7FDADC ** get_address_of_observerProfile_4() { return &___observerProfile_4; }
inline void set_observerProfile_4(BaseSpatialAwarenessObserverProfile_tEE30EA47A4C33A81B773F9E53EA3306BBB7FDADC * value)
{
___observerProfile_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___observerProfile_4), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration
struct MixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90_marshaled_pinvoke
{
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___componentType_0;
char* ___componentName_1;
uint32_t ___priority_2;
int32_t ___runtimePlatform_3;
BaseSpatialAwarenessObserverProfile_tEE30EA47A4C33A81B773F9E53EA3306BBB7FDADC * ___observerProfile_4;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration
struct MixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90_marshaled_com
{
SystemType_t9696BD865921F75894EBD4D6EF913158A8BF3432 * ___componentType_0;
Il2CppChar* ___componentName_1;
uint32_t ___priority_2;
int32_t ___runtimePlatform_3;
BaseSpatialAwarenessObserverProfile_tEE30EA47A4C33A81B773F9E53EA3306BBB7FDADC * ___observerProfile_4;
};
// Microsoft.MixedReality.Toolkit.UI.ShaderProperties
struct ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B
{
public:
// System.String Microsoft.MixedReality.Toolkit.UI.ShaderProperties::Name
String_t* ___Name_0;
// Microsoft.MixedReality.Toolkit.UI.ShaderPropertyType Microsoft.MixedReality.Toolkit.UI.ShaderProperties::Type
int32_t ___Type_1;
// UnityEngine.Vector2 Microsoft.MixedReality.Toolkit.UI.ShaderProperties::Range
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Range_2;
public:
inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B, ___Name_0)); }
inline String_t* get_Name_0() const { return ___Name_0; }
inline String_t** get_address_of_Name_0() { return &___Name_0; }
inline void set_Name_0(String_t* value)
{
___Name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Name_0), (void*)value);
}
inline static int32_t get_offset_of_Type_1() { return static_cast<int32_t>(offsetof(ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B, ___Type_1)); }
inline int32_t get_Type_1() const { return ___Type_1; }
inline int32_t* get_address_of_Type_1() { return &___Type_1; }
inline void set_Type_1(int32_t value)
{
___Type_1 = value;
}
inline static int32_t get_offset_of_Range_2() { return static_cast<int32_t>(offsetof(ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B, ___Range_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_Range_2() const { return ___Range_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_Range_2() { return &___Range_2; }
inline void set_Range_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___Range_2 = value;
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.UI.ShaderProperties
struct ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_marshaled_pinvoke
{
char* ___Name_0;
int32_t ___Type_1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Range_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.UI.ShaderProperties
struct ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_marshaled_com
{
Il2CppChar* ___Name_0;
int32_t ___Type_1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Range_2;
};
// Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter
struct AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1
{
public:
// UnityEngine.AnimatorControllerParameterType Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter::parameterType
int32_t ___parameterType_0;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter::defaultInt
int32_t ___defaultInt_1;
// System.Single Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter::defaultFloat
float ___defaultFloat_2;
// System.Boolean Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter::defaultBool
bool ___defaultBool_3;
// System.String Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter::name
String_t* ___name_4;
// System.Nullable`1<System.Int32> Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter::nameStringHash
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___nameStringHash_5;
public:
inline static int32_t get_offset_of_parameterType_0() { return static_cast<int32_t>(offsetof(AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1, ___parameterType_0)); }
inline int32_t get_parameterType_0() const { return ___parameterType_0; }
inline int32_t* get_address_of_parameterType_0() { return &___parameterType_0; }
inline void set_parameterType_0(int32_t value)
{
___parameterType_0 = value;
}
inline static int32_t get_offset_of_defaultInt_1() { return static_cast<int32_t>(offsetof(AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1, ___defaultInt_1)); }
inline int32_t get_defaultInt_1() const { return ___defaultInt_1; }
inline int32_t* get_address_of_defaultInt_1() { return &___defaultInt_1; }
inline void set_defaultInt_1(int32_t value)
{
___defaultInt_1 = value;
}
inline static int32_t get_offset_of_defaultFloat_2() { return static_cast<int32_t>(offsetof(AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1, ___defaultFloat_2)); }
inline float get_defaultFloat_2() const { return ___defaultFloat_2; }
inline float* get_address_of_defaultFloat_2() { return &___defaultFloat_2; }
inline void set_defaultFloat_2(float value)
{
___defaultFloat_2 = value;
}
inline static int32_t get_offset_of_defaultBool_3() { return static_cast<int32_t>(offsetof(AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1, ___defaultBool_3)); }
inline bool get_defaultBool_3() const { return ___defaultBool_3; }
inline bool* get_address_of_defaultBool_3() { return &___defaultBool_3; }
inline void set_defaultBool_3(bool value)
{
___defaultBool_3 = value;
}
inline static int32_t get_offset_of_name_4() { return static_cast<int32_t>(offsetof(AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1, ___name_4)); }
inline String_t* get_name_4() const { return ___name_4; }
inline String_t** get_address_of_name_4() { return &___name_4; }
inline void set_name_4(String_t* value)
{
___name_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_4), (void*)value);
}
inline static int32_t get_offset_of_nameStringHash_5() { return static_cast<int32_t>(offsetof(AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1, ___nameStringHash_5)); }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB get_nameStringHash_5() const { return ___nameStringHash_5; }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * get_address_of_nameStringHash_5() { return &___nameStringHash_5; }
inline void set_nameStringHash_5(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB value)
{
___nameStringHash_5 = value;
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter
struct AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1_marshaled_pinvoke
{
int32_t ___parameterType_0;
int32_t ___defaultInt_1;
float ___defaultFloat_2;
int32_t ___defaultBool_3;
char* ___name_4;
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___nameStringHash_5;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter
struct AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1_marshaled_com
{
int32_t ___parameterType_0;
int32_t ___defaultInt_1;
float ___defaultFloat_2;
int32_t ___defaultBool_3;
Il2CppChar* ___name_4;
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___nameStringHash_5;
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect_AudioLoFiFilterSettings>
struct Entry_tBB2C3E86781F36999E2AE5A12F9264342F927AE4
{
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_t2DBDEA6041A08604EC936D49487AB423AB87F139 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tBB2C3E86781F36999E2AE5A12F9264342F927AE4, ___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_tBB2C3E86781F36999E2AE5A12F9264342F927AE4, ___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_tBB2C3E86781F36999E2AE5A12F9264342F927AE4, ___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_tBB2C3E86781F36999E2AE5A12F9264342F927AE4, ___value_3)); }
inline AudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139 get_value_3() const { return ___value_3; }
inline AudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(AudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139 value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>
struct Entry_t4588F5F844CFA9BFB03C33BD835C77631202A97B
{
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_tB91C13927D4C609825580E7DACDB4A550F3F0F45 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t4588F5F844CFA9BFB03C33BD835C77631202A97B, ___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_t4588F5F844CFA9BFB03C33BD835C77631202A97B, ___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_t4588F5F844CFA9BFB03C33BD835C77631202A97B, ___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_t4588F5F844CFA9BFB03C33BD835C77631202A97B, ___value_3)); }
inline MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 get_value_3() const { return ___value_3; }
inline MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,System.Object>
struct Entry_t0947D15694A2F80B19118B0E9DA4161A92D6139A
{
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_t0947D15694A2F80B19118B0E9DA4161A92D6139A, ___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_t0947D15694A2F80B19118B0E9DA4161A92D6139A, ___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_t0947D15694A2F80B19118B0E9DA4161A92D6139A, ___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_t0947D15694A2F80B19118B0E9DA4161A92D6139A, ___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.Diagnostics.Tracing.EventDataAttribute
struct EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.EventDataAttribute::level
int32_t ___level_0;
// System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.EventDataAttribute::opcode
int32_t ___opcode_1;
// System.String System.Diagnostics.Tracing.EventDataAttribute::<Name>k__BackingField
String_t* ___U3CNameU3Ek__BackingField_2;
// System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventDataAttribute::<Keywords>k__BackingField
int64_t ___U3CKeywordsU3Ek__BackingField_3;
// System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventDataAttribute::<Tags>k__BackingField
int32_t ___U3CTagsU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_level_0() { return static_cast<int32_t>(offsetof(EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85, ___level_0)); }
inline int32_t get_level_0() const { return ___level_0; }
inline int32_t* get_address_of_level_0() { return &___level_0; }
inline void set_level_0(int32_t value)
{
___level_0 = value;
}
inline static int32_t get_offset_of_opcode_1() { return static_cast<int32_t>(offsetof(EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85, ___opcode_1)); }
inline int32_t get_opcode_1() const { return ___opcode_1; }
inline int32_t* get_address_of_opcode_1() { return &___opcode_1; }
inline void set_opcode_1(int32_t value)
{
___opcode_1 = value;
}
inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85, ___U3CNameU3Ek__BackingField_2)); }
inline String_t* get_U3CNameU3Ek__BackingField_2() const { return ___U3CNameU3Ek__BackingField_2; }
inline String_t** get_address_of_U3CNameU3Ek__BackingField_2() { return &___U3CNameU3Ek__BackingField_2; }
inline void set_U3CNameU3Ek__BackingField_2(String_t* value)
{
___U3CNameU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CKeywordsU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85, ___U3CKeywordsU3Ek__BackingField_3)); }
inline int64_t get_U3CKeywordsU3Ek__BackingField_3() const { return ___U3CKeywordsU3Ek__BackingField_3; }
inline int64_t* get_address_of_U3CKeywordsU3Ek__BackingField_3() { return &___U3CKeywordsU3Ek__BackingField_3; }
inline void set_U3CKeywordsU3Ek__BackingField_3(int64_t value)
{
___U3CKeywordsU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CTagsU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85, ___U3CTagsU3Ek__BackingField_4)); }
inline int32_t get_U3CTagsU3Ek__BackingField_4() const { return ___U3CTagsU3Ek__BackingField_4; }
inline int32_t* get_address_of_U3CTagsU3Ek__BackingField_4() { return &___U3CTagsU3Ek__BackingField_4; }
inline void set_U3CTagsU3Ek__BackingField_4(int32_t value)
{
___U3CTagsU3Ek__BackingField_4 = value;
}
};
// System.Diagnostics.Tracing.Statics
struct Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95 : public RuntimeObject
{
public:
public:
};
struct Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::IntPtrType
int32_t ___IntPtrType_0;
// System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::UIntPtrType
int32_t ___UIntPtrType_1;
// System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::HexIntPtrType
int32_t ___HexIntPtrType_2;
public:
inline static int32_t get_offset_of_IntPtrType_0() { return static_cast<int32_t>(offsetof(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields, ___IntPtrType_0)); }
inline int32_t get_IntPtrType_0() const { return ___IntPtrType_0; }
inline int32_t* get_address_of_IntPtrType_0() { return &___IntPtrType_0; }
inline void set_IntPtrType_0(int32_t value)
{
___IntPtrType_0 = value;
}
inline static int32_t get_offset_of_UIntPtrType_1() { return static_cast<int32_t>(offsetof(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields, ___UIntPtrType_1)); }
inline int32_t get_UIntPtrType_1() const { return ___UIntPtrType_1; }
inline int32_t* get_address_of_UIntPtrType_1() { return &___UIntPtrType_1; }
inline void set_UIntPtrType_1(int32_t value)
{
___UIntPtrType_1 = value;
}
inline static int32_t get_offset_of_HexIntPtrType_2() { return static_cast<int32_t>(offsetof(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields, ___HexIntPtrType_2)); }
inline int32_t get_HexIntPtrType_2() const { return ___HexIntPtrType_2; }
inline int32_t* get_address_of_HexIntPtrType_2() { return &___HexIntPtrType_2; }
inline void set_HexIntPtrType_2(int32_t value)
{
___HexIntPtrType_2 = value;
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo
struct TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F : public RuntimeObject
{
public:
// System.String System.Diagnostics.Tracing.TraceLoggingTypeInfo::name
String_t* ___name_0;
// System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.TraceLoggingTypeInfo::keywords
int64_t ___keywords_1;
// System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.TraceLoggingTypeInfo::level
int32_t ___level_2;
// System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.TraceLoggingTypeInfo::opcode
int32_t ___opcode_3;
// System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.TraceLoggingTypeInfo::tags
int32_t ___tags_4;
// System.Type System.Diagnostics.Tracing.TraceLoggingTypeInfo::dataType
Type_t * ___dataType_5;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
}
inline static int32_t get_offset_of_keywords_1() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___keywords_1)); }
inline int64_t get_keywords_1() const { return ___keywords_1; }
inline int64_t* get_address_of_keywords_1() { return &___keywords_1; }
inline void set_keywords_1(int64_t value)
{
___keywords_1 = value;
}
inline static int32_t get_offset_of_level_2() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___level_2)); }
inline int32_t get_level_2() const { return ___level_2; }
inline int32_t* get_address_of_level_2() { return &___level_2; }
inline void set_level_2(int32_t value)
{
___level_2 = value;
}
inline static int32_t get_offset_of_opcode_3() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___opcode_3)); }
inline int32_t get_opcode_3() const { return ___opcode_3; }
inline int32_t* get_address_of_opcode_3() { return &___opcode_3; }
inline void set_opcode_3(int32_t value)
{
___opcode_3 = value;
}
inline static int32_t get_offset_of_tags_4() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___tags_4)); }
inline int32_t get_tags_4() const { return ___tags_4; }
inline int32_t* get_address_of_tags_4() { return &___tags_4; }
inline void set_tags_4(int32_t value)
{
___tags_4 = value;
}
inline static int32_t get_offset_of_dataType_5() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___dataType_5)); }
inline Type_t * get_dataType_5() const { return ___dataType_5; }
inline Type_t ** get_address_of_dataType_5() { return &___dataType_5; }
inline void set_dataType_5(Type_t * value)
{
___dataType_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dataType_5), (void*)value);
}
};
// System.Diagnostics.Tracing.TypeAnalysis
struct TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD : public RuntimeObject
{
public:
// System.Diagnostics.Tracing.PropertyAnalysis[] System.Diagnostics.Tracing.TypeAnalysis::properties
PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* ___properties_0;
// System.String System.Diagnostics.Tracing.TypeAnalysis::name
String_t* ___name_1;
// System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.TypeAnalysis::keywords
int64_t ___keywords_2;
// System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.TypeAnalysis::level
int32_t ___level_3;
// System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.TypeAnalysis::opcode
int32_t ___opcode_4;
// System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.TypeAnalysis::tags
int32_t ___tags_5;
public:
inline static int32_t get_offset_of_properties_0() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___properties_0)); }
inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* get_properties_0() const { return ___properties_0; }
inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB** get_address_of_properties_0() { return &___properties_0; }
inline void set_properties_0(PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* value)
{
___properties_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___properties_0), (void*)value);
}
inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___name_1)); }
inline String_t* get_name_1() const { return ___name_1; }
inline String_t** get_address_of_name_1() { return &___name_1; }
inline void set_name_1(String_t* value)
{
___name_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_1), (void*)value);
}
inline static int32_t get_offset_of_keywords_2() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___keywords_2)); }
inline int64_t get_keywords_2() const { return ___keywords_2; }
inline int64_t* get_address_of_keywords_2() { return &___keywords_2; }
inline void set_keywords_2(int64_t value)
{
___keywords_2 = value;
}
inline static int32_t get_offset_of_level_3() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___level_3)); }
inline int32_t get_level_3() const { return ___level_3; }
inline int32_t* get_address_of_level_3() { return &___level_3; }
inline void set_level_3(int32_t value)
{
___level_3 = value;
}
inline static int32_t get_offset_of_opcode_4() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___opcode_4)); }
inline int32_t get_opcode_4() const { return ___opcode_4; }
inline int32_t* get_address_of_opcode_4() { return &___opcode_4; }
inline void set_opcode_4(int32_t value)
{
___opcode_4 = value;
}
inline static int32_t get_offset_of_tags_5() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___tags_5)); }
inline int32_t get_tags_5() const { return ___tags_5; }
inline int32_t* get_address_of_tags_5() { return &___tags_5; }
inline void set_tags_5(int32_t value)
{
___tags_5 = value;
}
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6;
public:
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_pinvoke : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_com : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com
{
};
// Microsoft.MixedReality.Toolkit.Input.AnimatedCursorData
struct AnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B
{
public:
// System.String Microsoft.MixedReality.Toolkit.Input.AnimatedCursorData::name
String_t* ___name_0;
// Microsoft.MixedReality.Toolkit.Input.CursorStateEnum Microsoft.MixedReality.Toolkit.Input.AnimatedCursorData::cursorState
int32_t ___cursorState_1;
// Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter Microsoft.MixedReality.Toolkit.Input.AnimatedCursorData::parameter
AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1 ___parameter_2;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
}
inline static int32_t get_offset_of_cursorState_1() { return static_cast<int32_t>(offsetof(AnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B, ___cursorState_1)); }
inline int32_t get_cursorState_1() const { return ___cursorState_1; }
inline int32_t* get_address_of_cursorState_1() { return &___cursorState_1; }
inline void set_cursorState_1(int32_t value)
{
___cursorState_1 = value;
}
inline static int32_t get_offset_of_parameter_2() { return static_cast<int32_t>(offsetof(AnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B, ___parameter_2)); }
inline AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1 get_parameter_2() const { return ___parameter_2; }
inline AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1 * get_address_of_parameter_2() { return &___parameter_2; }
inline void set_parameter_2(AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1 value)
{
___parameter_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___parameter_2))->___name_4), (void*)NULL);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.AnimatedCursorData
struct AnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B_marshaled_pinvoke
{
char* ___name_0;
int32_t ___cursorState_1;
AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1_marshaled_pinvoke ___parameter_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.AnimatedCursorData
struct AnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B_marshaled_com
{
Il2CppChar* ___name_0;
int32_t ___cursorState_1;
AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1_marshaled_com ___parameter_2;
};
// Microsoft.MixedReality.Toolkit.Input.InputActionRuleDigital
struct InputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22
{
public:
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleDigital::baseAction
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___baseAction_0;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleDigital::ruleAction
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___ruleAction_1;
// System.Boolean Microsoft.MixedReality.Toolkit.Input.InputActionRuleDigital::criteria
bool ___criteria_2;
public:
inline static int32_t get_offset_of_baseAction_0() { return static_cast<int32_t>(offsetof(InputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22, ___baseAction_0)); }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 get_baseAction_0() const { return ___baseAction_0; }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * get_address_of_baseAction_0() { return &___baseAction_0; }
inline void set_baseAction_0(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
___baseAction_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___baseAction_0))->___description_2), (void*)NULL);
}
inline static int32_t get_offset_of_ruleAction_1() { return static_cast<int32_t>(offsetof(InputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22, ___ruleAction_1)); }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 get_ruleAction_1() const { return ___ruleAction_1; }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * get_address_of_ruleAction_1() { return &___ruleAction_1; }
inline void set_ruleAction_1(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
___ruleAction_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___ruleAction_1))->___description_2), (void*)NULL);
}
inline static int32_t get_offset_of_criteria_2() { return static_cast<int32_t>(offsetof(InputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22, ___criteria_2)); }
inline bool get_criteria_2() const { return ___criteria_2; }
inline bool* get_address_of_criteria_2() { return &___criteria_2; }
inline void set_criteria_2(bool value)
{
___criteria_2 = value;
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleDigital
struct InputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22_marshaled_pinvoke
{
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_pinvoke ___baseAction_0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_pinvoke ___ruleAction_1;
int32_t ___criteria_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleDigital
struct InputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22_marshaled_com
{
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_com ___baseAction_0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_com ___ruleAction_1;
int32_t ___criteria_2;
};
// Microsoft.MixedReality.Toolkit.Input.InputActionRuleDualAxis
struct InputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4
{
public:
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleDualAxis::baseAction
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___baseAction_0;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleDualAxis::ruleAction
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___ruleAction_1;
// UnityEngine.Vector2 Microsoft.MixedReality.Toolkit.Input.InputActionRuleDualAxis::criteria
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___criteria_2;
public:
inline static int32_t get_offset_of_baseAction_0() { return static_cast<int32_t>(offsetof(InputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4, ___baseAction_0)); }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 get_baseAction_0() const { return ___baseAction_0; }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * get_address_of_baseAction_0() { return &___baseAction_0; }
inline void set_baseAction_0(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
___baseAction_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___baseAction_0))->___description_2), (void*)NULL);
}
inline static int32_t get_offset_of_ruleAction_1() { return static_cast<int32_t>(offsetof(InputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4, ___ruleAction_1)); }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 get_ruleAction_1() const { return ___ruleAction_1; }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * get_address_of_ruleAction_1() { return &___ruleAction_1; }
inline void set_ruleAction_1(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
___ruleAction_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___ruleAction_1))->___description_2), (void*)NULL);
}
inline static int32_t get_offset_of_criteria_2() { return static_cast<int32_t>(offsetof(InputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4, ___criteria_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_criteria_2() const { return ___criteria_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_criteria_2() { return &___criteria_2; }
inline void set_criteria_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___criteria_2 = value;
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleDualAxis
struct InputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4_marshaled_pinvoke
{
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_pinvoke ___baseAction_0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_pinvoke ___ruleAction_1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___criteria_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleDualAxis
struct InputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4_marshaled_com
{
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_com ___baseAction_0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_com ___ruleAction_1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___criteria_2;
};
// Microsoft.MixedReality.Toolkit.Input.InputActionRulePoseAxis
struct InputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652
{
public:
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRulePoseAxis::baseAction
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___baseAction_0;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRulePoseAxis::ruleAction
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___ruleAction_1;
// Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose Microsoft.MixedReality.Toolkit.Input.InputActionRulePoseAxis::criteria
MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 ___criteria_2;
public:
inline static int32_t get_offset_of_baseAction_0() { return static_cast<int32_t>(offsetof(InputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652, ___baseAction_0)); }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 get_baseAction_0() const { return ___baseAction_0; }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * get_address_of_baseAction_0() { return &___baseAction_0; }
inline void set_baseAction_0(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
___baseAction_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___baseAction_0))->___description_2), (void*)NULL);
}
inline static int32_t get_offset_of_ruleAction_1() { return static_cast<int32_t>(offsetof(InputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652, ___ruleAction_1)); }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 get_ruleAction_1() const { return ___ruleAction_1; }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * get_address_of_ruleAction_1() { return &___ruleAction_1; }
inline void set_ruleAction_1(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
___ruleAction_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___ruleAction_1))->___description_2), (void*)NULL);
}
inline static int32_t get_offset_of_criteria_2() { return static_cast<int32_t>(offsetof(InputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652, ___criteria_2)); }
inline MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 get_criteria_2() const { return ___criteria_2; }
inline MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 * get_address_of_criteria_2() { return &___criteria_2; }
inline void set_criteria_2(MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 value)
{
___criteria_2 = value;
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRulePoseAxis
struct InputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652_marshaled_pinvoke
{
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_pinvoke ___baseAction_0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_pinvoke ___ruleAction_1;
MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 ___criteria_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRulePoseAxis
struct InputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652_marshaled_com
{
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_com ___baseAction_0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_com ___ruleAction_1;
MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 ___criteria_2;
};
// Microsoft.MixedReality.Toolkit.Input.InputActionRuleQuaternionAxis
struct InputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409
{
public:
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleQuaternionAxis::baseAction
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___baseAction_0;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleQuaternionAxis::ruleAction
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___ruleAction_1;
// UnityEngine.Quaternion Microsoft.MixedReality.Toolkit.Input.InputActionRuleQuaternionAxis::criteria
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___criteria_2;
public:
inline static int32_t get_offset_of_baseAction_0() { return static_cast<int32_t>(offsetof(InputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409, ___baseAction_0)); }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 get_baseAction_0() const { return ___baseAction_0; }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * get_address_of_baseAction_0() { return &___baseAction_0; }
inline void set_baseAction_0(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
___baseAction_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___baseAction_0))->___description_2), (void*)NULL);
}
inline static int32_t get_offset_of_ruleAction_1() { return static_cast<int32_t>(offsetof(InputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409, ___ruleAction_1)); }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 get_ruleAction_1() const { return ___ruleAction_1; }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * get_address_of_ruleAction_1() { return &___ruleAction_1; }
inline void set_ruleAction_1(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
___ruleAction_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___ruleAction_1))->___description_2), (void*)NULL);
}
inline static int32_t get_offset_of_criteria_2() { return static_cast<int32_t>(offsetof(InputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409, ___criteria_2)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_criteria_2() const { return ___criteria_2; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_criteria_2() { return &___criteria_2; }
inline void set_criteria_2(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___criteria_2 = value;
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleQuaternionAxis
struct InputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409_marshaled_pinvoke
{
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_pinvoke ___baseAction_0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_pinvoke ___ruleAction_1;
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___criteria_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleQuaternionAxis
struct InputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409_marshaled_com
{
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_com ___baseAction_0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_com ___ruleAction_1;
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___criteria_2;
};
// Microsoft.MixedReality.Toolkit.Input.InputActionRuleSingleAxis
struct InputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316
{
public:
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleSingleAxis::baseAction
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___baseAction_0;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleSingleAxis::ruleAction
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___ruleAction_1;
// System.Single Microsoft.MixedReality.Toolkit.Input.InputActionRuleSingleAxis::criteria
float ___criteria_2;
public:
inline static int32_t get_offset_of_baseAction_0() { return static_cast<int32_t>(offsetof(InputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316, ___baseAction_0)); }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 get_baseAction_0() const { return ___baseAction_0; }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * get_address_of_baseAction_0() { return &___baseAction_0; }
inline void set_baseAction_0(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
___baseAction_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___baseAction_0))->___description_2), (void*)NULL);
}
inline static int32_t get_offset_of_ruleAction_1() { return static_cast<int32_t>(offsetof(InputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316, ___ruleAction_1)); }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 get_ruleAction_1() const { return ___ruleAction_1; }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * get_address_of_ruleAction_1() { return &___ruleAction_1; }
inline void set_ruleAction_1(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
___ruleAction_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___ruleAction_1))->___description_2), (void*)NULL);
}
inline static int32_t get_offset_of_criteria_2() { return static_cast<int32_t>(offsetof(InputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316, ___criteria_2)); }
inline float get_criteria_2() const { return ___criteria_2; }
inline float* get_address_of_criteria_2() { return &___criteria_2; }
inline void set_criteria_2(float value)
{
___criteria_2 = value;
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleSingleAxis
struct InputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316_marshaled_pinvoke
{
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_pinvoke ___baseAction_0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_pinvoke ___ruleAction_1;
float ___criteria_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleSingleAxis
struct InputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316_marshaled_com
{
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_com ___baseAction_0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_com ___ruleAction_1;
float ___criteria_2;
};
// Microsoft.MixedReality.Toolkit.Input.InputActionRuleVectorAxis
struct InputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572
{
public:
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleVectorAxis::baseAction
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___baseAction_0;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleVectorAxis::ruleAction
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___ruleAction_1;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Input.InputActionRuleVectorAxis::criteria
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___criteria_2;
public:
inline static int32_t get_offset_of_baseAction_0() { return static_cast<int32_t>(offsetof(InputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572, ___baseAction_0)); }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 get_baseAction_0() const { return ___baseAction_0; }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * get_address_of_baseAction_0() { return &___baseAction_0; }
inline void set_baseAction_0(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
___baseAction_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___baseAction_0))->___description_2), (void*)NULL);
}
inline static int32_t get_offset_of_ruleAction_1() { return static_cast<int32_t>(offsetof(InputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572, ___ruleAction_1)); }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 get_ruleAction_1() const { return ___ruleAction_1; }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * get_address_of_ruleAction_1() { return &___ruleAction_1; }
inline void set_ruleAction_1(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
___ruleAction_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___ruleAction_1))->___description_2), (void*)NULL);
}
inline static int32_t get_offset_of_criteria_2() { return static_cast<int32_t>(offsetof(InputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572, ___criteria_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_criteria_2() const { return ___criteria_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_criteria_2() { return &___criteria_2; }
inline void set_criteria_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___criteria_2 = value;
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleVectorAxis
struct InputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572_marshaled_pinvoke
{
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_pinvoke ___baseAction_0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_pinvoke ___ruleAction_1;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___criteria_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleVectorAxis
struct InputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572_marshaled_com
{
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_com ___baseAction_0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_com ___ruleAction_1;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___criteria_2;
};
// Microsoft.MixedReality.Toolkit.Input.MixedRealityGestureMapping
struct MixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074
{
public:
// System.String Microsoft.MixedReality.Toolkit.Input.MixedRealityGestureMapping::description
String_t* ___description_0;
// Microsoft.MixedReality.Toolkit.Input.GestureInputType Microsoft.MixedReality.Toolkit.Input.MixedRealityGestureMapping::gestureType
int32_t ___gestureType_1;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.MixedRealityGestureMapping::action
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___action_2;
public:
inline static int32_t get_offset_of_description_0() { return static_cast<int32_t>(offsetof(MixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074, ___description_0)); }
inline String_t* get_description_0() const { return ___description_0; }
inline String_t** get_address_of_description_0() { return &___description_0; }
inline void set_description_0(String_t* value)
{
___description_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___description_0), (void*)value);
}
inline static int32_t get_offset_of_gestureType_1() { return static_cast<int32_t>(offsetof(MixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074, ___gestureType_1)); }
inline int32_t get_gestureType_1() const { return ___gestureType_1; }
inline int32_t* get_address_of_gestureType_1() { return &___gestureType_1; }
inline void set_gestureType_1(int32_t value)
{
___gestureType_1 = value;
}
inline static int32_t get_offset_of_action_2() { return static_cast<int32_t>(offsetof(MixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074, ___action_2)); }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 get_action_2() const { return ___action_2; }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * get_address_of_action_2() { return &___action_2; }
inline void set_action_2(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
___action_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___action_2))->___description_2), (void*)NULL);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityGestureMapping
struct MixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074_marshaled_pinvoke
{
char* ___description_0;
int32_t ___gestureType_1;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_pinvoke ___action_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityGestureMapping
struct MixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074_marshaled_com
{
Il2CppChar* ___description_0;
int32_t ___gestureType_1;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_com ___action_2;
};
// Microsoft.MixedReality.Toolkit.Input.SpeechCommands
struct SpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B
{
public:
// System.String Microsoft.MixedReality.Toolkit.Input.SpeechCommands::localizationKey
String_t* ___localizationKey_0;
// System.String Microsoft.MixedReality.Toolkit.Input.SpeechCommands::localizedKeyword
String_t* ___localizedKeyword_1;
// System.String Microsoft.MixedReality.Toolkit.Input.SpeechCommands::keyword
String_t* ___keyword_2;
// UnityEngine.KeyCode Microsoft.MixedReality.Toolkit.Input.SpeechCommands::keyCode
int32_t ___keyCode_3;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.SpeechCommands::action
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___action_4;
public:
inline static int32_t get_offset_of_localizationKey_0() { return static_cast<int32_t>(offsetof(SpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B, ___localizationKey_0)); }
inline String_t* get_localizationKey_0() const { return ___localizationKey_0; }
inline String_t** get_address_of_localizationKey_0() { return &___localizationKey_0; }
inline void set_localizationKey_0(String_t* value)
{
___localizationKey_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___localizationKey_0), (void*)value);
}
inline static int32_t get_offset_of_localizedKeyword_1() { return static_cast<int32_t>(offsetof(SpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B, ___localizedKeyword_1)); }
inline String_t* get_localizedKeyword_1() const { return ___localizedKeyword_1; }
inline String_t** get_address_of_localizedKeyword_1() { return &___localizedKeyword_1; }
inline void set_localizedKeyword_1(String_t* value)
{
___localizedKeyword_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___localizedKeyword_1), (void*)value);
}
inline static int32_t get_offset_of_keyword_2() { return static_cast<int32_t>(offsetof(SpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B, ___keyword_2)); }
inline String_t* get_keyword_2() const { return ___keyword_2; }
inline String_t** get_address_of_keyword_2() { return &___keyword_2; }
inline void set_keyword_2(String_t* value)
{
___keyword_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keyword_2), (void*)value);
}
inline static int32_t get_offset_of_keyCode_3() { return static_cast<int32_t>(offsetof(SpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B, ___keyCode_3)); }
inline int32_t get_keyCode_3() const { return ___keyCode_3; }
inline int32_t* get_address_of_keyCode_3() { return &___keyCode_3; }
inline void set_keyCode_3(int32_t value)
{
___keyCode_3 = value;
}
inline static int32_t get_offset_of_action_4() { return static_cast<int32_t>(offsetof(SpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B, ___action_4)); }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 get_action_4() const { return ___action_4; }
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * get_address_of_action_4() { return &___action_4; }
inline void set_action_4(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
___action_4 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___action_4))->___description_2), (void*)NULL);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.SpeechCommands
struct SpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B_marshaled_pinvoke
{
char* ___localizationKey_0;
char* ___localizedKeyword_1;
char* ___keyword_2;
int32_t ___keyCode_3;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_pinvoke ___action_4;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.SpeechCommands
struct SpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B_marshaled_com
{
Il2CppChar* ___localizationKey_0;
Il2CppChar* ___localizedKeyword_1;
Il2CppChar* ___keyword_2;
int32_t ___keyCode_3;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_marshaled_com ___action_4;
};
// Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting
struct InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorField_FieldTypes Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Type
int32_t ___Type_0;
// System.String Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Label
String_t* ___Label_1;
// System.String Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Name
String_t* ___Name_2;
// System.String Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Tooltip
String_t* ___Tooltip_3;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::IntValue
int32_t ___IntValue_4;
// System.String Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::StringValue
String_t* ___StringValue_5;
// System.Single Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::FloatValue
float ___FloatValue_6;
// System.Boolean Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::BoolValue
bool ___BoolValue_7;
// UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::GameObjectValue
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___GameObjectValue_8;
// UnityEngine.ScriptableObject Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::ScriptableObjectValue
ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 * ___ScriptableObjectValue_9;
// UnityEngine.Object Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::ObjectValue
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___ObjectValue_10;
// UnityEngine.Material Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::MaterialValue
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___MaterialValue_11;
// UnityEngine.Texture Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::TextureValue
Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___TextureValue_12;
// UnityEngine.Color Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::ColorValue
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___ColorValue_13;
// UnityEngine.Vector2 Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Vector2Value
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Vector2Value_14;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Vector3Value
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___Vector3Value_15;
// UnityEngine.Vector4 Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Vector4Value
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___Vector4Value_16;
// UnityEngine.AnimationCurve Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::CurveValue
AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * ___CurveValue_17;
// UnityEngine.AudioClip Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::AudioClipValue
AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 * ___AudioClipValue_18;
// UnityEngine.Quaternion Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::QuaternionValue
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___QuaternionValue_19;
// UnityEngine.Events.UnityEvent Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::EventValue
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * ___EventValue_20;
// System.String[] Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Options
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___Options_21;
public:
inline static int32_t get_offset_of_Type_0() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___Type_0)); }
inline int32_t get_Type_0() const { return ___Type_0; }
inline int32_t* get_address_of_Type_0() { return &___Type_0; }
inline void set_Type_0(int32_t value)
{
___Type_0 = value;
}
inline static int32_t get_offset_of_Label_1() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___Label_1)); }
inline String_t* get_Label_1() const { return ___Label_1; }
inline String_t** get_address_of_Label_1() { return &___Label_1; }
inline void set_Label_1(String_t* value)
{
___Label_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Label_1), (void*)value);
}
inline static int32_t get_offset_of_Name_2() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___Name_2)); }
inline String_t* get_Name_2() const { return ___Name_2; }
inline String_t** get_address_of_Name_2() { return &___Name_2; }
inline void set_Name_2(String_t* value)
{
___Name_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Name_2), (void*)value);
}
inline static int32_t get_offset_of_Tooltip_3() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___Tooltip_3)); }
inline String_t* get_Tooltip_3() const { return ___Tooltip_3; }
inline String_t** get_address_of_Tooltip_3() { return &___Tooltip_3; }
inline void set_Tooltip_3(String_t* value)
{
___Tooltip_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Tooltip_3), (void*)value);
}
inline static int32_t get_offset_of_IntValue_4() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___IntValue_4)); }
inline int32_t get_IntValue_4() const { return ___IntValue_4; }
inline int32_t* get_address_of_IntValue_4() { return &___IntValue_4; }
inline void set_IntValue_4(int32_t value)
{
___IntValue_4 = value;
}
inline static int32_t get_offset_of_StringValue_5() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___StringValue_5)); }
inline String_t* get_StringValue_5() const { return ___StringValue_5; }
inline String_t** get_address_of_StringValue_5() { return &___StringValue_5; }
inline void set_StringValue_5(String_t* value)
{
___StringValue_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___StringValue_5), (void*)value);
}
inline static int32_t get_offset_of_FloatValue_6() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___FloatValue_6)); }
inline float get_FloatValue_6() const { return ___FloatValue_6; }
inline float* get_address_of_FloatValue_6() { return &___FloatValue_6; }
inline void set_FloatValue_6(float value)
{
___FloatValue_6 = value;
}
inline static int32_t get_offset_of_BoolValue_7() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___BoolValue_7)); }
inline bool get_BoolValue_7() const { return ___BoolValue_7; }
inline bool* get_address_of_BoolValue_7() { return &___BoolValue_7; }
inline void set_BoolValue_7(bool value)
{
___BoolValue_7 = value;
}
inline static int32_t get_offset_of_GameObjectValue_8() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___GameObjectValue_8)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_GameObjectValue_8() const { return ___GameObjectValue_8; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_GameObjectValue_8() { return &___GameObjectValue_8; }
inline void set_GameObjectValue_8(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___GameObjectValue_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___GameObjectValue_8), (void*)value);
}
inline static int32_t get_offset_of_ScriptableObjectValue_9() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___ScriptableObjectValue_9)); }
inline ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 * get_ScriptableObjectValue_9() const { return ___ScriptableObjectValue_9; }
inline ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 ** get_address_of_ScriptableObjectValue_9() { return &___ScriptableObjectValue_9; }
inline void set_ScriptableObjectValue_9(ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 * value)
{
___ScriptableObjectValue_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ScriptableObjectValue_9), (void*)value);
}
inline static int32_t get_offset_of_ObjectValue_10() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___ObjectValue_10)); }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * get_ObjectValue_10() const { return ___ObjectValue_10; }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** get_address_of_ObjectValue_10() { return &___ObjectValue_10; }
inline void set_ObjectValue_10(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value)
{
___ObjectValue_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ObjectValue_10), (void*)value);
}
inline static int32_t get_offset_of_MaterialValue_11() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___MaterialValue_11)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_MaterialValue_11() const { return ___MaterialValue_11; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_MaterialValue_11() { return &___MaterialValue_11; }
inline void set_MaterialValue_11(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___MaterialValue_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MaterialValue_11), (void*)value);
}
inline static int32_t get_offset_of_TextureValue_12() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___TextureValue_12)); }
inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * get_TextureValue_12() const { return ___TextureValue_12; }
inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 ** get_address_of_TextureValue_12() { return &___TextureValue_12; }
inline void set_TextureValue_12(Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * value)
{
___TextureValue_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TextureValue_12), (void*)value);
}
inline static int32_t get_offset_of_ColorValue_13() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___ColorValue_13)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_ColorValue_13() const { return ___ColorValue_13; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_ColorValue_13() { return &___ColorValue_13; }
inline void set_ColorValue_13(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___ColorValue_13 = value;
}
inline static int32_t get_offset_of_Vector2Value_14() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___Vector2Value_14)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_Vector2Value_14() const { return ___Vector2Value_14; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_Vector2Value_14() { return &___Vector2Value_14; }
inline void set_Vector2Value_14(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___Vector2Value_14 = value;
}
inline static int32_t get_offset_of_Vector3Value_15() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___Vector3Value_15)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_Vector3Value_15() const { return ___Vector3Value_15; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_Vector3Value_15() { return &___Vector3Value_15; }
inline void set_Vector3Value_15(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___Vector3Value_15 = value;
}
inline static int32_t get_offset_of_Vector4Value_16() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___Vector4Value_16)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_Vector4Value_16() const { return ___Vector4Value_16; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_Vector4Value_16() { return &___Vector4Value_16; }
inline void set_Vector4Value_16(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___Vector4Value_16 = value;
}
inline static int32_t get_offset_of_CurveValue_17() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___CurveValue_17)); }
inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * get_CurveValue_17() const { return ___CurveValue_17; }
inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C ** get_address_of_CurveValue_17() { return &___CurveValue_17; }
inline void set_CurveValue_17(AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * value)
{
___CurveValue_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CurveValue_17), (void*)value);
}
inline static int32_t get_offset_of_AudioClipValue_18() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___AudioClipValue_18)); }
inline AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 * get_AudioClipValue_18() const { return ___AudioClipValue_18; }
inline AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 ** get_address_of_AudioClipValue_18() { return &___AudioClipValue_18; }
inline void set_AudioClipValue_18(AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 * value)
{
___AudioClipValue_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___AudioClipValue_18), (void*)value);
}
inline static int32_t get_offset_of_QuaternionValue_19() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___QuaternionValue_19)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_QuaternionValue_19() const { return ___QuaternionValue_19; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_QuaternionValue_19() { return &___QuaternionValue_19; }
inline void set_QuaternionValue_19(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___QuaternionValue_19 = value;
}
inline static int32_t get_offset_of_EventValue_20() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___EventValue_20)); }
inline UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * get_EventValue_20() const { return ___EventValue_20; }
inline UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F ** get_address_of_EventValue_20() { return &___EventValue_20; }
inline void set_EventValue_20(UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * value)
{
___EventValue_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EventValue_20), (void*)value);
}
inline static int32_t get_offset_of_Options_21() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3, ___Options_21)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_Options_21() const { return ___Options_21; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_Options_21() { return &___Options_21; }
inline void set_Options_21(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___Options_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Options_21), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting
struct InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_marshaled_pinvoke
{
int32_t ___Type_0;
char* ___Label_1;
char* ___Name_2;
char* ___Tooltip_3;
int32_t ___IntValue_4;
char* ___StringValue_5;
float ___FloatValue_6;
int32_t ___BoolValue_7;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___GameObjectValue_8;
ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_pinvoke ___ScriptableObjectValue_9;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke ___ObjectValue_10;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___MaterialValue_11;
Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___TextureValue_12;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___ColorValue_13;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Vector2Value_14;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___Vector3Value_15;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___Vector4Value_16;
AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C_marshaled_pinvoke ___CurveValue_17;
AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 * ___AudioClipValue_18;
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___QuaternionValue_19;
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * ___EventValue_20;
char** ___Options_21;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting
struct InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_marshaled_com
{
int32_t ___Type_0;
Il2CppChar* ___Label_1;
Il2CppChar* ___Name_2;
Il2CppChar* ___Tooltip_3;
int32_t ___IntValue_4;
Il2CppChar* ___StringValue_5;
float ___FloatValue_6;
int32_t ___BoolValue_7;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___GameObjectValue_8;
ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_com* ___ScriptableObjectValue_9;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com* ___ObjectValue_10;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___MaterialValue_11;
Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___TextureValue_12;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___ColorValue_13;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Vector2Value_14;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___Vector3Value_15;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___Vector4Value_16;
AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C_marshaled_com* ___CurveValue_17;
AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 * ___AudioClipValue_18;
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___QuaternionValue_19;
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * ___EventValue_20;
Il2CppChar** ___Options_21;
};
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.ArgumentException::m_paramName
String_t* ___m_paramName_17;
public:
inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); }
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
inline void set_m_paramName_17(String_t* value)
{
___m_paramName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Boolean>
struct TraceLoggingTypeInfo_1_t44A3558595F7443F6B966F33257A224830399FBF : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t44A3558595F7443F6B966F33257A224830399FBF_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t44A3558595F7443F6B966F33257A224830399FBF * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t44A3558595F7443F6B966F33257A224830399FBF_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t44A3558595F7443F6B966F33257A224830399FBF * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t44A3558595F7443F6B966F33257A224830399FBF ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t44A3558595F7443F6B966F33257A224830399FBF * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Boolean[]>
struct TraceLoggingTypeInfo_1_tD9D7BC2E7E2496AA10DF94F33F3D3FEF4B0DF439 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_tD9D7BC2E7E2496AA10DF94F33F3D3FEF4B0DF439_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_tD9D7BC2E7E2496AA10DF94F33F3D3FEF4B0DF439 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tD9D7BC2E7E2496AA10DF94F33F3D3FEF4B0DF439_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_tD9D7BC2E7E2496AA10DF94F33F3D3FEF4B0DF439 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_tD9D7BC2E7E2496AA10DF94F33F3D3FEF4B0DF439 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_tD9D7BC2E7E2496AA10DF94F33F3D3FEF4B0DF439 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Byte>
struct TraceLoggingTypeInfo_1_tCBD6C96687DF0BC3062B1799E6681B8263380E86 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_tCBD6C96687DF0BC3062B1799E6681B8263380E86_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_tCBD6C96687DF0BC3062B1799E6681B8263380E86 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tCBD6C96687DF0BC3062B1799E6681B8263380E86_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_tCBD6C96687DF0BC3062B1799E6681B8263380E86 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_tCBD6C96687DF0BC3062B1799E6681B8263380E86 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_tCBD6C96687DF0BC3062B1799E6681B8263380E86 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Byte[]>
struct TraceLoggingTypeInfo_1_tA0864DED98D26878CB496D7E7F9BF43F83221382 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_tA0864DED98D26878CB496D7E7F9BF43F83221382_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_tA0864DED98D26878CB496D7E7F9BF43F83221382 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tA0864DED98D26878CB496D7E7F9BF43F83221382_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_tA0864DED98D26878CB496D7E7F9BF43F83221382 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_tA0864DED98D26878CB496D7E7F9BF43F83221382 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_tA0864DED98D26878CB496D7E7F9BF43F83221382 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Char>
struct TraceLoggingTypeInfo_1_t3D0A74BA194E38AFBFDBDC195AC5DB99953B14B9 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t3D0A74BA194E38AFBFDBDC195AC5DB99953B14B9_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t3D0A74BA194E38AFBFDBDC195AC5DB99953B14B9 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t3D0A74BA194E38AFBFDBDC195AC5DB99953B14B9_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t3D0A74BA194E38AFBFDBDC195AC5DB99953B14B9 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t3D0A74BA194E38AFBFDBDC195AC5DB99953B14B9 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t3D0A74BA194E38AFBFDBDC195AC5DB99953B14B9 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Char[]>
struct TraceLoggingTypeInfo_1_t5F5F3269F7D9A46868DB141EC45D5772ED7378D6 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t5F5F3269F7D9A46868DB141EC45D5772ED7378D6_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t5F5F3269F7D9A46868DB141EC45D5772ED7378D6 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t5F5F3269F7D9A46868DB141EC45D5772ED7378D6_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t5F5F3269F7D9A46868DB141EC45D5772ED7378D6 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t5F5F3269F7D9A46868DB141EC45D5772ED7378D6 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t5F5F3269F7D9A46868DB141EC45D5772ED7378D6 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.DateTime>
struct TraceLoggingTypeInfo_1_t9AF464FA184B748D655562038668C5F8475551A6 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t9AF464FA184B748D655562038668C5F8475551A6_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t9AF464FA184B748D655562038668C5F8475551A6 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t9AF464FA184B748D655562038668C5F8475551A6_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t9AF464FA184B748D655562038668C5F8475551A6 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t9AF464FA184B748D655562038668C5F8475551A6 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t9AF464FA184B748D655562038668C5F8475551A6 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.DateTimeOffset>
struct TraceLoggingTypeInfo_1_tD91E7DBA28F2951512AEDFDDA3746A19118DBCBD : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_tD91E7DBA28F2951512AEDFDDA3746A19118DBCBD_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_tD91E7DBA28F2951512AEDFDDA3746A19118DBCBD * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tD91E7DBA28F2951512AEDFDDA3746A19118DBCBD_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_tD91E7DBA28F2951512AEDFDDA3746A19118DBCBD * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_tD91E7DBA28F2951512AEDFDDA3746A19118DBCBD ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_tD91E7DBA28F2951512AEDFDDA3746A19118DBCBD * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Decimal>
struct TraceLoggingTypeInfo_1_tD42DBA2904B54E850888E5E24588D16C4304AEAB : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_tD42DBA2904B54E850888E5E24588D16C4304AEAB_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_tD42DBA2904B54E850888E5E24588D16C4304AEAB * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tD42DBA2904B54E850888E5E24588D16C4304AEAB_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_tD42DBA2904B54E850888E5E24588D16C4304AEAB * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_tD42DBA2904B54E850888E5E24588D16C4304AEAB ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_tD42DBA2904B54E850888E5E24588D16C4304AEAB * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Diagnostics.Tracing.EmptyStruct>
struct TraceLoggingTypeInfo_1_t4C4D167E15CD9CA992F69A3B66F341F032127905 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t4C4D167E15CD9CA992F69A3B66F341F032127905_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t4C4D167E15CD9CA992F69A3B66F341F032127905 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t4C4D167E15CD9CA992F69A3B66F341F032127905_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t4C4D167E15CD9CA992F69A3B66F341F032127905 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t4C4D167E15CD9CA992F69A3B66F341F032127905 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t4C4D167E15CD9CA992F69A3B66F341F032127905 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Double>
struct TraceLoggingTypeInfo_1_t0E0E521EBE71719E6D4F118BB2218284ED0F87CA : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t0E0E521EBE71719E6D4F118BB2218284ED0F87CA_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t0E0E521EBE71719E6D4F118BB2218284ED0F87CA * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t0E0E521EBE71719E6D4F118BB2218284ED0F87CA_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t0E0E521EBE71719E6D4F118BB2218284ED0F87CA * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t0E0E521EBE71719E6D4F118BB2218284ED0F87CA ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t0E0E521EBE71719E6D4F118BB2218284ED0F87CA * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Double[]>
struct TraceLoggingTypeInfo_1_t5E18EDFEAC3B9B97B2E90215967395ABE9E96531 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t5E18EDFEAC3B9B97B2E90215967395ABE9E96531_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t5E18EDFEAC3B9B97B2E90215967395ABE9E96531 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t5E18EDFEAC3B9B97B2E90215967395ABE9E96531_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t5E18EDFEAC3B9B97B2E90215967395ABE9E96531 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t5E18EDFEAC3B9B97B2E90215967395ABE9E96531 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t5E18EDFEAC3B9B97B2E90215967395ABE9E96531 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid>
struct TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid[]>
struct TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16>
struct TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16[]>
struct TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32>
struct TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32[]>
struct TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64>
struct TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64[]>
struct TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr>
struct TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr[]>
struct TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte>
struct TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte[]>
struct TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single>
struct TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single[]>
struct TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.String>
struct TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.TimeSpan>
struct TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16>
struct TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16[]>
struct TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32>
struct TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32[]>
struct TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64>
struct TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64[]>
struct TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr>
struct TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr[]>
struct TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F
{
public:
public:
};
struct TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479_StaticFields
{
public:
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance
TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 * ___instance_6;
public:
inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479_StaticFields, ___instance_6)); }
inline TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 * get_instance_6() const { return ___instance_6; }
inline TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 ** get_address_of_instance_6() { return &___instance_6; }
inline void set_instance_6(TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 * value)
{
___instance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value);
}
};
// System.Func`2<System.Object,System.Boolean>
struct Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<UnityEngine.Ray,System.Boolean>
struct Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE : public MulticastDelegate_t
{
public:
public:
};
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.Predicate`1<System.Object>
struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 : public MulticastDelegate_t
{
public:
public:
};
// System.RankException
struct RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
public:
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
// System.Object System.ArgumentOutOfRangeException::m_actualValue
RuntimeObject * ___m_actualValue_19;
public:
inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); }
inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; }
inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; }
inline void set_m_actualValue_19(RuntimeObject * value)
{
___m_actualValue_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value);
}
};
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields
{
public:
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage
String_t* ____rangeMessage_18;
public:
inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); }
inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; }
inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; }
inline void set__rangeMessage_18(String_t* value)
{
____rangeMessage_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value);
}
};
// System.Diagnostics.Tracing.BooleanArrayTypeInfo
struct BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663 : public TraceLoggingTypeInfo_1_tD9D7BC2E7E2496AA10DF94F33F3D3FEF4B0DF439
{
public:
public:
};
// System.Diagnostics.Tracing.BooleanTypeInfo
struct BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772 : public TraceLoggingTypeInfo_1_t44A3558595F7443F6B966F33257A224830399FBF
{
public:
public:
};
// System.Diagnostics.Tracing.ByteArrayTypeInfo
struct ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB : public TraceLoggingTypeInfo_1_tA0864DED98D26878CB496D7E7F9BF43F83221382
{
public:
public:
};
// System.Diagnostics.Tracing.ByteTypeInfo
struct ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F : public TraceLoggingTypeInfo_1_tCBD6C96687DF0BC3062B1799E6681B8263380E86
{
public:
public:
};
// System.Diagnostics.Tracing.CharArrayTypeInfo
struct CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7 : public TraceLoggingTypeInfo_1_t5F5F3269F7D9A46868DB141EC45D5772ED7378D6
{
public:
public:
};
// System.Diagnostics.Tracing.CharTypeInfo
struct CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1 : public TraceLoggingTypeInfo_1_t3D0A74BA194E38AFBFDBDC195AC5DB99953B14B9
{
public:
public:
};
// System.Diagnostics.Tracing.DateTimeOffsetTypeInfo
struct DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7 : public TraceLoggingTypeInfo_1_tD91E7DBA28F2951512AEDFDDA3746A19118DBCBD
{
public:
public:
};
// System.Diagnostics.Tracing.DateTimeTypeInfo
struct DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405 : public TraceLoggingTypeInfo_1_t9AF464FA184B748D655562038668C5F8475551A6
{
public:
public:
};
// System.Diagnostics.Tracing.DecimalTypeInfo
struct DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85 : public TraceLoggingTypeInfo_1_tD42DBA2904B54E850888E5E24588D16C4304AEAB
{
public:
public:
};
// System.Diagnostics.Tracing.DoubleArrayTypeInfo
struct DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2 : public TraceLoggingTypeInfo_1_t5E18EDFEAC3B9B97B2E90215967395ABE9E96531
{
public:
public:
};
// System.Diagnostics.Tracing.DoubleTypeInfo
struct DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73 : public TraceLoggingTypeInfo_1_t0E0E521EBE71719E6D4F118BB2218284ED0F87CA
{
public:
public:
};
// System.Diagnostics.Tracing.EnumByteTypeInfo`1<System.UInt16>
struct EnumByteTypeInfo_1_t2426F2FF8AD1BF873E1EF906860089C3C7F87CEF : public TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6
{
public:
public:
};
// System.Diagnostics.Tracing.EnumByteTypeInfo`1<System.UInt32>
struct EnumByteTypeInfo_1_tBFEE9F7DAF8B6B0E45A7A27A8D47C97A5F200586 : public TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10
{
public:
public:
};
// System.Diagnostics.Tracing.EnumByteTypeInfo`1<System.UInt64>
struct EnumByteTypeInfo_1_t469284C0B09A0494903221C6D9322AB16D7AFD90 : public TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C
{
public:
public:
};
// System.Diagnostics.Tracing.EnumByteTypeInfo`1<System.UIntPtr>
struct EnumByteTypeInfo_1_t8BB4D3547CA684D35E404C6CAD1D21F25350991E : public TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330
{
public:
public:
};
// System.Diagnostics.Tracing.EnumInt16TypeInfo`1<System.UInt16>
struct EnumInt16TypeInfo_1_tA8B3964BCEB28ADDCC55BD974ED12863DE4D0F4E : public TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6
{
public:
public:
};
// System.Diagnostics.Tracing.EnumInt16TypeInfo`1<System.UInt32>
struct EnumInt16TypeInfo_1_t90D5ABA45C93723A818060042673370948AE1371 : public TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10
{
public:
public:
};
// System.Diagnostics.Tracing.EnumInt16TypeInfo`1<System.UInt64>
struct EnumInt16TypeInfo_1_tC7515DC021EFF6F3FEDA6B01287C2E0FB3B61330 : public TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C
{
public:
public:
};
// System.Diagnostics.Tracing.EnumInt16TypeInfo`1<System.UIntPtr>
struct EnumInt16TypeInfo_1_t5AB64395753EBEA15960519F6400CA8B6FC14075 : public TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330
{
public:
public:
};
// System.Diagnostics.Tracing.EnumInt32TypeInfo`1<System.UInt16>
struct EnumInt32TypeInfo_1_t02B0B05CC07BB3AAEFAB65576686F8A401A7C9C2 : public TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6
{
public:
public:
};
// System.Diagnostics.Tracing.EnumInt32TypeInfo`1<System.UInt32>
struct EnumInt32TypeInfo_1_t5C17258B1E6484D7BA2C3A5D9F38DBF0C077D965 : public TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10
{
public:
public:
};
// System.Diagnostics.Tracing.EnumInt32TypeInfo`1<System.UInt64>
struct EnumInt32TypeInfo_1_tE0D43493118FD54F47A90FED58F8214C46278166 : public TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C
{
public:
public:
};
// System.Diagnostics.Tracing.EnumInt32TypeInfo`1<System.UIntPtr>
struct EnumInt32TypeInfo_1_tC25EBD5CFF82BD17C69D63D36A5467E57303EEF9 : public TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330
{
public:
public:
};
// System.Diagnostics.Tracing.EnumInt64TypeInfo`1<System.UInt16>
struct EnumInt64TypeInfo_1_tBF32FF9A7067C404B7B5B5FD0FA617F3A60F2968 : public TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6
{
public:
public:
};
// System.Diagnostics.Tracing.EnumInt64TypeInfo`1<System.UInt32>
struct EnumInt64TypeInfo_1_tAFED710C98DACAE84EB22580ED2079C472D09840 : public TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10
{
public:
public:
};
// System.Diagnostics.Tracing.EnumInt64TypeInfo`1<System.UInt64>
struct EnumInt64TypeInfo_1_tC95C2272C8D7B0C51ABAFA97765A303D7C309A63 : public TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C
{
public:
public:
};
// System.Diagnostics.Tracing.EnumInt64TypeInfo`1<System.UIntPtr>
struct EnumInt64TypeInfo_1_t7958B8992318184766E3C45773E33CBC676C0E96 : public TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330
{
public:
public:
};
// System.Diagnostics.Tracing.EnumSByteTypeInfo`1<System.UInt16>
struct EnumSByteTypeInfo_1_t6E9DA6CD37B50D87B3F6A18FB0994852AEDD80B7 : public TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6
{
public:
public:
};
// System.Diagnostics.Tracing.EnumSByteTypeInfo`1<System.UInt32>
struct EnumSByteTypeInfo_1_tAEEF1924CBD34AE1F55DDB2774EA22CEBCB29E30 : public TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10
{
public:
public:
};
// System.Diagnostics.Tracing.EnumSByteTypeInfo`1<System.UInt64>
struct EnumSByteTypeInfo_1_t0D08BC7E2A706102C5F5884C967CAE1D60AFEE9C : public TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C
{
public:
public:
};
// System.Diagnostics.Tracing.EnumSByteTypeInfo`1<System.UIntPtr>
struct EnumSByteTypeInfo_1_tD2920E09384E5F778EF760F4FA29970EFE03DA89 : public TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330
{
public:
public:
};
// System.Diagnostics.Tracing.EnumUInt16TypeInfo`1<System.UInt16>
struct EnumUInt16TypeInfo_1_tA3D5A7672FD5EDFAD4935ECA329A2C7E7B143AD7 : public TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6
{
public:
public:
};
// System.Diagnostics.Tracing.EnumUInt16TypeInfo`1<System.UInt32>
struct EnumUInt16TypeInfo_1_t542B0805A6994C007A37A16049B47E47EEA26411 : public TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10
{
public:
public:
};
// System.Diagnostics.Tracing.EnumUInt16TypeInfo`1<System.UInt64>
struct EnumUInt16TypeInfo_1_tAEA9CF6482001D4F456C1B2869309BCD3D0494AF : public TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C
{
public:
public:
};
// System.Diagnostics.Tracing.EnumUInt16TypeInfo`1<System.UIntPtr>
struct EnumUInt16TypeInfo_1_t41858CAB5C37D081E5B80ED774E72C62CD2E3BC6 : public TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330
{
public:
public:
};
// System.Diagnostics.Tracing.EnumUInt32TypeInfo`1<System.UInt16>
struct EnumUInt32TypeInfo_1_t191EF110CEC450614F0299889E6BCEB7C0486D67 : public TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6
{
public:
public:
};
// System.Diagnostics.Tracing.EnumUInt32TypeInfo`1<System.UInt32>
struct EnumUInt32TypeInfo_1_t60DB1748BBD22F544BA2323E6B33A584CFA5272D : public TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10
{
public:
public:
};
// System.Diagnostics.Tracing.EnumUInt32TypeInfo`1<System.UInt64>
struct EnumUInt32TypeInfo_1_t2A568E2CE093EFE63CC3E1C0677C70C63480587E : public TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C
{
public:
public:
};
// System.Diagnostics.Tracing.EnumUInt32TypeInfo`1<System.UIntPtr>
struct EnumUInt32TypeInfo_1_tC96E16DA9820EBE9F359D7815955ED3C563F6182 : public TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330
{
public:
public:
};
// System.Diagnostics.Tracing.EnumUInt64TypeInfo`1<System.UInt16>
struct EnumUInt64TypeInfo_1_tAB74E0D25E85804F5599E22CD0CFF1E41808A293 : public TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6
{
public:
public:
};
// System.Diagnostics.Tracing.EnumUInt64TypeInfo`1<System.UInt32>
struct EnumUInt64TypeInfo_1_t1DE63D5E64371D09215D2A077FB9D51DCE30B23C : public TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10
{
public:
public:
};
// System.Diagnostics.Tracing.EnumUInt64TypeInfo`1<System.UInt64>
struct EnumUInt64TypeInfo_1_t393BB303A6262037A59A952165547C1DF8557A22 : public TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C
{
public:
public:
};
// System.Diagnostics.Tracing.EnumUInt64TypeInfo`1<System.UIntPtr>
struct EnumUInt64TypeInfo_1_tF5516549D86A1072DEFFFE9457AF8640773F42B9 : public TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330
{
public:
public:
};
// System.Diagnostics.Tracing.GuidArrayTypeInfo
struct GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 : public TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81
{
public:
public:
};
// System.Diagnostics.Tracing.GuidTypeInfo
struct GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED : public TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4
{
public:
public:
};
// System.Diagnostics.Tracing.Int16ArrayTypeInfo
struct Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 : public TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0
{
public:
public:
};
// System.Diagnostics.Tracing.Int16TypeInfo
struct Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B : public TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363
{
public:
public:
};
// System.Diagnostics.Tracing.Int32ArrayTypeInfo
struct Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C : public TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589
{
public:
public:
};
// System.Diagnostics.Tracing.Int32TypeInfo
struct Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C : public TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C
{
public:
public:
};
// System.Diagnostics.Tracing.Int64ArrayTypeInfo
struct Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC : public TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD
{
public:
public:
};
// System.Diagnostics.Tracing.Int64TypeInfo
struct Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 : public TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265
{
public:
public:
};
// System.Diagnostics.Tracing.IntPtrArrayTypeInfo
struct IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 : public TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6
{
public:
public:
};
// System.Diagnostics.Tracing.IntPtrTypeInfo
struct IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 : public TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1
{
public:
public:
};
// System.Diagnostics.Tracing.InvokeTypeInfo`1<System.UInt16>
struct InvokeTypeInfo_1_t6B9C75BCD0207440A286652E522B6DBED018EED4 : public TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6
{
public:
// System.Diagnostics.Tracing.PropertyAnalysis[] System.Diagnostics.Tracing.InvokeTypeInfo`1::properties
PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* ___properties_7;
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType>[] System.Diagnostics.Tracing.InvokeTypeInfo`1::accessors
PropertyAccessor_1U5BU5D_t3FF9EB537E7BA2BF324F46D2E1C584FAE5E7D96F* ___accessors_8;
public:
inline static int32_t get_offset_of_properties_7() { return static_cast<int32_t>(offsetof(InvokeTypeInfo_1_t6B9C75BCD0207440A286652E522B6DBED018EED4, ___properties_7)); }
inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* get_properties_7() const { return ___properties_7; }
inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB** get_address_of_properties_7() { return &___properties_7; }
inline void set_properties_7(PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* value)
{
___properties_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___properties_7), (void*)value);
}
inline static int32_t get_offset_of_accessors_8() { return static_cast<int32_t>(offsetof(InvokeTypeInfo_1_t6B9C75BCD0207440A286652E522B6DBED018EED4, ___accessors_8)); }
inline PropertyAccessor_1U5BU5D_t3FF9EB537E7BA2BF324F46D2E1C584FAE5E7D96F* get_accessors_8() const { return ___accessors_8; }
inline PropertyAccessor_1U5BU5D_t3FF9EB537E7BA2BF324F46D2E1C584FAE5E7D96F** get_address_of_accessors_8() { return &___accessors_8; }
inline void set_accessors_8(PropertyAccessor_1U5BU5D_t3FF9EB537E7BA2BF324F46D2E1C584FAE5E7D96F* value)
{
___accessors_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___accessors_8), (void*)value);
}
};
// System.Diagnostics.Tracing.InvokeTypeInfo`1<System.UInt32>
struct InvokeTypeInfo_1_t2F3A70F6E6F59DBAE49D4F33EBCEB46D25F98BF6 : public TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10
{
public:
// System.Diagnostics.Tracing.PropertyAnalysis[] System.Diagnostics.Tracing.InvokeTypeInfo`1::properties
PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* ___properties_7;
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType>[] System.Diagnostics.Tracing.InvokeTypeInfo`1::accessors
PropertyAccessor_1U5BU5D_tF57AE5C1C779C05869943B1C16C894A2836E9C24* ___accessors_8;
public:
inline static int32_t get_offset_of_properties_7() { return static_cast<int32_t>(offsetof(InvokeTypeInfo_1_t2F3A70F6E6F59DBAE49D4F33EBCEB46D25F98BF6, ___properties_7)); }
inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* get_properties_7() const { return ___properties_7; }
inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB** get_address_of_properties_7() { return &___properties_7; }
inline void set_properties_7(PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* value)
{
___properties_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___properties_7), (void*)value);
}
inline static int32_t get_offset_of_accessors_8() { return static_cast<int32_t>(offsetof(InvokeTypeInfo_1_t2F3A70F6E6F59DBAE49D4F33EBCEB46D25F98BF6, ___accessors_8)); }
inline PropertyAccessor_1U5BU5D_tF57AE5C1C779C05869943B1C16C894A2836E9C24* get_accessors_8() const { return ___accessors_8; }
inline PropertyAccessor_1U5BU5D_tF57AE5C1C779C05869943B1C16C894A2836E9C24** get_address_of_accessors_8() { return &___accessors_8; }
inline void set_accessors_8(PropertyAccessor_1U5BU5D_tF57AE5C1C779C05869943B1C16C894A2836E9C24* value)
{
___accessors_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___accessors_8), (void*)value);
}
};
// System.Diagnostics.Tracing.InvokeTypeInfo`1<System.UInt64>
struct InvokeTypeInfo_1_tC4337A985E039756D5B881107DD3104C636034C1 : public TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C
{
public:
// System.Diagnostics.Tracing.PropertyAnalysis[] System.Diagnostics.Tracing.InvokeTypeInfo`1::properties
PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* ___properties_7;
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType>[] System.Diagnostics.Tracing.InvokeTypeInfo`1::accessors
PropertyAccessor_1U5BU5D_tEA8F518DB9B112A0A17907C845D7710346E62001* ___accessors_8;
public:
inline static int32_t get_offset_of_properties_7() { return static_cast<int32_t>(offsetof(InvokeTypeInfo_1_tC4337A985E039756D5B881107DD3104C636034C1, ___properties_7)); }
inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* get_properties_7() const { return ___properties_7; }
inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB** get_address_of_properties_7() { return &___properties_7; }
inline void set_properties_7(PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* value)
{
___properties_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___properties_7), (void*)value);
}
inline static int32_t get_offset_of_accessors_8() { return static_cast<int32_t>(offsetof(InvokeTypeInfo_1_tC4337A985E039756D5B881107DD3104C636034C1, ___accessors_8)); }
inline PropertyAccessor_1U5BU5D_tEA8F518DB9B112A0A17907C845D7710346E62001* get_accessors_8() const { return ___accessors_8; }
inline PropertyAccessor_1U5BU5D_tEA8F518DB9B112A0A17907C845D7710346E62001** get_address_of_accessors_8() { return &___accessors_8; }
inline void set_accessors_8(PropertyAccessor_1U5BU5D_tEA8F518DB9B112A0A17907C845D7710346E62001* value)
{
___accessors_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___accessors_8), (void*)value);
}
};
// System.Diagnostics.Tracing.InvokeTypeInfo`1<System.UIntPtr>
struct InvokeTypeInfo_1_t785BF9ED28135501B652EC2B780AC3E62225125A : public TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330
{
public:
// System.Diagnostics.Tracing.PropertyAnalysis[] System.Diagnostics.Tracing.InvokeTypeInfo`1::properties
PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* ___properties_7;
// System.Diagnostics.Tracing.PropertyAccessor`1<ContainerType>[] System.Diagnostics.Tracing.InvokeTypeInfo`1::accessors
PropertyAccessor_1U5BU5D_t77A35E35098D46F12371B5D926D9EAB7513E01A3* ___accessors_8;
public:
inline static int32_t get_offset_of_properties_7() { return static_cast<int32_t>(offsetof(InvokeTypeInfo_1_t785BF9ED28135501B652EC2B780AC3E62225125A, ___properties_7)); }
inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* get_properties_7() const { return ___properties_7; }
inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB** get_address_of_properties_7() { return &___properties_7; }
inline void set_properties_7(PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* value)
{
___properties_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___properties_7), (void*)value);
}
inline static int32_t get_offset_of_accessors_8() { return static_cast<int32_t>(offsetof(InvokeTypeInfo_1_t785BF9ED28135501B652EC2B780AC3E62225125A, ___accessors_8)); }
inline PropertyAccessor_1U5BU5D_t77A35E35098D46F12371B5D926D9EAB7513E01A3* get_accessors_8() const { return ___accessors_8; }
inline PropertyAccessor_1U5BU5D_t77A35E35098D46F12371B5D926D9EAB7513E01A3** get_address_of_accessors_8() { return &___accessors_8; }
inline void set_accessors_8(PropertyAccessor_1U5BU5D_t77A35E35098D46F12371B5D926D9EAB7513E01A3* value)
{
___accessors_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___accessors_8), (void*)value);
}
};
// System.Diagnostics.Tracing.NullTypeInfo`1<System.Diagnostics.Tracing.EmptyStruct>
struct NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D : public TraceLoggingTypeInfo_1_t4C4D167E15CD9CA992F69A3B66F341F032127905
{
public:
public:
};
// System.Diagnostics.Tracing.SByteArrayTypeInfo
struct SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 : public TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E
{
public:
public:
};
// System.Diagnostics.Tracing.SByteTypeInfo
struct SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C : public TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794
{
public:
public:
};
// System.Diagnostics.Tracing.SingleArrayTypeInfo
struct SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 : public TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E
{
public:
public:
};
// System.Diagnostics.Tracing.SingleTypeInfo
struct SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 : public TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD
{
public:
public:
};
// System.Diagnostics.Tracing.StringTypeInfo
struct StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 : public TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D
{
public:
public:
};
// System.Diagnostics.Tracing.TimeSpanTypeInfo
struct TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA : public TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD
{
public:
public:
};
// System.Diagnostics.Tracing.UInt16ArrayTypeInfo
struct UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE : public TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354
{
public:
public:
};
// System.Diagnostics.Tracing.UInt16TypeInfo
struct UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E : public TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6
{
public:
public:
};
// System.Diagnostics.Tracing.UInt32ArrayTypeInfo
struct UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC : public TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB
{
public:
public:
};
// System.Diagnostics.Tracing.UInt32TypeInfo
struct UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 : public TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10
{
public:
public:
};
// System.Diagnostics.Tracing.UInt64ArrayTypeInfo
struct UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 : public TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606
{
public:
public:
};
// System.Diagnostics.Tracing.UInt64TypeInfo
struct UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E : public TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C
{
public:
public:
};
// System.Diagnostics.Tracing.UIntPtrArrayTypeInfo
struct UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C : public TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479
{
public:
public:
};
// System.Diagnostics.Tracing.UIntPtrTypeInfo
struct UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D : public TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F : public RuntimeArray
{
public:
ALIGN_FIELD (8) Type_t * m_Items[1];
public:
inline Type_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Type_t ** 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, Type_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** 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, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Boundary.Edge[]
struct EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F m_Items[1];
public:
inline Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F * 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, Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F value)
{
m_Items[index] = value;
}
};
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction[]
struct MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B : public RuntimeArray
{
public:
ALIGN_FIELD (8) MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 m_Items[1];
public:
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * 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, MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___description_2), (void*)NULL);
}
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___description_2), (void*)NULL);
}
};
// Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer[]
struct BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A : public RuntimeArray
{
public:
ALIGN_FIELD (8) BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B m_Items[1];
public:
inline BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B * 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, BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Block_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Renderer_1), (void*)NULL);
#endif
}
inline BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Block_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Renderer_1), (void*)NULL);
#endif
}
};
// Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings[]
struct InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5 : public RuntimeArray
{
public:
ALIGN_FIELD (8) InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D m_Items[1];
public:
inline InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D * 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, InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___AssemblyQualifiedName_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Type_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Theme_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Properties_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___History_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Easing_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___ThemeTarget_9), (void*)NULL);
#endif
}
inline InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___AssemblyQualifiedName_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Type_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Theme_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Properties_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___History_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Easing_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___ThemeTarget_9), (void*)NULL);
#endif
}
};
// Microsoft.MixedReality.Toolkit.UI.ProfileSettings[]
struct ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 m_Items[1];
public:
inline ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 * 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, ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___ThemeSettings_0), (void*)NULL);
}
inline ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___ThemeSettings_0), (void*)NULL);
}
};
// Microsoft.MixedReality.Toolkit.UI.ShaderProperties[]
struct ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B m_Items[1];
public:
inline ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B * 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, ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_0), (void*)NULL);
}
inline ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_0), (void*)NULL);
}
};
// Microsoft.MixedReality.Toolkit.UI.ThemeSettings[]
struct ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA : public RuntimeArray
{
public:
ALIGN_FIELD (8) ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 m_Items[1];
public:
inline ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 * 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, ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Settings_0), (void*)NULL);
}
inline ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Settings_0), (void*)NULL);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData[]
struct InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E : public RuntimeArray
{
public:
ALIGN_FIELD (8) InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE m_Items[1];
public:
inline InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE * 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, InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Attributes_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Value_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_2), (void*)NULL);
#endif
}
inline InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Attributes_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Value_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_2), (void*)NULL);
#endif
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting[]
struct InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4 : public RuntimeArray
{
public:
ALIGN_FIELD (8) InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 m_Items[1];
public:
inline InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 * 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, InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Label_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Tooltip_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___StringValue_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___GameObjectValue_8), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___ScriptableObjectValue_9), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___ObjectValue_10), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___MaterialValue_11), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___TextureValue_12), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___CurveValue_17), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___AudioClipValue_18), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___EventValue_20), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Options_21), (void*)NULL);
#endif
}
inline InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Label_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Tooltip_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___StringValue_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___GameObjectValue_8), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___ScriptableObjectValue_9), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___ObjectValue_10), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___MaterialValue_11), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___TextureValue_12), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___CurveValue_17), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___AudioClipValue_18), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___EventValue_20), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Options_21), (void*)NULL);
#endif
}
};
// Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode[]
struct ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 m_Items[1];
public:
inline ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 * 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, ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Transform_3), (void*)NULL);
#endif
}
inline ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Transform_3), (void*)NULL);
#endif
}
};
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint8_t m_Items[1];
public:
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* 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, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Il2CppChar m_Items[1];
public:
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* 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, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[]
struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B m_Items[1];
public:
inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * 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, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>[]
struct KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 m_Items[1];
public:
inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 * 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, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>[]
struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 m_Items[1];
public:
inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * 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, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>[]
struct KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 m_Items[1];
public:
inline KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 * 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, KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>[]
struct KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F m_Items[1];
public:
inline KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F * 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, KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>[]
struct KeyValuePair_2U5BU5D_tC7A09A604E89B878B8A673BD6238A819ADDAD26A : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 m_Items[1];
public:
inline KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 * 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, KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>[]
struct KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 m_Items[1];
public:
inline KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 * 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, KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>[]
struct KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE m_Items[1];
public:
inline KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE * 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, KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.UInt32>[]
struct KeyValuePair_2U5BU5D_t2E62DFFEEC2B3F858CEA261AE40C4CC4A8A2808D : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4 m_Items[1];
public:
inline KeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4 * 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, KeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>[]
struct KeyValuePair_2U5BU5D_tF3E7A3C0CD8F236E22836D54F25B24F11461CD8C : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA m_Items[1];
public:
inline KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA * 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, KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>[]
struct KeyValuePair_2U5BU5D_tA70A6D970A6407747BDE3F49A31B0BE1D7043951 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 m_Items[1];
public:
inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 * 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, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
}
inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>[]
struct KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E m_Items[1];
public:
inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * 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, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
}
inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]
struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE m_Items[1];
public:
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * 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, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>[]
struct KeyValuePair_2U5BU5D_t90D650B211D4280D9C648325D90FE4CDA0CE18D7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE m_Items[1];
public:
inline KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE * 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, KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>[]
struct KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C m_Items[1];
public:
inline KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C * 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, KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>[]
struct KeyValuePair_2U5BU5D_tE550885A1F49CF2FBFB8A2E39DC0EADEF91219B8 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA m_Items[1];
public:
inline KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA * 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, KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>[]
struct KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 m_Items[1];
public:
inline KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 * 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, KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Diagnostics.Tracing.EventProvider_SessionInfo[]
struct SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906 : public RuntimeArray
{
public:
ALIGN_FIELD (8) SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A m_Items[1];
public:
inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A * 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, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A value)
{
m_Items[index] = value;
}
};
// System.Guid[]
struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF : public RuntimeArray
{
public:
ALIGN_FIELD (8) Guid_t m_Items[1];
public:
inline Guid_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Guid_t * 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, Guid_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Guid_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Guid_t * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Guid_t value)
{
m_Items[index] = value;
}
};
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* 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, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Int32Enum[]
struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* 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, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Single[]
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5 : public RuntimeArray
{
public:
ALIGN_FIELD (8) float m_Items[1];
public:
inline float GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline float* 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, float value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline float GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline float* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, float value)
{
m_Items[index] = value;
}
};
// System.UInt32[]
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint32_t m_Items[1];
public:
inline uint32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint32_t* 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, uint32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value)
{
m_Items[index] = value;
}
};
// System.UInt64[]
struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint64_t m_Items[1];
public:
inline uint64_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint64_t* 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, uint64_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint64_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint64_t value)
{
m_Items[index] = value;
}
};
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteData[]
struct SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41 : public RuntimeArray
{
public:
ALIGN_FIELD (8) SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 m_Items[1];
public:
inline SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 * 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, SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___filename_0), (void*)NULL);
}
inline SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___filename_0), (void*)NULL);
}
};
// UnityEngine.BeforeRenderHelper_OrderBlock[]
struct OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101 : public RuntimeArray
{
public:
ALIGN_FIELD (8) OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 m_Items[1];
public:
inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 * 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, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___callback_1), (void*)NULL);
}
inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___callback_1), (void*)NULL);
}
};
// UnityEngine.Color32[]
struct Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 m_Items[1];
public:
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * 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, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Color[]
struct ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 m_Items[1];
public:
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * 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, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
m_Items[index] = value;
}
};
// UnityEngine.EventSystems.RaycastResult[]
struct RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 m_Items[1];
public:
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * 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, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___module_1), (void*)NULL);
#endif
}
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___module_1), (void*)NULL);
#endif
}
};
// UnityEngine.Matrix4x4[]
struct Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA m_Items[1];
public:
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * 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, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
m_Items[index] = value;
}
};
// UnityEngine.Ray[]
struct RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED : public RuntimeArray
{
public:
ALIGN_FIELD (8) Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 m_Items[1];
public:
inline Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 * 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, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 value)
{
m_Items[index] = value;
}
};
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE m_Items[1];
public:
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE * 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, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE value)
{
m_Items[index] = value;
}
};
// UnityEngine.TextCore.GlyphRect[]
struct GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C m_Items[1];
public:
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C * 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, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C value)
{
m_Items[index] = value;
}
};
// UnityEngine.UICharInfo[]
struct UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482 : public RuntimeArray
{
public:
ALIGN_FIELD (8) UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A m_Items[1];
public:
inline UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A * 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, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A value)
{
m_Items[index] = value;
}
};
// UnityEngine.UILineInfo[]
struct UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC : public RuntimeArray
{
public:
ALIGN_FIELD (8) UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 m_Items[1];
public:
inline UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 * 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, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 value)
{
m_Items[index] = value;
}
};
// UnityEngine.UIVertex[]
struct UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A : public RuntimeArray
{
public:
ALIGN_FIELD (8) UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 m_Items[1];
public:
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 * 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, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 value)
{
m_Items[index] = value;
}
};
// UnityEngine.UnitySynchronizationContext_WorkRequest[]
struct WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 m_Items[1];
public:
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 * 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, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateCallback_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateState_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_WaitHandle_2), (void*)NULL);
#endif
}
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateCallback_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateState_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_WaitHandle_2), (void*)NULL);
#endif
}
};
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector2_tA85D2DD88578276CA8A8796756458277E72D073D m_Items[1];
public:
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * 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, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
m_Items[index] = value;
}
};
// UnityEngine.Vector3[]
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 m_Items[1];
public:
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * 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, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Vector4[]
struct Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E m_Items[1];
public:
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * 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, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
m_Items[index] = value;
}
};
// System.Boolean System.Collections.Generic.List`1<System.Object>::Contains(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_mE08D561E86879A26245096C572A8593279383FDB_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// AttributeType System.Diagnostics.Tracing.Statics::GetCustomAttribute<System.Object>(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Statics_GetCustomAttribute_TisRuntimeObject_m370DA07102E50BF64D63D2365C65803837AA3D2E_gshared (Type_t * ___type0, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.NullTypeInfo`1<System.Diagnostics.Tracing.EmptyStruct>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullTypeInfo_1__ctor_m26AD9AD184C3134222FC7ECD036461D6CB55769C_gshared (NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D * __this, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1<System.Type>::Contains(T)
inline bool List_1_Contains_m6A7AF0218C770BDC786185D61552281BF4051593 (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * __this, Type_t * ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *, Type_t *, const RuntimeMethod*))List_1_Contains_mE08D561E86879A26245096C572A8593279383FDB_gshared)(__this, ___item0, method);
}
// System.String System.Environment::GetResourceString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9 (String_t* ___key0, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Type>::Add(T)
inline void List_1_Add_m0B2D1D24DF475E0A9FF3ACB89CFFB9FD07958AD3 (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * __this, Type_t * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *, Type_t *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
}
// AttributeType System.Diagnostics.Tracing.Statics::GetCustomAttribute<System.Diagnostics.Tracing.EventDataAttribute>(System.Type)
inline EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * Statics_GetCustomAttribute_TisEventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85_m4F16FDCBB99EAD8A4E96FEDA6F2C0CD45CFA713F (Type_t * ___type0, const RuntimeMethod* method)
{
return (( EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * (*) (Type_t *, const RuntimeMethod*))Statics_GetCustomAttribute_TisRuntimeObject_m370DA07102E50BF64D63D2365C65803837AA3D2E_gshared)(___type0, method);
}
// AttributeType System.Diagnostics.Tracing.Statics::GetCustomAttribute<System.Runtime.CompilerServices.CompilerGeneratedAttribute>(System.Type)
inline CompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC * Statics_GetCustomAttribute_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m7ECE22C72C43417D525F0001E8CB60E1000579A9 (Type_t * ___type0, const RuntimeMethod* method)
{
return (( CompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC * (*) (Type_t *, const RuntimeMethod*))Statics_GetCustomAttribute_TisRuntimeObject_m370DA07102E50BF64D63D2365C65803837AA3D2E_gshared)(___type0, method);
}
// System.Void System.Diagnostics.Tracing.TypeAnalysis::.ctor(System.Type,System.Diagnostics.Tracing.EventDataAttribute,System.Collections.Generic.List`1<System.Type>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeAnalysis__ctor_m7FE311A013186B7421FCA3574941907DB1FA4632 (TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD * __this, Type_t * ___dataType0, EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * ___eventAttrib1, List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * ___recursionCheck2, const RuntimeMethod* method);
// System.Boolean System.Type::get_IsArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE (Type_t * __this, const RuntimeMethod* method);
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.BooleanArrayTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BooleanArrayTypeInfo__ctor_m4C42FDCC33CCC47576364D5CD3566487FBB26241 (BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.ByteArrayTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteArrayTypeInfo__ctor_mC48373891BDF2EE356654D62BCFE3E252D365AD3 (ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.SByteArrayTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteArrayTypeInfo__ctor_m574A695A8BC3854E038875B5EDA049ADCE1121BA (SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.Int16ArrayTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16ArrayTypeInfo__ctor_mF1C882F2ECD07C3ACE31BF421C84375783557470 (Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.UInt16ArrayTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16ArrayTypeInfo__ctor_m47BF92C31CA6C00BF2934AE7D7B30BBE7340C2FE (UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.Int32ArrayTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32ArrayTypeInfo__ctor_m9D7274FDA03ACB4C441E103CB50E6BE7DBF548F5 (Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.UInt32ArrayTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32ArrayTypeInfo__ctor_m6E6B67C602B24ECD669EF5C8A05DE8994F4B2030 (UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.Int64ArrayTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64ArrayTypeInfo__ctor_m0420AE4B52AE5BD112A2B29B0D12C0A6FB4B931D (Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.UInt64ArrayTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64ArrayTypeInfo__ctor_m7FD48AB4A63443625F680B68E2B80C17B694F26F (UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.CharArrayTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharArrayTypeInfo__ctor_m1EE2437D82CF59C21FD9A6202A9BDE9646CA8DDB (CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.DoubleArrayTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DoubleArrayTypeInfo__ctor_mA1D7B8202A7F5FE4462E05403AF389C57308729D (DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.SingleArrayTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleArrayTypeInfo__ctor_m9897E1859A9FBE59C35E997146A165465927226F (SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.IntPtrArrayTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtrArrayTypeInfo__ctor_mEAB7419D27051053AAF97425F4CE4283CB6316EF (IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.UIntPtrArrayTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrArrayTypeInfo__ctor_m2ED85F03228949555DADD7E37416A143A58E3601 (UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.GuidArrayTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidArrayTypeInfo__ctor_m60FBBC3A58A030148BD5092494CF7DD8BCDD4584 (GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 * __this, const RuntimeMethod* method);
// System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.Statics::GetTypeInfoInstance(System.Type,System.Collections.Generic.List`1<System.Type>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6 (Type_t * ___dataType0, List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * ___recursionCheck1, const RuntimeMethod* method);
// System.Object System.Diagnostics.Tracing.Statics::CreateInstance(System.Type,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A (Type_t * ___type0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___parameters1, const RuntimeMethod* method);
// System.Boolean System.Diagnostics.Tracing.Statics::IsEnum(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_IsEnum_m9CD80B63044F16008C4CA89353FA72D2CA63EABF (Type_t * ___type0, const RuntimeMethod* method);
// System.Type System.Enum::GetUnderlyingType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1 (Type_t * ___enumType0, const RuntimeMethod* method);
// System.String System.Environment::GetResourceString(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB (String_t* ___key0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.StringTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringTypeInfo__ctor_mCBEF207AA52314389CDE3589F55D5A3B4CA48ADD (StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.BooleanTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BooleanTypeInfo__ctor_mA6C506EA7D9651E4024FD3B1612F2170D7EF37B5 (BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.ByteTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteTypeInfo__ctor_mC04ADDE2C15F05E2B211965E5E3BFC777BB32776 (ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.SByteTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteTypeInfo__ctor_mE051EE1E75CBE7BF5D6F0DEBCD1B2EC3B55DD89E (SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.Int16TypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16TypeInfo__ctor_m32663BF727B1441F924AF3C2440672AD69A8A0D0 (Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.UInt16TypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16TypeInfo__ctor_mCC09171DCA51C7C406B0A16C46D5EF4D07D089CD (UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.Int32TypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32TypeInfo__ctor_mFB5D5C183B9CEADA879A9B192E5F6E613EF79ACC (Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.UInt32TypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32TypeInfo__ctor_m5492D535F1F613D8B2160CCB6782ECA813E89181 (UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.Int64TypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64TypeInfo__ctor_m34E0E0F18CF350928B7FFA21BB7FBF14AB2D2783 (Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.UInt64TypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64TypeInfo__ctor_m237E06B639D1A9D0DFFDD3795FEABE0B50F245AE (UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.CharTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharTypeInfo__ctor_m83F187FC1D323E6E2FA872CF3153BAB1F76AC298 (CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.DoubleTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DoubleTypeInfo__ctor_m0FC3E8A06AF05EE78EBFC4BEB3C45686DE65143B (DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.SingleTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleTypeInfo__ctor_mA5EBEEF7D8FA70CC36839D33FFEE1E92B36733C4 (SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.DateTimeTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeTypeInfo__ctor_m963A7C1FB683821F9728B33B2BA04C0D8A73B1F4 (DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.DecimalTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecimalTypeInfo__ctor_mF2531EBF69BEC23272D7EBC06FB6CB789EE282A3 (DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.IntPtrTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtrTypeInfo__ctor_m01105F4A30A454AC162C62C5D3FF447A225DA07B (IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.UIntPtrTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrTypeInfo__ctor_m10665E5B71030580321F853F0AA64AA6450867BE (UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.GuidTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidTypeInfo__ctor_m16193A1FFDF45604394A54B7D5695069EC1306B6 (GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.TimeSpanTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpanTypeInfo__ctor_m61DE1869347F3CAD1FD95898E7E6BFDBB82EF248 (TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.DateTimeOffsetTypeInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffsetTypeInfo__ctor_m15CCCCC4AC20E4A3CE0A9F9F07D45C502A64C386 (DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7 * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.NullTypeInfo`1<System.Diagnostics.Tracing.EmptyStruct>::.ctor()
inline void NullTypeInfo_1__ctor_m26AD9AD184C3134222FC7ECD036461D6CB55769C (NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D * __this, const RuntimeMethod* method)
{
(( void (*) (NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D *, const RuntimeMethod*))NullTypeInfo_1__ctor_m26AD9AD184C3134222FC7ECD036461D6CB55769C_gshared)(__this, method);
}
// System.Boolean System.Diagnostics.Tracing.Statics::IsGenericMatch(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699 (Type_t * ___type0, RuntimeObject * ___openType1, const RuntimeMethod* method);
// System.Type[] System.Diagnostics.Tracing.Statics::GetGenericArguments(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9 (Type_t * ___type0, const RuntimeMethod* method);
// System.Type System.Diagnostics.Tracing.Statics::FindEnumerableElementType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Statics_FindEnumerableElementType_mE2B9BCD8FECD8262FA51BED1DD0AE91DD8C37180 (Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean System.Type::op_Inequality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Application::get_isEditor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Application_get_isEditor_m347E6EE16E5109EF613C83ED98DB1EC6E3EF5E26 (const RuntimeMethod* method);
// System.Void UnityEngine.Debug::LogWarning(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m37338644DC81F640CCDFEAE35A223F0E965F0568 (RuntimeObject * ___message0, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Int32 System.Array::get_Rank()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1 (RuntimeArray * __this, const RuntimeMethod* method);
// System.String Locale::GetText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324 (String_t* ___msg0, const RuntimeMethod* method);
// System.Void System.RankException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Int32 System.Array::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method);
// System.Int32 System.Array::GetLowerBound(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method);
// System.Boolean Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AudioLoFiFilterSettings_Equals_mA4BA4C33A9C9AA11381BF17C181F633D20107D70 (AudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MixedRealityInputAction_Equals_m654F3EF2301E74D1C72DF2BFF6CDEF153CFF7BAB (MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MixedRealityPose_Equals_mE824BC0DE4E17F5D29CE4A15D8CB4C6756E15CFD (MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Boolean::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Byte::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF (uint8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Char::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8 (Il2CppChar* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.Statics::CreateDefaultTypeInfo<System.UInt16>(System.Collections.Generic.List`1<System.Type>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 * Statics_CreateDefaultTypeInfo_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m48CB0277EB61948ADEB6E43C95ECF99CFB75F693_gshared (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * ___recursionCheck0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Statics_CreateDefaultTypeInfo_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m48CB0277EB61948ADEB6E43C95ECF99CFB75F693_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * V_0 = NULL;
Type_t * V_1 = NULL;
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * V_2 = NULL;
Type_t * V_3 = NULL;
Type_t * V_4 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_5 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_6 = NULL;
Type_t * V_7 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_1 = (Type_t *)L_1;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_2 = ___recursionCheck0;
Type_t * L_3 = V_1;
NullCheck((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_2);
bool L_4 = List_1_Contains_m6A7AF0218C770BDC786185D61552281BF4051593((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_2, (Type_t *)L_3, /*hidden argument*/List_1_Contains_m6A7AF0218C770BDC786185D61552281BF4051593_RuntimeMethod_var);
if (!L_4)
{
goto IL_0024;
}
}
{
String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteralF084C7C4DE4AEADD0AA7AE2EDEFF6D9FB3DDA7A1, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_6 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_6, (String_t*)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Statics_CreateDefaultTypeInfo_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m48CB0277EB61948ADEB6E43C95ECF99CFB75F693_RuntimeMethod_var);
}
IL_0024:
{
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_7 = ___recursionCheck0;
Type_t * L_8 = V_1;
NullCheck((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_7);
List_1_Add_m0B2D1D24DF475E0A9FF3ACB89CFFB9FD07958AD3((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_7, (Type_t *)L_8, /*hidden argument*/List_1_Add_m0B2D1D24DF475E0A9FF3ACB89CFFB9FD07958AD3_RuntimeMethod_var);
Type_t * L_9 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_10 = Statics_GetCustomAttribute_TisEventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85_m4F16FDCBB99EAD8A4E96FEDA6F2C0CD45CFA713F((Type_t *)L_9, /*hidden argument*/Statics_GetCustomAttribute_TisEventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85_m4F16FDCBB99EAD8A4E96FEDA6F2C0CD45CFA713F_RuntimeMethod_var);
V_2 = (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 *)L_10;
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_11 = V_2;
if (L_11)
{
goto IL_003d;
}
}
{
Type_t * L_12 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
CompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC * L_13 = Statics_GetCustomAttribute_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m7ECE22C72C43417D525F0001E8CB60E1000579A9((Type_t *)L_12, /*hidden argument*/Statics_GetCustomAttribute_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m7ECE22C72C43417D525F0001E8CB60E1000579A9_RuntimeMethod_var);
if (!L_13)
{
goto IL_0050;
}
}
IL_003d:
{
Type_t * L_14 = V_1;
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_15 = V_2;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_16 = ___recursionCheck0;
TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD * L_17 = (TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD *)il2cpp_codegen_object_new(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD_il2cpp_TypeInfo_var);
TypeAnalysis__ctor_m7FE311A013186B7421FCA3574941907DB1FA4632(L_17, (Type_t *)L_14, (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 *)L_15, (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_16, /*hidden argument*/NULL);
InvokeTypeInfo_1_t6B9C75BCD0207440A286652E522B6DBED018EED4 * L_18 = (InvokeTypeInfo_1_t6B9C75BCD0207440A286652E522B6DBED018EED4 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 1));
(( void (*) (InvokeTypeInfo_1_t6B9C75BCD0207440A286652E522B6DBED018EED4 *, TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(L_18, (TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_18;
goto IL_06ec;
}
IL_0050:
{
Type_t * L_19 = V_1;
NullCheck((Type_t *)L_19);
bool L_20 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE((Type_t *)L_19, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_024e;
}
}
{
Type_t * L_21 = V_1;
NullCheck((Type_t *)L_21);
Type_t * L_22 = VirtFuncInvoker0< Type_t * >::Invoke(98 /* System.Type System.Type::GetElementType() */, (Type_t *)L_21);
V_3 = (Type_t *)L_22;
Type_t * L_23 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL);
bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL);
if (!L_26)
{
goto IL_007f;
}
}
{
BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663 * L_27 = (BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663 *)il2cpp_codegen_object_new(BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663_il2cpp_TypeInfo_var);
BooleanArrayTypeInfo__ctor_m4C42FDCC33CCC47576364D5CD3566487FBB26241(L_27, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_27;
goto IL_06ec;
}
IL_007f:
{
Type_t * L_28 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
bool L_31 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_28, (Type_t *)L_30, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_009c;
}
}
{
ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB * L_32 = (ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB *)il2cpp_codegen_object_new(ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB_il2cpp_TypeInfo_var);
ByteArrayTypeInfo__ctor_mC48373891BDF2EE356654D62BCFE3E252D365AD3(L_32, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_32;
goto IL_06ec;
}
IL_009c:
{
Type_t * L_33 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_34 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_35 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_34, /*hidden argument*/NULL);
bool L_36 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_33, (Type_t *)L_35, /*hidden argument*/NULL);
if (!L_36)
{
goto IL_00b9;
}
}
{
SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 * L_37 = (SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 *)il2cpp_codegen_object_new(SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6_il2cpp_TypeInfo_var);
SByteArrayTypeInfo__ctor_m574A695A8BC3854E038875B5EDA049ADCE1121BA(L_37, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_37;
goto IL_06ec;
}
IL_00b9:
{
Type_t * L_38 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL);
bool L_41 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_38, (Type_t *)L_40, /*hidden argument*/NULL);
if (!L_41)
{
goto IL_00d6;
}
}
{
Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 * L_42 = (Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 *)il2cpp_codegen_object_new(Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3_il2cpp_TypeInfo_var);
Int16ArrayTypeInfo__ctor_mF1C882F2ECD07C3ACE31BF421C84375783557470(L_42, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_42;
goto IL_06ec;
}
IL_00d6:
{
Type_t * L_43 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_44 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_45 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_44, /*hidden argument*/NULL);
bool L_46 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_43, (Type_t *)L_45, /*hidden argument*/NULL);
if (!L_46)
{
goto IL_00f3;
}
}
{
UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE * L_47 = (UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE *)il2cpp_codegen_object_new(UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE_il2cpp_TypeInfo_var);
UInt16ArrayTypeInfo__ctor_m47BF92C31CA6C00BF2934AE7D7B30BBE7340C2FE(L_47, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_47;
goto IL_06ec;
}
IL_00f3:
{
Type_t * L_48 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL);
bool L_51 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_48, (Type_t *)L_50, /*hidden argument*/NULL);
if (!L_51)
{
goto IL_0110;
}
}
{
Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C * L_52 = (Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C *)il2cpp_codegen_object_new(Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C_il2cpp_TypeInfo_var);
Int32ArrayTypeInfo__ctor_m9D7274FDA03ACB4C441E103CB50E6BE7DBF548F5(L_52, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_52;
goto IL_06ec;
}
IL_0110:
{
Type_t * L_53 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_54 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_55 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_54, /*hidden argument*/NULL);
bool L_56 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_53, (Type_t *)L_55, /*hidden argument*/NULL);
if (!L_56)
{
goto IL_012d;
}
}
{
UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC * L_57 = (UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC *)il2cpp_codegen_object_new(UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC_il2cpp_TypeInfo_var);
UInt32ArrayTypeInfo__ctor_m6E6B67C602B24ECD669EF5C8A05DE8994F4B2030(L_57, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_57;
goto IL_06ec;
}
IL_012d:
{
Type_t * L_58 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_59 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_60 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_59, /*hidden argument*/NULL);
bool L_61 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_58, (Type_t *)L_60, /*hidden argument*/NULL);
if (!L_61)
{
goto IL_014a;
}
}
{
Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC * L_62 = (Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC *)il2cpp_codegen_object_new(Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC_il2cpp_TypeInfo_var);
Int64ArrayTypeInfo__ctor_m0420AE4B52AE5BD112A2B29B0D12C0A6FB4B931D(L_62, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_62;
goto IL_06ec;
}
IL_014a:
{
Type_t * L_63 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_64 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_65 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_64, /*hidden argument*/NULL);
bool L_66 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_63, (Type_t *)L_65, /*hidden argument*/NULL);
if (!L_66)
{
goto IL_0167;
}
}
{
UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 * L_67 = (UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 *)il2cpp_codegen_object_new(UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5_il2cpp_TypeInfo_var);
UInt64ArrayTypeInfo__ctor_m7FD48AB4A63443625F680B68E2B80C17B694F26F(L_67, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_67;
goto IL_06ec;
}
IL_0167:
{
Type_t * L_68 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_69 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_70 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_69, /*hidden argument*/NULL);
bool L_71 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_68, (Type_t *)L_70, /*hidden argument*/NULL);
if (!L_71)
{
goto IL_0184;
}
}
{
CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7 * L_72 = (CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7 *)il2cpp_codegen_object_new(CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7_il2cpp_TypeInfo_var);
CharArrayTypeInfo__ctor_m1EE2437D82CF59C21FD9A6202A9BDE9646CA8DDB(L_72, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_72;
goto IL_06ec;
}
IL_0184:
{
Type_t * L_73 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_74 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_75 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_74, /*hidden argument*/NULL);
bool L_76 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_73, (Type_t *)L_75, /*hidden argument*/NULL);
if (!L_76)
{
goto IL_01a1;
}
}
{
DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2 * L_77 = (DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2 *)il2cpp_codegen_object_new(DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2_il2cpp_TypeInfo_var);
DoubleArrayTypeInfo__ctor_mA1D7B8202A7F5FE4462E05403AF389C57308729D(L_77, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_77;
goto IL_06ec;
}
IL_01a1:
{
Type_t * L_78 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_79 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_80 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_79, /*hidden argument*/NULL);
bool L_81 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_78, (Type_t *)L_80, /*hidden argument*/NULL);
if (!L_81)
{
goto IL_01be;
}
}
{
SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 * L_82 = (SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 *)il2cpp_codegen_object_new(SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239_il2cpp_TypeInfo_var);
SingleArrayTypeInfo__ctor_m9897E1859A9FBE59C35E997146A165465927226F(L_82, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_82;
goto IL_06ec;
}
IL_01be:
{
Type_t * L_83 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_84 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_85 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_84, /*hidden argument*/NULL);
bool L_86 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_83, (Type_t *)L_85, /*hidden argument*/NULL);
if (!L_86)
{
goto IL_01db;
}
}
{
IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 * L_87 = (IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 *)il2cpp_codegen_object_new(IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702_il2cpp_TypeInfo_var);
IntPtrArrayTypeInfo__ctor_mEAB7419D27051053AAF97425F4CE4283CB6316EF(L_87, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_87;
goto IL_06ec;
}
IL_01db:
{
Type_t * L_88 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_89 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_90 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_89, /*hidden argument*/NULL);
bool L_91 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_88, (Type_t *)L_90, /*hidden argument*/NULL);
if (!L_91)
{
goto IL_01f8;
}
}
{
UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C * L_92 = (UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C *)il2cpp_codegen_object_new(UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C_il2cpp_TypeInfo_var);
UIntPtrArrayTypeInfo__ctor_m2ED85F03228949555DADD7E37416A143A58E3601(L_92, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_92;
goto IL_06ec;
}
IL_01f8:
{
Type_t * L_93 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_94 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_95 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_94, /*hidden argument*/NULL);
bool L_96 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_93, (Type_t *)L_95, /*hidden argument*/NULL);
if (!L_96)
{
goto IL_0215;
}
}
{
GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 * L_97 = (GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 *)il2cpp_codegen_object_new(GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068_il2cpp_TypeInfo_var);
GuidArrayTypeInfo__ctor_m60FBBC3A58A030148BD5092494CF7DD8BCDD4584(L_97, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_97;
goto IL_06ec;
}
IL_0215:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_98 = { reinterpret_cast<intptr_t> (ArrayTypeInfo_1_t917EFD3106B9A6A891D84AF0A1EAE86F7E53BA5A_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_99 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_98, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_100 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_101 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_100;
Type_t * L_102 = V_3;
NullCheck(L_101);
ArrayElementTypeCheck (L_101, L_102);
(L_101)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_102);
NullCheck((Type_t *)L_99);
Type_t * L_103 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_99, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_101);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_104 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_105 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_104;
Type_t * L_106 = V_3;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_107 = ___recursionCheck0;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_108 = Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6((Type_t *)L_106, (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_107, /*hidden argument*/NULL);
NullCheck(L_105);
ArrayElementTypeCheck (L_105, L_108);
(L_105)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_108);
RuntimeObject * L_109 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_103, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_105, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 *)Castclass((RuntimeObject*)L_109, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_024e:
{
Type_t * L_110 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
bool L_111 = Statics_IsEnum_m9CD80B63044F16008C4CA89353FA72D2CA63EABF((Type_t *)L_110, /*hidden argument*/NULL);
if (!L_111)
{
goto IL_037a;
}
}
{
Type_t * L_112 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
Type_t * L_113 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_112, /*hidden argument*/NULL);
V_4 = (Type_t *)L_113;
Type_t * L_114 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_115 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_116 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_115, /*hidden argument*/NULL);
bool L_117 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_114, (Type_t *)L_116, /*hidden argument*/NULL);
if (!L_117)
{
goto IL_027f;
}
}
{
EnumInt32TypeInfo_1_t02B0B05CC07BB3AAEFAB65576686F8A401A7C9C2 * L_118 = (EnumInt32TypeInfo_1_t02B0B05CC07BB3AAEFAB65576686F8A401A7C9C2 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 4));
(( void (*) (EnumInt32TypeInfo_1_t02B0B05CC07BB3AAEFAB65576686F8A401A7C9C2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(L_118, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_118;
goto IL_06ec;
}
IL_027f:
{
Type_t * L_119 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_120 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_121 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_120, /*hidden argument*/NULL);
bool L_122 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_119, (Type_t *)L_121, /*hidden argument*/NULL);
if (!L_122)
{
goto IL_029d;
}
}
{
EnumUInt32TypeInfo_1_t191EF110CEC450614F0299889E6BCEB7C0486D67 * L_123 = (EnumUInt32TypeInfo_1_t191EF110CEC450614F0299889E6BCEB7C0486D67 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 6));
(( void (*) (EnumUInt32TypeInfo_1_t191EF110CEC450614F0299889E6BCEB7C0486D67 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 7)->methodPointer)(L_123, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 7));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_123;
goto IL_06ec;
}
IL_029d:
{
Type_t * L_124 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_125 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_126 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_125, /*hidden argument*/NULL);
bool L_127 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_124, (Type_t *)L_126, /*hidden argument*/NULL);
if (!L_127)
{
goto IL_02bb;
}
}
{
EnumByteTypeInfo_1_t2426F2FF8AD1BF873E1EF906860089C3C7F87CEF * L_128 = (EnumByteTypeInfo_1_t2426F2FF8AD1BF873E1EF906860089C3C7F87CEF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 8));
(( void (*) (EnumByteTypeInfo_1_t2426F2FF8AD1BF873E1EF906860089C3C7F87CEF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 9)->methodPointer)(L_128, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 9));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_128;
goto IL_06ec;
}
IL_02bb:
{
Type_t * L_129 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_130 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_131 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_130, /*hidden argument*/NULL);
bool L_132 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_129, (Type_t *)L_131, /*hidden argument*/NULL);
if (!L_132)
{
goto IL_02d9;
}
}
{
EnumSByteTypeInfo_1_t6E9DA6CD37B50D87B3F6A18FB0994852AEDD80B7 * L_133 = (EnumSByteTypeInfo_1_t6E9DA6CD37B50D87B3F6A18FB0994852AEDD80B7 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 10));
(( void (*) (EnumSByteTypeInfo_1_t6E9DA6CD37B50D87B3F6A18FB0994852AEDD80B7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 11)->methodPointer)(L_133, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 11));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_133;
goto IL_06ec;
}
IL_02d9:
{
Type_t * L_134 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_135 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_136 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_135, /*hidden argument*/NULL);
bool L_137 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_134, (Type_t *)L_136, /*hidden argument*/NULL);
if (!L_137)
{
goto IL_02f7;
}
}
{
EnumInt16TypeInfo_1_tA8B3964BCEB28ADDCC55BD974ED12863DE4D0F4E * L_138 = (EnumInt16TypeInfo_1_tA8B3964BCEB28ADDCC55BD974ED12863DE4D0F4E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 12));
(( void (*) (EnumInt16TypeInfo_1_tA8B3964BCEB28ADDCC55BD974ED12863DE4D0F4E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 13)->methodPointer)(L_138, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 13));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_138;
goto IL_06ec;
}
IL_02f7:
{
Type_t * L_139 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_140 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_141 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_140, /*hidden argument*/NULL);
bool L_142 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_139, (Type_t *)L_141, /*hidden argument*/NULL);
if (!L_142)
{
goto IL_0315;
}
}
{
EnumUInt16TypeInfo_1_tA3D5A7672FD5EDFAD4935ECA329A2C7E7B143AD7 * L_143 = (EnumUInt16TypeInfo_1_tA3D5A7672FD5EDFAD4935ECA329A2C7E7B143AD7 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 14));
(( void (*) (EnumUInt16TypeInfo_1_tA3D5A7672FD5EDFAD4935ECA329A2C7E7B143AD7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 15)->methodPointer)(L_143, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 15));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_143;
goto IL_06ec;
}
IL_0315:
{
Type_t * L_144 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_145 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_146 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_145, /*hidden argument*/NULL);
bool L_147 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_144, (Type_t *)L_146, /*hidden argument*/NULL);
if (!L_147)
{
goto IL_0333;
}
}
{
EnumInt64TypeInfo_1_tBF32FF9A7067C404B7B5B5FD0FA617F3A60F2968 * L_148 = (EnumInt64TypeInfo_1_tBF32FF9A7067C404B7B5B5FD0FA617F3A60F2968 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 16));
(( void (*) (EnumInt64TypeInfo_1_tBF32FF9A7067C404B7B5B5FD0FA617F3A60F2968 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 17)->methodPointer)(L_148, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 17));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_148;
goto IL_06ec;
}
IL_0333:
{
Type_t * L_149 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_150 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_151 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_150, /*hidden argument*/NULL);
bool L_152 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_149, (Type_t *)L_151, /*hidden argument*/NULL);
if (!L_152)
{
goto IL_0351;
}
}
{
EnumUInt64TypeInfo_1_tAB74E0D25E85804F5599E22CD0CFF1E41808A293 * L_153 = (EnumUInt64TypeInfo_1_tAB74E0D25E85804F5599E22CD0CFF1E41808A293 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 18));
(( void (*) (EnumUInt64TypeInfo_1_tAB74E0D25E85804F5599E22CD0CFF1E41808A293 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 19)->methodPointer)(L_153, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 19));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_153;
goto IL_06ec;
}
IL_0351:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_154 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_155 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_154;
Type_t * L_156 = V_1;
NullCheck((MemberInfo_t *)L_156);
String_t* L_157 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_156);
NullCheck(L_155);
ArrayElementTypeCheck (L_155, L_157);
(L_155)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_157);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_158 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_155;
Type_t * L_159 = V_4;
NullCheck((MemberInfo_t *)L_159);
String_t* L_160 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_159);
NullCheck(L_158);
ArrayElementTypeCheck (L_158, L_160);
(L_158)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_160);
String_t* L_161 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB((String_t*)_stringLiteralAFCEDBC2312C37DE46DE59F51E7A76B1B351DD75, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_158, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_162 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_162, (String_t*)L_161, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_162, NULL, Statics_CreateDefaultTypeInfo_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m48CB0277EB61948ADEB6E43C95ECF99CFB75F693_RuntimeMethod_var);
}
IL_037a:
{
Type_t * L_163 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_164 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_165 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_164, /*hidden argument*/NULL);
bool L_166 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_163, (Type_t *)L_165, /*hidden argument*/NULL);
if (!L_166)
{
goto IL_0397;
}
}
{
StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 * L_167 = (StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 *)il2cpp_codegen_object_new(StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26_il2cpp_TypeInfo_var);
StringTypeInfo__ctor_mCBEF207AA52314389CDE3589F55D5A3B4CA48ADD(L_167, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_167;
goto IL_06ec;
}
IL_0397:
{
Type_t * L_168 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_169 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_170 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_169, /*hidden argument*/NULL);
bool L_171 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_168, (Type_t *)L_170, /*hidden argument*/NULL);
if (!L_171)
{
goto IL_03b4;
}
}
{
BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772 * L_172 = (BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772 *)il2cpp_codegen_object_new(BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772_il2cpp_TypeInfo_var);
BooleanTypeInfo__ctor_mA6C506EA7D9651E4024FD3B1612F2170D7EF37B5(L_172, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_172;
goto IL_06ec;
}
IL_03b4:
{
Type_t * L_173 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_174 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_175 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_174, /*hidden argument*/NULL);
bool L_176 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_173, (Type_t *)L_175, /*hidden argument*/NULL);
if (!L_176)
{
goto IL_03d1;
}
}
{
ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F * L_177 = (ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F *)il2cpp_codegen_object_new(ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F_il2cpp_TypeInfo_var);
ByteTypeInfo__ctor_mC04ADDE2C15F05E2B211965E5E3BFC777BB32776(L_177, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_177;
goto IL_06ec;
}
IL_03d1:
{
Type_t * L_178 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_179 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_180 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_179, /*hidden argument*/NULL);
bool L_181 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_178, (Type_t *)L_180, /*hidden argument*/NULL);
if (!L_181)
{
goto IL_03ee;
}
}
{
SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C * L_182 = (SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C *)il2cpp_codegen_object_new(SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C_il2cpp_TypeInfo_var);
SByteTypeInfo__ctor_mE051EE1E75CBE7BF5D6F0DEBCD1B2EC3B55DD89E(L_182, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_182;
goto IL_06ec;
}
IL_03ee:
{
Type_t * L_183 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_184 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_185 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_184, /*hidden argument*/NULL);
bool L_186 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_183, (Type_t *)L_185, /*hidden argument*/NULL);
if (!L_186)
{
goto IL_040b;
}
}
{
Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B * L_187 = (Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B *)il2cpp_codegen_object_new(Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B_il2cpp_TypeInfo_var);
Int16TypeInfo__ctor_m32663BF727B1441F924AF3C2440672AD69A8A0D0(L_187, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_187;
goto IL_06ec;
}
IL_040b:
{
Type_t * L_188 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_189 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_190 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_189, /*hidden argument*/NULL);
bool L_191 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_188, (Type_t *)L_190, /*hidden argument*/NULL);
if (!L_191)
{
goto IL_0428;
}
}
{
UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E * L_192 = (UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E *)il2cpp_codegen_object_new(UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E_il2cpp_TypeInfo_var);
UInt16TypeInfo__ctor_mCC09171DCA51C7C406B0A16C46D5EF4D07D089CD(L_192, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_192;
goto IL_06ec;
}
IL_0428:
{
Type_t * L_193 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_194 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_195 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_194, /*hidden argument*/NULL);
bool L_196 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_193, (Type_t *)L_195, /*hidden argument*/NULL);
if (!L_196)
{
goto IL_0445;
}
}
{
Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C * L_197 = (Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C *)il2cpp_codegen_object_new(Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C_il2cpp_TypeInfo_var);
Int32TypeInfo__ctor_mFB5D5C183B9CEADA879A9B192E5F6E613EF79ACC(L_197, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_197;
goto IL_06ec;
}
IL_0445:
{
Type_t * L_198 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_199 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_200 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_199, /*hidden argument*/NULL);
bool L_201 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_198, (Type_t *)L_200, /*hidden argument*/NULL);
if (!L_201)
{
goto IL_0462;
}
}
{
UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 * L_202 = (UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 *)il2cpp_codegen_object_new(UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59_il2cpp_TypeInfo_var);
UInt32TypeInfo__ctor_m5492D535F1F613D8B2160CCB6782ECA813E89181(L_202, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_202;
goto IL_06ec;
}
IL_0462:
{
Type_t * L_203 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_204 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_205 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_204, /*hidden argument*/NULL);
bool L_206 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_203, (Type_t *)L_205, /*hidden argument*/NULL);
if (!L_206)
{
goto IL_047f;
}
}
{
Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 * L_207 = (Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 *)il2cpp_codegen_object_new(Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5_il2cpp_TypeInfo_var);
Int64TypeInfo__ctor_m34E0E0F18CF350928B7FFA21BB7FBF14AB2D2783(L_207, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_207;
goto IL_06ec;
}
IL_047f:
{
Type_t * L_208 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_209 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_210 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_209, /*hidden argument*/NULL);
bool L_211 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_208, (Type_t *)L_210, /*hidden argument*/NULL);
if (!L_211)
{
goto IL_049c;
}
}
{
UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E * L_212 = (UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E *)il2cpp_codegen_object_new(UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E_il2cpp_TypeInfo_var);
UInt64TypeInfo__ctor_m237E06B639D1A9D0DFFDD3795FEABE0B50F245AE(L_212, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_212;
goto IL_06ec;
}
IL_049c:
{
Type_t * L_213 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_214 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_215 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_214, /*hidden argument*/NULL);
bool L_216 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_213, (Type_t *)L_215, /*hidden argument*/NULL);
if (!L_216)
{
goto IL_04b9;
}
}
{
CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1 * L_217 = (CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1 *)il2cpp_codegen_object_new(CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1_il2cpp_TypeInfo_var);
CharTypeInfo__ctor_m83F187FC1D323E6E2FA872CF3153BAB1F76AC298(L_217, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_217;
goto IL_06ec;
}
IL_04b9:
{
Type_t * L_218 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_219 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_220 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_219, /*hidden argument*/NULL);
bool L_221 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_218, (Type_t *)L_220, /*hidden argument*/NULL);
if (!L_221)
{
goto IL_04d6;
}
}
{
DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73 * L_222 = (DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73 *)il2cpp_codegen_object_new(DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73_il2cpp_TypeInfo_var);
DoubleTypeInfo__ctor_m0FC3E8A06AF05EE78EBFC4BEB3C45686DE65143B(L_222, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_222;
goto IL_06ec;
}
IL_04d6:
{
Type_t * L_223 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_224 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_225 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_224, /*hidden argument*/NULL);
bool L_226 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_223, (Type_t *)L_225, /*hidden argument*/NULL);
if (!L_226)
{
goto IL_04f3;
}
}
{
SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 * L_227 = (SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 *)il2cpp_codegen_object_new(SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8_il2cpp_TypeInfo_var);
SingleTypeInfo__ctor_mA5EBEEF7D8FA70CC36839D33FFEE1E92B36733C4(L_227, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_227;
goto IL_06ec;
}
IL_04f3:
{
Type_t * L_228 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_229 = { reinterpret_cast<intptr_t> (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_230 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_229, /*hidden argument*/NULL);
bool L_231 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_228, (Type_t *)L_230, /*hidden argument*/NULL);
if (!L_231)
{
goto IL_0510;
}
}
{
DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405 * L_232 = (DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405 *)il2cpp_codegen_object_new(DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405_il2cpp_TypeInfo_var);
DateTimeTypeInfo__ctor_m963A7C1FB683821F9728B33B2BA04C0D8A73B1F4(L_232, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_232;
goto IL_06ec;
}
IL_0510:
{
Type_t * L_233 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_234 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_235 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_234, /*hidden argument*/NULL);
bool L_236 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_233, (Type_t *)L_235, /*hidden argument*/NULL);
if (!L_236)
{
goto IL_052d;
}
}
{
DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85 * L_237 = (DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85 *)il2cpp_codegen_object_new(DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85_il2cpp_TypeInfo_var);
DecimalTypeInfo__ctor_mF2531EBF69BEC23272D7EBC06FB6CB789EE282A3(L_237, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_237;
goto IL_06ec;
}
IL_052d:
{
Type_t * L_238 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_239 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_240 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_239, /*hidden argument*/NULL);
bool L_241 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_238, (Type_t *)L_240, /*hidden argument*/NULL);
if (!L_241)
{
goto IL_054a;
}
}
{
IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 * L_242 = (IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 *)il2cpp_codegen_object_new(IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55_il2cpp_TypeInfo_var);
IntPtrTypeInfo__ctor_m01105F4A30A454AC162C62C5D3FF447A225DA07B(L_242, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_242;
goto IL_06ec;
}
IL_054a:
{
Type_t * L_243 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_244 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_245 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_244, /*hidden argument*/NULL);
bool L_246 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_243, (Type_t *)L_245, /*hidden argument*/NULL);
if (!L_246)
{
goto IL_0567;
}
}
{
UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D * L_247 = (UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D *)il2cpp_codegen_object_new(UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D_il2cpp_TypeInfo_var);
UIntPtrTypeInfo__ctor_m10665E5B71030580321F853F0AA64AA6450867BE(L_247, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_247;
goto IL_06ec;
}
IL_0567:
{
Type_t * L_248 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_249 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_250 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_249, /*hidden argument*/NULL);
bool L_251 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_248, (Type_t *)L_250, /*hidden argument*/NULL);
if (!L_251)
{
goto IL_0584;
}
}
{
GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED * L_252 = (GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED *)il2cpp_codegen_object_new(GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED_il2cpp_TypeInfo_var);
GuidTypeInfo__ctor_m16193A1FFDF45604394A54B7D5695069EC1306B6(L_252, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_252;
goto IL_06ec;
}
IL_0584:
{
Type_t * L_253 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_254 = { reinterpret_cast<intptr_t> (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_255 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_254, /*hidden argument*/NULL);
bool L_256 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_253, (Type_t *)L_255, /*hidden argument*/NULL);
if (!L_256)
{
goto IL_05a1;
}
}
{
TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA * L_257 = (TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA *)il2cpp_codegen_object_new(TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA_il2cpp_TypeInfo_var);
TimeSpanTypeInfo__ctor_m61DE1869347F3CAD1FD95898E7E6BFDBB82EF248(L_257, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_257;
goto IL_06ec;
}
IL_05a1:
{
Type_t * L_258 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_259 = { reinterpret_cast<intptr_t> (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_260 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_259, /*hidden argument*/NULL);
bool L_261 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_258, (Type_t *)L_260, /*hidden argument*/NULL);
if (!L_261)
{
goto IL_05be;
}
}
{
DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7 * L_262 = (DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7 *)il2cpp_codegen_object_new(DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7_il2cpp_TypeInfo_var);
DateTimeOffsetTypeInfo__ctor_m15CCCCC4AC20E4A3CE0A9F9F07D45C502A64C386(L_262, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_262;
goto IL_06ec;
}
IL_05be:
{
Type_t * L_263 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_264 = { reinterpret_cast<intptr_t> (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_265 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_264, /*hidden argument*/NULL);
bool L_266 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_263, (Type_t *)L_265, /*hidden argument*/NULL);
if (!L_266)
{
goto IL_05db;
}
}
{
NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D * L_267 = (NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D *)il2cpp_codegen_object_new(NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D_il2cpp_TypeInfo_var);
NullTypeInfo_1__ctor_m26AD9AD184C3134222FC7ECD036461D6CB55769C(L_267, /*hidden argument*/NullTypeInfo_1__ctor_m26AD9AD184C3134222FC7ECD036461D6CB55769C_RuntimeMethod_var);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_267;
goto IL_06ec;
}
IL_05db:
{
Type_t * L_268 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_269 = { reinterpret_cast<intptr_t> (KeyValuePair_2_tE2B149987A7A0267959C8B92C6923BAB9823089D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_270 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_269, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
bool L_271 = Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699((Type_t *)L_268, (RuntimeObject *)L_270, /*hidden argument*/NULL);
if (!L_271)
{
goto IL_0632;
}
}
{
Type_t * L_272 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_273 = Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9((Type_t *)L_272, /*hidden argument*/NULL);
V_5 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_273;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_274 = { reinterpret_cast<intptr_t> (KeyValuePairTypeInfo_2_t48B3C70F6BED0E9D17020012EC2D719996E9A241_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_275 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_274, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_276 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_277 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_276;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_278 = V_5;
NullCheck(L_278);
int32_t L_279 = 0;
Type_t * L_280 = (L_278)->GetAt(static_cast<il2cpp_array_size_t>(L_279));
NullCheck(L_277);
ArrayElementTypeCheck (L_277, L_280);
(L_277)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_280);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_281 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_277;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_282 = V_5;
NullCheck(L_282);
int32_t L_283 = 1;
Type_t * L_284 = (L_282)->GetAt(static_cast<il2cpp_array_size_t>(L_283));
NullCheck(L_281);
ArrayElementTypeCheck (L_281, L_284);
(L_281)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_284);
NullCheck((Type_t *)L_275);
Type_t * L_285 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_275, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_281);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_286 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_287 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_286;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_288 = ___recursionCheck0;
NullCheck(L_287);
ArrayElementTypeCheck (L_287, L_288);
(L_287)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_288);
RuntimeObject * L_289 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_285, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_287, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 *)Castclass((RuntimeObject*)L_289, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_0632:
{
Type_t * L_290 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_291 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_292 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_291, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
bool L_293 = Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699((Type_t *)L_290, (RuntimeObject *)L_292, /*hidden argument*/NULL);
if (!L_293)
{
goto IL_067f;
}
}
{
Type_t * L_294 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_295 = Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9((Type_t *)L_294, /*hidden argument*/NULL);
V_6 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_295;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_296 = { reinterpret_cast<intptr_t> (NullableTypeInfo_1_tDCBDA4871397F1360E9A30276BDABFDABB3B9115_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_297 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_296, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_298 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_299 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_298;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_300 = V_6;
NullCheck(L_300);
int32_t L_301 = 0;
Type_t * L_302 = (L_300)->GetAt(static_cast<il2cpp_array_size_t>(L_301));
NullCheck(L_299);
ArrayElementTypeCheck (L_299, L_302);
(L_299)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_302);
NullCheck((Type_t *)L_297);
Type_t * L_303 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_297, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_299);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_304 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_305 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_304;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_306 = ___recursionCheck0;
NullCheck(L_305);
ArrayElementTypeCheck (L_305, L_306);
(L_305)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_306);
RuntimeObject * L_307 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_303, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_305, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 *)Castclass((RuntimeObject*)L_307, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_067f:
{
Type_t * L_308 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
Type_t * L_309 = Statics_FindEnumerableElementType_mE2B9BCD8FECD8262FA51BED1DD0AE91DD8C37180((Type_t *)L_308, /*hidden argument*/NULL);
V_7 = (Type_t *)L_309;
Type_t * L_310 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_311 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9((Type_t *)L_310, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_311)
{
goto IL_06cd;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_312 = { reinterpret_cast<intptr_t> (EnumerableTypeInfo_2_t1B81D72B3A33D350331D3C9F1A4CA859454C351E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_313 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_312, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_314 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_315 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_314;
Type_t * L_316 = V_1;
NullCheck(L_315);
ArrayElementTypeCheck (L_315, L_316);
(L_315)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_316);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_317 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_315;
Type_t * L_318 = V_7;
NullCheck(L_317);
ArrayElementTypeCheck (L_317, L_318);
(L_317)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_318);
NullCheck((Type_t *)L_313);
Type_t * L_319 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_313, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_317);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_320 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_321 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_320;
Type_t * L_322 = V_7;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_323 = ___recursionCheck0;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_324 = Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6((Type_t *)L_322, (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_323, /*hidden argument*/NULL);
NullCheck(L_321);
ArrayElementTypeCheck (L_321, L_324);
(L_321)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_324);
RuntimeObject * L_325 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_319, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_321, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 *)Castclass((RuntimeObject*)L_325, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_06cd:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_326 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_327 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_326;
Type_t * L_328 = V_1;
NullCheck((MemberInfo_t *)L_328);
String_t* L_329 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_328);
NullCheck(L_327);
ArrayElementTypeCheck (L_327, L_329);
(L_327)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_329);
String_t* L_330 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB((String_t*)_stringLiteralDBA0F8BCBC38F520B1A5C333F28EEB1DDA183472, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_327, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_331 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_331, (String_t*)L_330, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_331, NULL, Statics_CreateDefaultTypeInfo_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m48CB0277EB61948ADEB6E43C95ECF99CFB75F693_RuntimeMethod_var);
}
IL_06ec:
{
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_332 = V_0;
return ((TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 *)Castclass((RuntimeObject*)L_332, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
}
}
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.Statics::CreateDefaultTypeInfo<System.UInt32>(System.Collections.Generic.List`1<System.Type>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 * Statics_CreateDefaultTypeInfo_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m0A00AC6719CA0329C8C723DA5D076192B0688510_gshared (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * ___recursionCheck0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Statics_CreateDefaultTypeInfo_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m0A00AC6719CA0329C8C723DA5D076192B0688510_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * V_0 = NULL;
Type_t * V_1 = NULL;
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * V_2 = NULL;
Type_t * V_3 = NULL;
Type_t * V_4 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_5 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_6 = NULL;
Type_t * V_7 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_1 = (Type_t *)L_1;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_2 = ___recursionCheck0;
Type_t * L_3 = V_1;
NullCheck((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_2);
bool L_4 = List_1_Contains_m6A7AF0218C770BDC786185D61552281BF4051593((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_2, (Type_t *)L_3, /*hidden argument*/List_1_Contains_m6A7AF0218C770BDC786185D61552281BF4051593_RuntimeMethod_var);
if (!L_4)
{
goto IL_0024;
}
}
{
String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteralF084C7C4DE4AEADD0AA7AE2EDEFF6D9FB3DDA7A1, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_6 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_6, (String_t*)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Statics_CreateDefaultTypeInfo_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m0A00AC6719CA0329C8C723DA5D076192B0688510_RuntimeMethod_var);
}
IL_0024:
{
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_7 = ___recursionCheck0;
Type_t * L_8 = V_1;
NullCheck((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_7);
List_1_Add_m0B2D1D24DF475E0A9FF3ACB89CFFB9FD07958AD3((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_7, (Type_t *)L_8, /*hidden argument*/List_1_Add_m0B2D1D24DF475E0A9FF3ACB89CFFB9FD07958AD3_RuntimeMethod_var);
Type_t * L_9 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_10 = Statics_GetCustomAttribute_TisEventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85_m4F16FDCBB99EAD8A4E96FEDA6F2C0CD45CFA713F((Type_t *)L_9, /*hidden argument*/Statics_GetCustomAttribute_TisEventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85_m4F16FDCBB99EAD8A4E96FEDA6F2C0CD45CFA713F_RuntimeMethod_var);
V_2 = (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 *)L_10;
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_11 = V_2;
if (L_11)
{
goto IL_003d;
}
}
{
Type_t * L_12 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
CompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC * L_13 = Statics_GetCustomAttribute_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m7ECE22C72C43417D525F0001E8CB60E1000579A9((Type_t *)L_12, /*hidden argument*/Statics_GetCustomAttribute_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m7ECE22C72C43417D525F0001E8CB60E1000579A9_RuntimeMethod_var);
if (!L_13)
{
goto IL_0050;
}
}
IL_003d:
{
Type_t * L_14 = V_1;
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_15 = V_2;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_16 = ___recursionCheck0;
TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD * L_17 = (TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD *)il2cpp_codegen_object_new(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD_il2cpp_TypeInfo_var);
TypeAnalysis__ctor_m7FE311A013186B7421FCA3574941907DB1FA4632(L_17, (Type_t *)L_14, (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 *)L_15, (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_16, /*hidden argument*/NULL);
InvokeTypeInfo_1_t2F3A70F6E6F59DBAE49D4F33EBCEB46D25F98BF6 * L_18 = (InvokeTypeInfo_1_t2F3A70F6E6F59DBAE49D4F33EBCEB46D25F98BF6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 1));
(( void (*) (InvokeTypeInfo_1_t2F3A70F6E6F59DBAE49D4F33EBCEB46D25F98BF6 *, TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(L_18, (TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_18;
goto IL_06ec;
}
IL_0050:
{
Type_t * L_19 = V_1;
NullCheck((Type_t *)L_19);
bool L_20 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE((Type_t *)L_19, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_024e;
}
}
{
Type_t * L_21 = V_1;
NullCheck((Type_t *)L_21);
Type_t * L_22 = VirtFuncInvoker0< Type_t * >::Invoke(98 /* System.Type System.Type::GetElementType() */, (Type_t *)L_21);
V_3 = (Type_t *)L_22;
Type_t * L_23 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL);
bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL);
if (!L_26)
{
goto IL_007f;
}
}
{
BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663 * L_27 = (BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663 *)il2cpp_codegen_object_new(BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663_il2cpp_TypeInfo_var);
BooleanArrayTypeInfo__ctor_m4C42FDCC33CCC47576364D5CD3566487FBB26241(L_27, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_27;
goto IL_06ec;
}
IL_007f:
{
Type_t * L_28 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
bool L_31 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_28, (Type_t *)L_30, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_009c;
}
}
{
ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB * L_32 = (ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB *)il2cpp_codegen_object_new(ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB_il2cpp_TypeInfo_var);
ByteArrayTypeInfo__ctor_mC48373891BDF2EE356654D62BCFE3E252D365AD3(L_32, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_32;
goto IL_06ec;
}
IL_009c:
{
Type_t * L_33 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_34 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_35 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_34, /*hidden argument*/NULL);
bool L_36 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_33, (Type_t *)L_35, /*hidden argument*/NULL);
if (!L_36)
{
goto IL_00b9;
}
}
{
SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 * L_37 = (SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 *)il2cpp_codegen_object_new(SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6_il2cpp_TypeInfo_var);
SByteArrayTypeInfo__ctor_m574A695A8BC3854E038875B5EDA049ADCE1121BA(L_37, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_37;
goto IL_06ec;
}
IL_00b9:
{
Type_t * L_38 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL);
bool L_41 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_38, (Type_t *)L_40, /*hidden argument*/NULL);
if (!L_41)
{
goto IL_00d6;
}
}
{
Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 * L_42 = (Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 *)il2cpp_codegen_object_new(Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3_il2cpp_TypeInfo_var);
Int16ArrayTypeInfo__ctor_mF1C882F2ECD07C3ACE31BF421C84375783557470(L_42, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_42;
goto IL_06ec;
}
IL_00d6:
{
Type_t * L_43 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_44 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_45 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_44, /*hidden argument*/NULL);
bool L_46 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_43, (Type_t *)L_45, /*hidden argument*/NULL);
if (!L_46)
{
goto IL_00f3;
}
}
{
UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE * L_47 = (UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE *)il2cpp_codegen_object_new(UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE_il2cpp_TypeInfo_var);
UInt16ArrayTypeInfo__ctor_m47BF92C31CA6C00BF2934AE7D7B30BBE7340C2FE(L_47, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_47;
goto IL_06ec;
}
IL_00f3:
{
Type_t * L_48 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL);
bool L_51 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_48, (Type_t *)L_50, /*hidden argument*/NULL);
if (!L_51)
{
goto IL_0110;
}
}
{
Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C * L_52 = (Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C *)il2cpp_codegen_object_new(Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C_il2cpp_TypeInfo_var);
Int32ArrayTypeInfo__ctor_m9D7274FDA03ACB4C441E103CB50E6BE7DBF548F5(L_52, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_52;
goto IL_06ec;
}
IL_0110:
{
Type_t * L_53 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_54 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_55 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_54, /*hidden argument*/NULL);
bool L_56 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_53, (Type_t *)L_55, /*hidden argument*/NULL);
if (!L_56)
{
goto IL_012d;
}
}
{
UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC * L_57 = (UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC *)il2cpp_codegen_object_new(UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC_il2cpp_TypeInfo_var);
UInt32ArrayTypeInfo__ctor_m6E6B67C602B24ECD669EF5C8A05DE8994F4B2030(L_57, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_57;
goto IL_06ec;
}
IL_012d:
{
Type_t * L_58 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_59 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_60 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_59, /*hidden argument*/NULL);
bool L_61 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_58, (Type_t *)L_60, /*hidden argument*/NULL);
if (!L_61)
{
goto IL_014a;
}
}
{
Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC * L_62 = (Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC *)il2cpp_codegen_object_new(Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC_il2cpp_TypeInfo_var);
Int64ArrayTypeInfo__ctor_m0420AE4B52AE5BD112A2B29B0D12C0A6FB4B931D(L_62, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_62;
goto IL_06ec;
}
IL_014a:
{
Type_t * L_63 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_64 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_65 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_64, /*hidden argument*/NULL);
bool L_66 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_63, (Type_t *)L_65, /*hidden argument*/NULL);
if (!L_66)
{
goto IL_0167;
}
}
{
UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 * L_67 = (UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 *)il2cpp_codegen_object_new(UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5_il2cpp_TypeInfo_var);
UInt64ArrayTypeInfo__ctor_m7FD48AB4A63443625F680B68E2B80C17B694F26F(L_67, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_67;
goto IL_06ec;
}
IL_0167:
{
Type_t * L_68 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_69 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_70 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_69, /*hidden argument*/NULL);
bool L_71 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_68, (Type_t *)L_70, /*hidden argument*/NULL);
if (!L_71)
{
goto IL_0184;
}
}
{
CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7 * L_72 = (CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7 *)il2cpp_codegen_object_new(CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7_il2cpp_TypeInfo_var);
CharArrayTypeInfo__ctor_m1EE2437D82CF59C21FD9A6202A9BDE9646CA8DDB(L_72, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_72;
goto IL_06ec;
}
IL_0184:
{
Type_t * L_73 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_74 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_75 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_74, /*hidden argument*/NULL);
bool L_76 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_73, (Type_t *)L_75, /*hidden argument*/NULL);
if (!L_76)
{
goto IL_01a1;
}
}
{
DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2 * L_77 = (DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2 *)il2cpp_codegen_object_new(DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2_il2cpp_TypeInfo_var);
DoubleArrayTypeInfo__ctor_mA1D7B8202A7F5FE4462E05403AF389C57308729D(L_77, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_77;
goto IL_06ec;
}
IL_01a1:
{
Type_t * L_78 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_79 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_80 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_79, /*hidden argument*/NULL);
bool L_81 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_78, (Type_t *)L_80, /*hidden argument*/NULL);
if (!L_81)
{
goto IL_01be;
}
}
{
SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 * L_82 = (SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 *)il2cpp_codegen_object_new(SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239_il2cpp_TypeInfo_var);
SingleArrayTypeInfo__ctor_m9897E1859A9FBE59C35E997146A165465927226F(L_82, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_82;
goto IL_06ec;
}
IL_01be:
{
Type_t * L_83 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_84 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_85 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_84, /*hidden argument*/NULL);
bool L_86 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_83, (Type_t *)L_85, /*hidden argument*/NULL);
if (!L_86)
{
goto IL_01db;
}
}
{
IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 * L_87 = (IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 *)il2cpp_codegen_object_new(IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702_il2cpp_TypeInfo_var);
IntPtrArrayTypeInfo__ctor_mEAB7419D27051053AAF97425F4CE4283CB6316EF(L_87, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_87;
goto IL_06ec;
}
IL_01db:
{
Type_t * L_88 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_89 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_90 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_89, /*hidden argument*/NULL);
bool L_91 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_88, (Type_t *)L_90, /*hidden argument*/NULL);
if (!L_91)
{
goto IL_01f8;
}
}
{
UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C * L_92 = (UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C *)il2cpp_codegen_object_new(UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C_il2cpp_TypeInfo_var);
UIntPtrArrayTypeInfo__ctor_m2ED85F03228949555DADD7E37416A143A58E3601(L_92, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_92;
goto IL_06ec;
}
IL_01f8:
{
Type_t * L_93 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_94 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_95 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_94, /*hidden argument*/NULL);
bool L_96 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_93, (Type_t *)L_95, /*hidden argument*/NULL);
if (!L_96)
{
goto IL_0215;
}
}
{
GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 * L_97 = (GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 *)il2cpp_codegen_object_new(GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068_il2cpp_TypeInfo_var);
GuidArrayTypeInfo__ctor_m60FBBC3A58A030148BD5092494CF7DD8BCDD4584(L_97, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_97;
goto IL_06ec;
}
IL_0215:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_98 = { reinterpret_cast<intptr_t> (ArrayTypeInfo_1_t917EFD3106B9A6A891D84AF0A1EAE86F7E53BA5A_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_99 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_98, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_100 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_101 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_100;
Type_t * L_102 = V_3;
NullCheck(L_101);
ArrayElementTypeCheck (L_101, L_102);
(L_101)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_102);
NullCheck((Type_t *)L_99);
Type_t * L_103 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_99, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_101);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_104 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_105 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_104;
Type_t * L_106 = V_3;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_107 = ___recursionCheck0;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_108 = Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6((Type_t *)L_106, (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_107, /*hidden argument*/NULL);
NullCheck(L_105);
ArrayElementTypeCheck (L_105, L_108);
(L_105)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_108);
RuntimeObject * L_109 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_103, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_105, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 *)Castclass((RuntimeObject*)L_109, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_024e:
{
Type_t * L_110 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
bool L_111 = Statics_IsEnum_m9CD80B63044F16008C4CA89353FA72D2CA63EABF((Type_t *)L_110, /*hidden argument*/NULL);
if (!L_111)
{
goto IL_037a;
}
}
{
Type_t * L_112 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
Type_t * L_113 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_112, /*hidden argument*/NULL);
V_4 = (Type_t *)L_113;
Type_t * L_114 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_115 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_116 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_115, /*hidden argument*/NULL);
bool L_117 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_114, (Type_t *)L_116, /*hidden argument*/NULL);
if (!L_117)
{
goto IL_027f;
}
}
{
EnumInt32TypeInfo_1_t5C17258B1E6484D7BA2C3A5D9F38DBF0C077D965 * L_118 = (EnumInt32TypeInfo_1_t5C17258B1E6484D7BA2C3A5D9F38DBF0C077D965 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 4));
(( void (*) (EnumInt32TypeInfo_1_t5C17258B1E6484D7BA2C3A5D9F38DBF0C077D965 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(L_118, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_118;
goto IL_06ec;
}
IL_027f:
{
Type_t * L_119 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_120 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_121 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_120, /*hidden argument*/NULL);
bool L_122 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_119, (Type_t *)L_121, /*hidden argument*/NULL);
if (!L_122)
{
goto IL_029d;
}
}
{
EnumUInt32TypeInfo_1_t60DB1748BBD22F544BA2323E6B33A584CFA5272D * L_123 = (EnumUInt32TypeInfo_1_t60DB1748BBD22F544BA2323E6B33A584CFA5272D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 6));
(( void (*) (EnumUInt32TypeInfo_1_t60DB1748BBD22F544BA2323E6B33A584CFA5272D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 7)->methodPointer)(L_123, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 7));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_123;
goto IL_06ec;
}
IL_029d:
{
Type_t * L_124 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_125 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_126 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_125, /*hidden argument*/NULL);
bool L_127 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_124, (Type_t *)L_126, /*hidden argument*/NULL);
if (!L_127)
{
goto IL_02bb;
}
}
{
EnumByteTypeInfo_1_tBFEE9F7DAF8B6B0E45A7A27A8D47C97A5F200586 * L_128 = (EnumByteTypeInfo_1_tBFEE9F7DAF8B6B0E45A7A27A8D47C97A5F200586 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 8));
(( void (*) (EnumByteTypeInfo_1_tBFEE9F7DAF8B6B0E45A7A27A8D47C97A5F200586 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 9)->methodPointer)(L_128, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 9));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_128;
goto IL_06ec;
}
IL_02bb:
{
Type_t * L_129 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_130 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_131 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_130, /*hidden argument*/NULL);
bool L_132 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_129, (Type_t *)L_131, /*hidden argument*/NULL);
if (!L_132)
{
goto IL_02d9;
}
}
{
EnumSByteTypeInfo_1_tAEEF1924CBD34AE1F55DDB2774EA22CEBCB29E30 * L_133 = (EnumSByteTypeInfo_1_tAEEF1924CBD34AE1F55DDB2774EA22CEBCB29E30 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 10));
(( void (*) (EnumSByteTypeInfo_1_tAEEF1924CBD34AE1F55DDB2774EA22CEBCB29E30 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 11)->methodPointer)(L_133, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 11));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_133;
goto IL_06ec;
}
IL_02d9:
{
Type_t * L_134 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_135 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_136 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_135, /*hidden argument*/NULL);
bool L_137 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_134, (Type_t *)L_136, /*hidden argument*/NULL);
if (!L_137)
{
goto IL_02f7;
}
}
{
EnumInt16TypeInfo_1_t90D5ABA45C93723A818060042673370948AE1371 * L_138 = (EnumInt16TypeInfo_1_t90D5ABA45C93723A818060042673370948AE1371 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 12));
(( void (*) (EnumInt16TypeInfo_1_t90D5ABA45C93723A818060042673370948AE1371 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 13)->methodPointer)(L_138, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 13));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_138;
goto IL_06ec;
}
IL_02f7:
{
Type_t * L_139 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_140 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_141 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_140, /*hidden argument*/NULL);
bool L_142 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_139, (Type_t *)L_141, /*hidden argument*/NULL);
if (!L_142)
{
goto IL_0315;
}
}
{
EnumUInt16TypeInfo_1_t542B0805A6994C007A37A16049B47E47EEA26411 * L_143 = (EnumUInt16TypeInfo_1_t542B0805A6994C007A37A16049B47E47EEA26411 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 14));
(( void (*) (EnumUInt16TypeInfo_1_t542B0805A6994C007A37A16049B47E47EEA26411 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 15)->methodPointer)(L_143, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 15));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_143;
goto IL_06ec;
}
IL_0315:
{
Type_t * L_144 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_145 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_146 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_145, /*hidden argument*/NULL);
bool L_147 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_144, (Type_t *)L_146, /*hidden argument*/NULL);
if (!L_147)
{
goto IL_0333;
}
}
{
EnumInt64TypeInfo_1_tAFED710C98DACAE84EB22580ED2079C472D09840 * L_148 = (EnumInt64TypeInfo_1_tAFED710C98DACAE84EB22580ED2079C472D09840 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 16));
(( void (*) (EnumInt64TypeInfo_1_tAFED710C98DACAE84EB22580ED2079C472D09840 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 17)->methodPointer)(L_148, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 17));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_148;
goto IL_06ec;
}
IL_0333:
{
Type_t * L_149 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_150 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_151 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_150, /*hidden argument*/NULL);
bool L_152 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_149, (Type_t *)L_151, /*hidden argument*/NULL);
if (!L_152)
{
goto IL_0351;
}
}
{
EnumUInt64TypeInfo_1_t1DE63D5E64371D09215D2A077FB9D51DCE30B23C * L_153 = (EnumUInt64TypeInfo_1_t1DE63D5E64371D09215D2A077FB9D51DCE30B23C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 18));
(( void (*) (EnumUInt64TypeInfo_1_t1DE63D5E64371D09215D2A077FB9D51DCE30B23C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 19)->methodPointer)(L_153, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 19));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_153;
goto IL_06ec;
}
IL_0351:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_154 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_155 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_154;
Type_t * L_156 = V_1;
NullCheck((MemberInfo_t *)L_156);
String_t* L_157 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_156);
NullCheck(L_155);
ArrayElementTypeCheck (L_155, L_157);
(L_155)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_157);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_158 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_155;
Type_t * L_159 = V_4;
NullCheck((MemberInfo_t *)L_159);
String_t* L_160 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_159);
NullCheck(L_158);
ArrayElementTypeCheck (L_158, L_160);
(L_158)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_160);
String_t* L_161 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB((String_t*)_stringLiteralAFCEDBC2312C37DE46DE59F51E7A76B1B351DD75, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_158, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_162 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_162, (String_t*)L_161, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_162, NULL, Statics_CreateDefaultTypeInfo_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m0A00AC6719CA0329C8C723DA5D076192B0688510_RuntimeMethod_var);
}
IL_037a:
{
Type_t * L_163 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_164 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_165 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_164, /*hidden argument*/NULL);
bool L_166 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_163, (Type_t *)L_165, /*hidden argument*/NULL);
if (!L_166)
{
goto IL_0397;
}
}
{
StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 * L_167 = (StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 *)il2cpp_codegen_object_new(StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26_il2cpp_TypeInfo_var);
StringTypeInfo__ctor_mCBEF207AA52314389CDE3589F55D5A3B4CA48ADD(L_167, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_167;
goto IL_06ec;
}
IL_0397:
{
Type_t * L_168 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_169 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_170 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_169, /*hidden argument*/NULL);
bool L_171 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_168, (Type_t *)L_170, /*hidden argument*/NULL);
if (!L_171)
{
goto IL_03b4;
}
}
{
BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772 * L_172 = (BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772 *)il2cpp_codegen_object_new(BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772_il2cpp_TypeInfo_var);
BooleanTypeInfo__ctor_mA6C506EA7D9651E4024FD3B1612F2170D7EF37B5(L_172, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_172;
goto IL_06ec;
}
IL_03b4:
{
Type_t * L_173 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_174 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_175 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_174, /*hidden argument*/NULL);
bool L_176 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_173, (Type_t *)L_175, /*hidden argument*/NULL);
if (!L_176)
{
goto IL_03d1;
}
}
{
ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F * L_177 = (ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F *)il2cpp_codegen_object_new(ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F_il2cpp_TypeInfo_var);
ByteTypeInfo__ctor_mC04ADDE2C15F05E2B211965E5E3BFC777BB32776(L_177, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_177;
goto IL_06ec;
}
IL_03d1:
{
Type_t * L_178 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_179 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_180 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_179, /*hidden argument*/NULL);
bool L_181 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_178, (Type_t *)L_180, /*hidden argument*/NULL);
if (!L_181)
{
goto IL_03ee;
}
}
{
SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C * L_182 = (SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C *)il2cpp_codegen_object_new(SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C_il2cpp_TypeInfo_var);
SByteTypeInfo__ctor_mE051EE1E75CBE7BF5D6F0DEBCD1B2EC3B55DD89E(L_182, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_182;
goto IL_06ec;
}
IL_03ee:
{
Type_t * L_183 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_184 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_185 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_184, /*hidden argument*/NULL);
bool L_186 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_183, (Type_t *)L_185, /*hidden argument*/NULL);
if (!L_186)
{
goto IL_040b;
}
}
{
Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B * L_187 = (Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B *)il2cpp_codegen_object_new(Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B_il2cpp_TypeInfo_var);
Int16TypeInfo__ctor_m32663BF727B1441F924AF3C2440672AD69A8A0D0(L_187, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_187;
goto IL_06ec;
}
IL_040b:
{
Type_t * L_188 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_189 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_190 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_189, /*hidden argument*/NULL);
bool L_191 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_188, (Type_t *)L_190, /*hidden argument*/NULL);
if (!L_191)
{
goto IL_0428;
}
}
{
UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E * L_192 = (UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E *)il2cpp_codegen_object_new(UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E_il2cpp_TypeInfo_var);
UInt16TypeInfo__ctor_mCC09171DCA51C7C406B0A16C46D5EF4D07D089CD(L_192, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_192;
goto IL_06ec;
}
IL_0428:
{
Type_t * L_193 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_194 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_195 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_194, /*hidden argument*/NULL);
bool L_196 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_193, (Type_t *)L_195, /*hidden argument*/NULL);
if (!L_196)
{
goto IL_0445;
}
}
{
Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C * L_197 = (Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C *)il2cpp_codegen_object_new(Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C_il2cpp_TypeInfo_var);
Int32TypeInfo__ctor_mFB5D5C183B9CEADA879A9B192E5F6E613EF79ACC(L_197, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_197;
goto IL_06ec;
}
IL_0445:
{
Type_t * L_198 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_199 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_200 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_199, /*hidden argument*/NULL);
bool L_201 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_198, (Type_t *)L_200, /*hidden argument*/NULL);
if (!L_201)
{
goto IL_0462;
}
}
{
UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 * L_202 = (UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 *)il2cpp_codegen_object_new(UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59_il2cpp_TypeInfo_var);
UInt32TypeInfo__ctor_m5492D535F1F613D8B2160CCB6782ECA813E89181(L_202, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_202;
goto IL_06ec;
}
IL_0462:
{
Type_t * L_203 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_204 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_205 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_204, /*hidden argument*/NULL);
bool L_206 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_203, (Type_t *)L_205, /*hidden argument*/NULL);
if (!L_206)
{
goto IL_047f;
}
}
{
Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 * L_207 = (Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 *)il2cpp_codegen_object_new(Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5_il2cpp_TypeInfo_var);
Int64TypeInfo__ctor_m34E0E0F18CF350928B7FFA21BB7FBF14AB2D2783(L_207, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_207;
goto IL_06ec;
}
IL_047f:
{
Type_t * L_208 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_209 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_210 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_209, /*hidden argument*/NULL);
bool L_211 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_208, (Type_t *)L_210, /*hidden argument*/NULL);
if (!L_211)
{
goto IL_049c;
}
}
{
UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E * L_212 = (UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E *)il2cpp_codegen_object_new(UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E_il2cpp_TypeInfo_var);
UInt64TypeInfo__ctor_m237E06B639D1A9D0DFFDD3795FEABE0B50F245AE(L_212, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_212;
goto IL_06ec;
}
IL_049c:
{
Type_t * L_213 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_214 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_215 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_214, /*hidden argument*/NULL);
bool L_216 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_213, (Type_t *)L_215, /*hidden argument*/NULL);
if (!L_216)
{
goto IL_04b9;
}
}
{
CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1 * L_217 = (CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1 *)il2cpp_codegen_object_new(CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1_il2cpp_TypeInfo_var);
CharTypeInfo__ctor_m83F187FC1D323E6E2FA872CF3153BAB1F76AC298(L_217, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_217;
goto IL_06ec;
}
IL_04b9:
{
Type_t * L_218 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_219 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_220 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_219, /*hidden argument*/NULL);
bool L_221 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_218, (Type_t *)L_220, /*hidden argument*/NULL);
if (!L_221)
{
goto IL_04d6;
}
}
{
DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73 * L_222 = (DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73 *)il2cpp_codegen_object_new(DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73_il2cpp_TypeInfo_var);
DoubleTypeInfo__ctor_m0FC3E8A06AF05EE78EBFC4BEB3C45686DE65143B(L_222, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_222;
goto IL_06ec;
}
IL_04d6:
{
Type_t * L_223 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_224 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_225 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_224, /*hidden argument*/NULL);
bool L_226 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_223, (Type_t *)L_225, /*hidden argument*/NULL);
if (!L_226)
{
goto IL_04f3;
}
}
{
SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 * L_227 = (SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 *)il2cpp_codegen_object_new(SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8_il2cpp_TypeInfo_var);
SingleTypeInfo__ctor_mA5EBEEF7D8FA70CC36839D33FFEE1E92B36733C4(L_227, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_227;
goto IL_06ec;
}
IL_04f3:
{
Type_t * L_228 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_229 = { reinterpret_cast<intptr_t> (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_230 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_229, /*hidden argument*/NULL);
bool L_231 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_228, (Type_t *)L_230, /*hidden argument*/NULL);
if (!L_231)
{
goto IL_0510;
}
}
{
DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405 * L_232 = (DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405 *)il2cpp_codegen_object_new(DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405_il2cpp_TypeInfo_var);
DateTimeTypeInfo__ctor_m963A7C1FB683821F9728B33B2BA04C0D8A73B1F4(L_232, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_232;
goto IL_06ec;
}
IL_0510:
{
Type_t * L_233 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_234 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_235 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_234, /*hidden argument*/NULL);
bool L_236 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_233, (Type_t *)L_235, /*hidden argument*/NULL);
if (!L_236)
{
goto IL_052d;
}
}
{
DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85 * L_237 = (DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85 *)il2cpp_codegen_object_new(DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85_il2cpp_TypeInfo_var);
DecimalTypeInfo__ctor_mF2531EBF69BEC23272D7EBC06FB6CB789EE282A3(L_237, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_237;
goto IL_06ec;
}
IL_052d:
{
Type_t * L_238 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_239 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_240 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_239, /*hidden argument*/NULL);
bool L_241 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_238, (Type_t *)L_240, /*hidden argument*/NULL);
if (!L_241)
{
goto IL_054a;
}
}
{
IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 * L_242 = (IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 *)il2cpp_codegen_object_new(IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55_il2cpp_TypeInfo_var);
IntPtrTypeInfo__ctor_m01105F4A30A454AC162C62C5D3FF447A225DA07B(L_242, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_242;
goto IL_06ec;
}
IL_054a:
{
Type_t * L_243 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_244 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_245 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_244, /*hidden argument*/NULL);
bool L_246 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_243, (Type_t *)L_245, /*hidden argument*/NULL);
if (!L_246)
{
goto IL_0567;
}
}
{
UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D * L_247 = (UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D *)il2cpp_codegen_object_new(UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D_il2cpp_TypeInfo_var);
UIntPtrTypeInfo__ctor_m10665E5B71030580321F853F0AA64AA6450867BE(L_247, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_247;
goto IL_06ec;
}
IL_0567:
{
Type_t * L_248 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_249 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_250 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_249, /*hidden argument*/NULL);
bool L_251 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_248, (Type_t *)L_250, /*hidden argument*/NULL);
if (!L_251)
{
goto IL_0584;
}
}
{
GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED * L_252 = (GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED *)il2cpp_codegen_object_new(GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED_il2cpp_TypeInfo_var);
GuidTypeInfo__ctor_m16193A1FFDF45604394A54B7D5695069EC1306B6(L_252, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_252;
goto IL_06ec;
}
IL_0584:
{
Type_t * L_253 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_254 = { reinterpret_cast<intptr_t> (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_255 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_254, /*hidden argument*/NULL);
bool L_256 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_253, (Type_t *)L_255, /*hidden argument*/NULL);
if (!L_256)
{
goto IL_05a1;
}
}
{
TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA * L_257 = (TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA *)il2cpp_codegen_object_new(TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA_il2cpp_TypeInfo_var);
TimeSpanTypeInfo__ctor_m61DE1869347F3CAD1FD95898E7E6BFDBB82EF248(L_257, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_257;
goto IL_06ec;
}
IL_05a1:
{
Type_t * L_258 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_259 = { reinterpret_cast<intptr_t> (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_260 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_259, /*hidden argument*/NULL);
bool L_261 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_258, (Type_t *)L_260, /*hidden argument*/NULL);
if (!L_261)
{
goto IL_05be;
}
}
{
DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7 * L_262 = (DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7 *)il2cpp_codegen_object_new(DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7_il2cpp_TypeInfo_var);
DateTimeOffsetTypeInfo__ctor_m15CCCCC4AC20E4A3CE0A9F9F07D45C502A64C386(L_262, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_262;
goto IL_06ec;
}
IL_05be:
{
Type_t * L_263 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_264 = { reinterpret_cast<intptr_t> (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_265 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_264, /*hidden argument*/NULL);
bool L_266 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_263, (Type_t *)L_265, /*hidden argument*/NULL);
if (!L_266)
{
goto IL_05db;
}
}
{
NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D * L_267 = (NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D *)il2cpp_codegen_object_new(NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D_il2cpp_TypeInfo_var);
NullTypeInfo_1__ctor_m26AD9AD184C3134222FC7ECD036461D6CB55769C(L_267, /*hidden argument*/NullTypeInfo_1__ctor_m26AD9AD184C3134222FC7ECD036461D6CB55769C_RuntimeMethod_var);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_267;
goto IL_06ec;
}
IL_05db:
{
Type_t * L_268 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_269 = { reinterpret_cast<intptr_t> (KeyValuePair_2_tE2B149987A7A0267959C8B92C6923BAB9823089D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_270 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_269, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
bool L_271 = Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699((Type_t *)L_268, (RuntimeObject *)L_270, /*hidden argument*/NULL);
if (!L_271)
{
goto IL_0632;
}
}
{
Type_t * L_272 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_273 = Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9((Type_t *)L_272, /*hidden argument*/NULL);
V_5 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_273;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_274 = { reinterpret_cast<intptr_t> (KeyValuePairTypeInfo_2_t48B3C70F6BED0E9D17020012EC2D719996E9A241_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_275 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_274, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_276 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_277 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_276;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_278 = V_5;
NullCheck(L_278);
int32_t L_279 = 0;
Type_t * L_280 = (L_278)->GetAt(static_cast<il2cpp_array_size_t>(L_279));
NullCheck(L_277);
ArrayElementTypeCheck (L_277, L_280);
(L_277)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_280);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_281 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_277;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_282 = V_5;
NullCheck(L_282);
int32_t L_283 = 1;
Type_t * L_284 = (L_282)->GetAt(static_cast<il2cpp_array_size_t>(L_283));
NullCheck(L_281);
ArrayElementTypeCheck (L_281, L_284);
(L_281)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_284);
NullCheck((Type_t *)L_275);
Type_t * L_285 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_275, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_281);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_286 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_287 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_286;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_288 = ___recursionCheck0;
NullCheck(L_287);
ArrayElementTypeCheck (L_287, L_288);
(L_287)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_288);
RuntimeObject * L_289 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_285, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_287, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 *)Castclass((RuntimeObject*)L_289, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_0632:
{
Type_t * L_290 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_291 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_292 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_291, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
bool L_293 = Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699((Type_t *)L_290, (RuntimeObject *)L_292, /*hidden argument*/NULL);
if (!L_293)
{
goto IL_067f;
}
}
{
Type_t * L_294 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_295 = Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9((Type_t *)L_294, /*hidden argument*/NULL);
V_6 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_295;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_296 = { reinterpret_cast<intptr_t> (NullableTypeInfo_1_tDCBDA4871397F1360E9A30276BDABFDABB3B9115_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_297 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_296, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_298 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_299 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_298;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_300 = V_6;
NullCheck(L_300);
int32_t L_301 = 0;
Type_t * L_302 = (L_300)->GetAt(static_cast<il2cpp_array_size_t>(L_301));
NullCheck(L_299);
ArrayElementTypeCheck (L_299, L_302);
(L_299)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_302);
NullCheck((Type_t *)L_297);
Type_t * L_303 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_297, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_299);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_304 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_305 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_304;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_306 = ___recursionCheck0;
NullCheck(L_305);
ArrayElementTypeCheck (L_305, L_306);
(L_305)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_306);
RuntimeObject * L_307 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_303, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_305, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 *)Castclass((RuntimeObject*)L_307, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_067f:
{
Type_t * L_308 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
Type_t * L_309 = Statics_FindEnumerableElementType_mE2B9BCD8FECD8262FA51BED1DD0AE91DD8C37180((Type_t *)L_308, /*hidden argument*/NULL);
V_7 = (Type_t *)L_309;
Type_t * L_310 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_311 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9((Type_t *)L_310, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_311)
{
goto IL_06cd;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_312 = { reinterpret_cast<intptr_t> (EnumerableTypeInfo_2_t1B81D72B3A33D350331D3C9F1A4CA859454C351E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_313 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_312, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_314 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_315 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_314;
Type_t * L_316 = V_1;
NullCheck(L_315);
ArrayElementTypeCheck (L_315, L_316);
(L_315)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_316);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_317 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_315;
Type_t * L_318 = V_7;
NullCheck(L_317);
ArrayElementTypeCheck (L_317, L_318);
(L_317)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_318);
NullCheck((Type_t *)L_313);
Type_t * L_319 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_313, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_317);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_320 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_321 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_320;
Type_t * L_322 = V_7;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_323 = ___recursionCheck0;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_324 = Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6((Type_t *)L_322, (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_323, /*hidden argument*/NULL);
NullCheck(L_321);
ArrayElementTypeCheck (L_321, L_324);
(L_321)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_324);
RuntimeObject * L_325 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_319, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_321, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 *)Castclass((RuntimeObject*)L_325, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_06cd:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_326 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_327 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_326;
Type_t * L_328 = V_1;
NullCheck((MemberInfo_t *)L_328);
String_t* L_329 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_328);
NullCheck(L_327);
ArrayElementTypeCheck (L_327, L_329);
(L_327)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_329);
String_t* L_330 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB((String_t*)_stringLiteralDBA0F8BCBC38F520B1A5C333F28EEB1DDA183472, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_327, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_331 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_331, (String_t*)L_330, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_331, NULL, Statics_CreateDefaultTypeInfo_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m0A00AC6719CA0329C8C723DA5D076192B0688510_RuntimeMethod_var);
}
IL_06ec:
{
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_332 = V_0;
return ((TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 *)Castclass((RuntimeObject*)L_332, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
}
}
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.Statics::CreateDefaultTypeInfo<System.UInt64>(System.Collections.Generic.List`1<System.Type>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C * Statics_CreateDefaultTypeInfo_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m081A0AFC3C7A0D6746C9148EF02F4182EA58D5A4_gshared (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * ___recursionCheck0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Statics_CreateDefaultTypeInfo_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m081A0AFC3C7A0D6746C9148EF02F4182EA58D5A4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * V_0 = NULL;
Type_t * V_1 = NULL;
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * V_2 = NULL;
Type_t * V_3 = NULL;
Type_t * V_4 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_5 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_6 = NULL;
Type_t * V_7 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_1 = (Type_t *)L_1;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_2 = ___recursionCheck0;
Type_t * L_3 = V_1;
NullCheck((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_2);
bool L_4 = List_1_Contains_m6A7AF0218C770BDC786185D61552281BF4051593((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_2, (Type_t *)L_3, /*hidden argument*/List_1_Contains_m6A7AF0218C770BDC786185D61552281BF4051593_RuntimeMethod_var);
if (!L_4)
{
goto IL_0024;
}
}
{
String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteralF084C7C4DE4AEADD0AA7AE2EDEFF6D9FB3DDA7A1, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_6 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_6, (String_t*)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Statics_CreateDefaultTypeInfo_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m081A0AFC3C7A0D6746C9148EF02F4182EA58D5A4_RuntimeMethod_var);
}
IL_0024:
{
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_7 = ___recursionCheck0;
Type_t * L_8 = V_1;
NullCheck((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_7);
List_1_Add_m0B2D1D24DF475E0A9FF3ACB89CFFB9FD07958AD3((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_7, (Type_t *)L_8, /*hidden argument*/List_1_Add_m0B2D1D24DF475E0A9FF3ACB89CFFB9FD07958AD3_RuntimeMethod_var);
Type_t * L_9 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_10 = Statics_GetCustomAttribute_TisEventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85_m4F16FDCBB99EAD8A4E96FEDA6F2C0CD45CFA713F((Type_t *)L_9, /*hidden argument*/Statics_GetCustomAttribute_TisEventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85_m4F16FDCBB99EAD8A4E96FEDA6F2C0CD45CFA713F_RuntimeMethod_var);
V_2 = (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 *)L_10;
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_11 = V_2;
if (L_11)
{
goto IL_003d;
}
}
{
Type_t * L_12 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
CompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC * L_13 = Statics_GetCustomAttribute_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m7ECE22C72C43417D525F0001E8CB60E1000579A9((Type_t *)L_12, /*hidden argument*/Statics_GetCustomAttribute_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m7ECE22C72C43417D525F0001E8CB60E1000579A9_RuntimeMethod_var);
if (!L_13)
{
goto IL_0050;
}
}
IL_003d:
{
Type_t * L_14 = V_1;
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_15 = V_2;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_16 = ___recursionCheck0;
TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD * L_17 = (TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD *)il2cpp_codegen_object_new(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD_il2cpp_TypeInfo_var);
TypeAnalysis__ctor_m7FE311A013186B7421FCA3574941907DB1FA4632(L_17, (Type_t *)L_14, (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 *)L_15, (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_16, /*hidden argument*/NULL);
InvokeTypeInfo_1_tC4337A985E039756D5B881107DD3104C636034C1 * L_18 = (InvokeTypeInfo_1_tC4337A985E039756D5B881107DD3104C636034C1 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 1));
(( void (*) (InvokeTypeInfo_1_tC4337A985E039756D5B881107DD3104C636034C1 *, TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(L_18, (TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_18;
goto IL_06ec;
}
IL_0050:
{
Type_t * L_19 = V_1;
NullCheck((Type_t *)L_19);
bool L_20 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE((Type_t *)L_19, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_024e;
}
}
{
Type_t * L_21 = V_1;
NullCheck((Type_t *)L_21);
Type_t * L_22 = VirtFuncInvoker0< Type_t * >::Invoke(98 /* System.Type System.Type::GetElementType() */, (Type_t *)L_21);
V_3 = (Type_t *)L_22;
Type_t * L_23 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL);
bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL);
if (!L_26)
{
goto IL_007f;
}
}
{
BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663 * L_27 = (BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663 *)il2cpp_codegen_object_new(BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663_il2cpp_TypeInfo_var);
BooleanArrayTypeInfo__ctor_m4C42FDCC33CCC47576364D5CD3566487FBB26241(L_27, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_27;
goto IL_06ec;
}
IL_007f:
{
Type_t * L_28 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
bool L_31 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_28, (Type_t *)L_30, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_009c;
}
}
{
ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB * L_32 = (ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB *)il2cpp_codegen_object_new(ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB_il2cpp_TypeInfo_var);
ByteArrayTypeInfo__ctor_mC48373891BDF2EE356654D62BCFE3E252D365AD3(L_32, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_32;
goto IL_06ec;
}
IL_009c:
{
Type_t * L_33 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_34 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_35 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_34, /*hidden argument*/NULL);
bool L_36 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_33, (Type_t *)L_35, /*hidden argument*/NULL);
if (!L_36)
{
goto IL_00b9;
}
}
{
SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 * L_37 = (SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 *)il2cpp_codegen_object_new(SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6_il2cpp_TypeInfo_var);
SByteArrayTypeInfo__ctor_m574A695A8BC3854E038875B5EDA049ADCE1121BA(L_37, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_37;
goto IL_06ec;
}
IL_00b9:
{
Type_t * L_38 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL);
bool L_41 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_38, (Type_t *)L_40, /*hidden argument*/NULL);
if (!L_41)
{
goto IL_00d6;
}
}
{
Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 * L_42 = (Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 *)il2cpp_codegen_object_new(Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3_il2cpp_TypeInfo_var);
Int16ArrayTypeInfo__ctor_mF1C882F2ECD07C3ACE31BF421C84375783557470(L_42, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_42;
goto IL_06ec;
}
IL_00d6:
{
Type_t * L_43 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_44 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_45 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_44, /*hidden argument*/NULL);
bool L_46 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_43, (Type_t *)L_45, /*hidden argument*/NULL);
if (!L_46)
{
goto IL_00f3;
}
}
{
UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE * L_47 = (UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE *)il2cpp_codegen_object_new(UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE_il2cpp_TypeInfo_var);
UInt16ArrayTypeInfo__ctor_m47BF92C31CA6C00BF2934AE7D7B30BBE7340C2FE(L_47, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_47;
goto IL_06ec;
}
IL_00f3:
{
Type_t * L_48 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL);
bool L_51 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_48, (Type_t *)L_50, /*hidden argument*/NULL);
if (!L_51)
{
goto IL_0110;
}
}
{
Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C * L_52 = (Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C *)il2cpp_codegen_object_new(Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C_il2cpp_TypeInfo_var);
Int32ArrayTypeInfo__ctor_m9D7274FDA03ACB4C441E103CB50E6BE7DBF548F5(L_52, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_52;
goto IL_06ec;
}
IL_0110:
{
Type_t * L_53 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_54 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_55 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_54, /*hidden argument*/NULL);
bool L_56 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_53, (Type_t *)L_55, /*hidden argument*/NULL);
if (!L_56)
{
goto IL_012d;
}
}
{
UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC * L_57 = (UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC *)il2cpp_codegen_object_new(UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC_il2cpp_TypeInfo_var);
UInt32ArrayTypeInfo__ctor_m6E6B67C602B24ECD669EF5C8A05DE8994F4B2030(L_57, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_57;
goto IL_06ec;
}
IL_012d:
{
Type_t * L_58 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_59 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_60 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_59, /*hidden argument*/NULL);
bool L_61 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_58, (Type_t *)L_60, /*hidden argument*/NULL);
if (!L_61)
{
goto IL_014a;
}
}
{
Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC * L_62 = (Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC *)il2cpp_codegen_object_new(Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC_il2cpp_TypeInfo_var);
Int64ArrayTypeInfo__ctor_m0420AE4B52AE5BD112A2B29B0D12C0A6FB4B931D(L_62, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_62;
goto IL_06ec;
}
IL_014a:
{
Type_t * L_63 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_64 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_65 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_64, /*hidden argument*/NULL);
bool L_66 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_63, (Type_t *)L_65, /*hidden argument*/NULL);
if (!L_66)
{
goto IL_0167;
}
}
{
UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 * L_67 = (UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 *)il2cpp_codegen_object_new(UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5_il2cpp_TypeInfo_var);
UInt64ArrayTypeInfo__ctor_m7FD48AB4A63443625F680B68E2B80C17B694F26F(L_67, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_67;
goto IL_06ec;
}
IL_0167:
{
Type_t * L_68 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_69 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_70 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_69, /*hidden argument*/NULL);
bool L_71 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_68, (Type_t *)L_70, /*hidden argument*/NULL);
if (!L_71)
{
goto IL_0184;
}
}
{
CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7 * L_72 = (CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7 *)il2cpp_codegen_object_new(CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7_il2cpp_TypeInfo_var);
CharArrayTypeInfo__ctor_m1EE2437D82CF59C21FD9A6202A9BDE9646CA8DDB(L_72, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_72;
goto IL_06ec;
}
IL_0184:
{
Type_t * L_73 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_74 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_75 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_74, /*hidden argument*/NULL);
bool L_76 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_73, (Type_t *)L_75, /*hidden argument*/NULL);
if (!L_76)
{
goto IL_01a1;
}
}
{
DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2 * L_77 = (DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2 *)il2cpp_codegen_object_new(DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2_il2cpp_TypeInfo_var);
DoubleArrayTypeInfo__ctor_mA1D7B8202A7F5FE4462E05403AF389C57308729D(L_77, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_77;
goto IL_06ec;
}
IL_01a1:
{
Type_t * L_78 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_79 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_80 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_79, /*hidden argument*/NULL);
bool L_81 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_78, (Type_t *)L_80, /*hidden argument*/NULL);
if (!L_81)
{
goto IL_01be;
}
}
{
SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 * L_82 = (SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 *)il2cpp_codegen_object_new(SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239_il2cpp_TypeInfo_var);
SingleArrayTypeInfo__ctor_m9897E1859A9FBE59C35E997146A165465927226F(L_82, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_82;
goto IL_06ec;
}
IL_01be:
{
Type_t * L_83 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_84 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_85 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_84, /*hidden argument*/NULL);
bool L_86 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_83, (Type_t *)L_85, /*hidden argument*/NULL);
if (!L_86)
{
goto IL_01db;
}
}
{
IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 * L_87 = (IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 *)il2cpp_codegen_object_new(IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702_il2cpp_TypeInfo_var);
IntPtrArrayTypeInfo__ctor_mEAB7419D27051053AAF97425F4CE4283CB6316EF(L_87, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_87;
goto IL_06ec;
}
IL_01db:
{
Type_t * L_88 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_89 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_90 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_89, /*hidden argument*/NULL);
bool L_91 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_88, (Type_t *)L_90, /*hidden argument*/NULL);
if (!L_91)
{
goto IL_01f8;
}
}
{
UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C * L_92 = (UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C *)il2cpp_codegen_object_new(UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C_il2cpp_TypeInfo_var);
UIntPtrArrayTypeInfo__ctor_m2ED85F03228949555DADD7E37416A143A58E3601(L_92, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_92;
goto IL_06ec;
}
IL_01f8:
{
Type_t * L_93 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_94 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_95 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_94, /*hidden argument*/NULL);
bool L_96 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_93, (Type_t *)L_95, /*hidden argument*/NULL);
if (!L_96)
{
goto IL_0215;
}
}
{
GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 * L_97 = (GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 *)il2cpp_codegen_object_new(GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068_il2cpp_TypeInfo_var);
GuidArrayTypeInfo__ctor_m60FBBC3A58A030148BD5092494CF7DD8BCDD4584(L_97, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_97;
goto IL_06ec;
}
IL_0215:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_98 = { reinterpret_cast<intptr_t> (ArrayTypeInfo_1_t917EFD3106B9A6A891D84AF0A1EAE86F7E53BA5A_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_99 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_98, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_100 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_101 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_100;
Type_t * L_102 = V_3;
NullCheck(L_101);
ArrayElementTypeCheck (L_101, L_102);
(L_101)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_102);
NullCheck((Type_t *)L_99);
Type_t * L_103 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_99, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_101);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_104 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_105 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_104;
Type_t * L_106 = V_3;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_107 = ___recursionCheck0;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_108 = Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6((Type_t *)L_106, (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_107, /*hidden argument*/NULL);
NullCheck(L_105);
ArrayElementTypeCheck (L_105, L_108);
(L_105)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_108);
RuntimeObject * L_109 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_103, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_105, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C *)Castclass((RuntimeObject*)L_109, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_024e:
{
Type_t * L_110 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
bool L_111 = Statics_IsEnum_m9CD80B63044F16008C4CA89353FA72D2CA63EABF((Type_t *)L_110, /*hidden argument*/NULL);
if (!L_111)
{
goto IL_037a;
}
}
{
Type_t * L_112 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
Type_t * L_113 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_112, /*hidden argument*/NULL);
V_4 = (Type_t *)L_113;
Type_t * L_114 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_115 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_116 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_115, /*hidden argument*/NULL);
bool L_117 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_114, (Type_t *)L_116, /*hidden argument*/NULL);
if (!L_117)
{
goto IL_027f;
}
}
{
EnumInt32TypeInfo_1_tE0D43493118FD54F47A90FED58F8214C46278166 * L_118 = (EnumInt32TypeInfo_1_tE0D43493118FD54F47A90FED58F8214C46278166 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 4));
(( void (*) (EnumInt32TypeInfo_1_tE0D43493118FD54F47A90FED58F8214C46278166 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(L_118, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_118;
goto IL_06ec;
}
IL_027f:
{
Type_t * L_119 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_120 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_121 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_120, /*hidden argument*/NULL);
bool L_122 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_119, (Type_t *)L_121, /*hidden argument*/NULL);
if (!L_122)
{
goto IL_029d;
}
}
{
EnumUInt32TypeInfo_1_t2A568E2CE093EFE63CC3E1C0677C70C63480587E * L_123 = (EnumUInt32TypeInfo_1_t2A568E2CE093EFE63CC3E1C0677C70C63480587E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 6));
(( void (*) (EnumUInt32TypeInfo_1_t2A568E2CE093EFE63CC3E1C0677C70C63480587E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 7)->methodPointer)(L_123, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 7));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_123;
goto IL_06ec;
}
IL_029d:
{
Type_t * L_124 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_125 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_126 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_125, /*hidden argument*/NULL);
bool L_127 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_124, (Type_t *)L_126, /*hidden argument*/NULL);
if (!L_127)
{
goto IL_02bb;
}
}
{
EnumByteTypeInfo_1_t469284C0B09A0494903221C6D9322AB16D7AFD90 * L_128 = (EnumByteTypeInfo_1_t469284C0B09A0494903221C6D9322AB16D7AFD90 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 8));
(( void (*) (EnumByteTypeInfo_1_t469284C0B09A0494903221C6D9322AB16D7AFD90 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 9)->methodPointer)(L_128, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 9));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_128;
goto IL_06ec;
}
IL_02bb:
{
Type_t * L_129 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_130 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_131 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_130, /*hidden argument*/NULL);
bool L_132 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_129, (Type_t *)L_131, /*hidden argument*/NULL);
if (!L_132)
{
goto IL_02d9;
}
}
{
EnumSByteTypeInfo_1_t0D08BC7E2A706102C5F5884C967CAE1D60AFEE9C * L_133 = (EnumSByteTypeInfo_1_t0D08BC7E2A706102C5F5884C967CAE1D60AFEE9C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 10));
(( void (*) (EnumSByteTypeInfo_1_t0D08BC7E2A706102C5F5884C967CAE1D60AFEE9C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 11)->methodPointer)(L_133, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 11));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_133;
goto IL_06ec;
}
IL_02d9:
{
Type_t * L_134 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_135 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_136 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_135, /*hidden argument*/NULL);
bool L_137 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_134, (Type_t *)L_136, /*hidden argument*/NULL);
if (!L_137)
{
goto IL_02f7;
}
}
{
EnumInt16TypeInfo_1_tC7515DC021EFF6F3FEDA6B01287C2E0FB3B61330 * L_138 = (EnumInt16TypeInfo_1_tC7515DC021EFF6F3FEDA6B01287C2E0FB3B61330 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 12));
(( void (*) (EnumInt16TypeInfo_1_tC7515DC021EFF6F3FEDA6B01287C2E0FB3B61330 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 13)->methodPointer)(L_138, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 13));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_138;
goto IL_06ec;
}
IL_02f7:
{
Type_t * L_139 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_140 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_141 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_140, /*hidden argument*/NULL);
bool L_142 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_139, (Type_t *)L_141, /*hidden argument*/NULL);
if (!L_142)
{
goto IL_0315;
}
}
{
EnumUInt16TypeInfo_1_tAEA9CF6482001D4F456C1B2869309BCD3D0494AF * L_143 = (EnumUInt16TypeInfo_1_tAEA9CF6482001D4F456C1B2869309BCD3D0494AF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 14));
(( void (*) (EnumUInt16TypeInfo_1_tAEA9CF6482001D4F456C1B2869309BCD3D0494AF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 15)->methodPointer)(L_143, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 15));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_143;
goto IL_06ec;
}
IL_0315:
{
Type_t * L_144 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_145 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_146 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_145, /*hidden argument*/NULL);
bool L_147 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_144, (Type_t *)L_146, /*hidden argument*/NULL);
if (!L_147)
{
goto IL_0333;
}
}
{
EnumInt64TypeInfo_1_tC95C2272C8D7B0C51ABAFA97765A303D7C309A63 * L_148 = (EnumInt64TypeInfo_1_tC95C2272C8D7B0C51ABAFA97765A303D7C309A63 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 16));
(( void (*) (EnumInt64TypeInfo_1_tC95C2272C8D7B0C51ABAFA97765A303D7C309A63 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 17)->methodPointer)(L_148, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 17));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_148;
goto IL_06ec;
}
IL_0333:
{
Type_t * L_149 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_150 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_151 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_150, /*hidden argument*/NULL);
bool L_152 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_149, (Type_t *)L_151, /*hidden argument*/NULL);
if (!L_152)
{
goto IL_0351;
}
}
{
EnumUInt64TypeInfo_1_t393BB303A6262037A59A952165547C1DF8557A22 * L_153 = (EnumUInt64TypeInfo_1_t393BB303A6262037A59A952165547C1DF8557A22 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 18));
(( void (*) (EnumUInt64TypeInfo_1_t393BB303A6262037A59A952165547C1DF8557A22 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 19)->methodPointer)(L_153, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 19));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_153;
goto IL_06ec;
}
IL_0351:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_154 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_155 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_154;
Type_t * L_156 = V_1;
NullCheck((MemberInfo_t *)L_156);
String_t* L_157 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_156);
NullCheck(L_155);
ArrayElementTypeCheck (L_155, L_157);
(L_155)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_157);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_158 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_155;
Type_t * L_159 = V_4;
NullCheck((MemberInfo_t *)L_159);
String_t* L_160 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_159);
NullCheck(L_158);
ArrayElementTypeCheck (L_158, L_160);
(L_158)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_160);
String_t* L_161 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB((String_t*)_stringLiteralAFCEDBC2312C37DE46DE59F51E7A76B1B351DD75, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_158, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_162 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_162, (String_t*)L_161, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_162, NULL, Statics_CreateDefaultTypeInfo_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m081A0AFC3C7A0D6746C9148EF02F4182EA58D5A4_RuntimeMethod_var);
}
IL_037a:
{
Type_t * L_163 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_164 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_165 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_164, /*hidden argument*/NULL);
bool L_166 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_163, (Type_t *)L_165, /*hidden argument*/NULL);
if (!L_166)
{
goto IL_0397;
}
}
{
StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 * L_167 = (StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 *)il2cpp_codegen_object_new(StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26_il2cpp_TypeInfo_var);
StringTypeInfo__ctor_mCBEF207AA52314389CDE3589F55D5A3B4CA48ADD(L_167, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_167;
goto IL_06ec;
}
IL_0397:
{
Type_t * L_168 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_169 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_170 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_169, /*hidden argument*/NULL);
bool L_171 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_168, (Type_t *)L_170, /*hidden argument*/NULL);
if (!L_171)
{
goto IL_03b4;
}
}
{
BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772 * L_172 = (BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772 *)il2cpp_codegen_object_new(BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772_il2cpp_TypeInfo_var);
BooleanTypeInfo__ctor_mA6C506EA7D9651E4024FD3B1612F2170D7EF37B5(L_172, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_172;
goto IL_06ec;
}
IL_03b4:
{
Type_t * L_173 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_174 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_175 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_174, /*hidden argument*/NULL);
bool L_176 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_173, (Type_t *)L_175, /*hidden argument*/NULL);
if (!L_176)
{
goto IL_03d1;
}
}
{
ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F * L_177 = (ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F *)il2cpp_codegen_object_new(ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F_il2cpp_TypeInfo_var);
ByteTypeInfo__ctor_mC04ADDE2C15F05E2B211965E5E3BFC777BB32776(L_177, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_177;
goto IL_06ec;
}
IL_03d1:
{
Type_t * L_178 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_179 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_180 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_179, /*hidden argument*/NULL);
bool L_181 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_178, (Type_t *)L_180, /*hidden argument*/NULL);
if (!L_181)
{
goto IL_03ee;
}
}
{
SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C * L_182 = (SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C *)il2cpp_codegen_object_new(SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C_il2cpp_TypeInfo_var);
SByteTypeInfo__ctor_mE051EE1E75CBE7BF5D6F0DEBCD1B2EC3B55DD89E(L_182, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_182;
goto IL_06ec;
}
IL_03ee:
{
Type_t * L_183 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_184 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_185 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_184, /*hidden argument*/NULL);
bool L_186 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_183, (Type_t *)L_185, /*hidden argument*/NULL);
if (!L_186)
{
goto IL_040b;
}
}
{
Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B * L_187 = (Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B *)il2cpp_codegen_object_new(Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B_il2cpp_TypeInfo_var);
Int16TypeInfo__ctor_m32663BF727B1441F924AF3C2440672AD69A8A0D0(L_187, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_187;
goto IL_06ec;
}
IL_040b:
{
Type_t * L_188 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_189 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_190 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_189, /*hidden argument*/NULL);
bool L_191 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_188, (Type_t *)L_190, /*hidden argument*/NULL);
if (!L_191)
{
goto IL_0428;
}
}
{
UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E * L_192 = (UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E *)il2cpp_codegen_object_new(UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E_il2cpp_TypeInfo_var);
UInt16TypeInfo__ctor_mCC09171DCA51C7C406B0A16C46D5EF4D07D089CD(L_192, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_192;
goto IL_06ec;
}
IL_0428:
{
Type_t * L_193 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_194 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_195 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_194, /*hidden argument*/NULL);
bool L_196 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_193, (Type_t *)L_195, /*hidden argument*/NULL);
if (!L_196)
{
goto IL_0445;
}
}
{
Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C * L_197 = (Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C *)il2cpp_codegen_object_new(Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C_il2cpp_TypeInfo_var);
Int32TypeInfo__ctor_mFB5D5C183B9CEADA879A9B192E5F6E613EF79ACC(L_197, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_197;
goto IL_06ec;
}
IL_0445:
{
Type_t * L_198 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_199 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_200 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_199, /*hidden argument*/NULL);
bool L_201 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_198, (Type_t *)L_200, /*hidden argument*/NULL);
if (!L_201)
{
goto IL_0462;
}
}
{
UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 * L_202 = (UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 *)il2cpp_codegen_object_new(UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59_il2cpp_TypeInfo_var);
UInt32TypeInfo__ctor_m5492D535F1F613D8B2160CCB6782ECA813E89181(L_202, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_202;
goto IL_06ec;
}
IL_0462:
{
Type_t * L_203 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_204 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_205 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_204, /*hidden argument*/NULL);
bool L_206 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_203, (Type_t *)L_205, /*hidden argument*/NULL);
if (!L_206)
{
goto IL_047f;
}
}
{
Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 * L_207 = (Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 *)il2cpp_codegen_object_new(Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5_il2cpp_TypeInfo_var);
Int64TypeInfo__ctor_m34E0E0F18CF350928B7FFA21BB7FBF14AB2D2783(L_207, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_207;
goto IL_06ec;
}
IL_047f:
{
Type_t * L_208 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_209 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_210 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_209, /*hidden argument*/NULL);
bool L_211 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_208, (Type_t *)L_210, /*hidden argument*/NULL);
if (!L_211)
{
goto IL_049c;
}
}
{
UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E * L_212 = (UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E *)il2cpp_codegen_object_new(UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E_il2cpp_TypeInfo_var);
UInt64TypeInfo__ctor_m237E06B639D1A9D0DFFDD3795FEABE0B50F245AE(L_212, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_212;
goto IL_06ec;
}
IL_049c:
{
Type_t * L_213 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_214 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_215 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_214, /*hidden argument*/NULL);
bool L_216 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_213, (Type_t *)L_215, /*hidden argument*/NULL);
if (!L_216)
{
goto IL_04b9;
}
}
{
CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1 * L_217 = (CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1 *)il2cpp_codegen_object_new(CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1_il2cpp_TypeInfo_var);
CharTypeInfo__ctor_m83F187FC1D323E6E2FA872CF3153BAB1F76AC298(L_217, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_217;
goto IL_06ec;
}
IL_04b9:
{
Type_t * L_218 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_219 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_220 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_219, /*hidden argument*/NULL);
bool L_221 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_218, (Type_t *)L_220, /*hidden argument*/NULL);
if (!L_221)
{
goto IL_04d6;
}
}
{
DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73 * L_222 = (DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73 *)il2cpp_codegen_object_new(DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73_il2cpp_TypeInfo_var);
DoubleTypeInfo__ctor_m0FC3E8A06AF05EE78EBFC4BEB3C45686DE65143B(L_222, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_222;
goto IL_06ec;
}
IL_04d6:
{
Type_t * L_223 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_224 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_225 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_224, /*hidden argument*/NULL);
bool L_226 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_223, (Type_t *)L_225, /*hidden argument*/NULL);
if (!L_226)
{
goto IL_04f3;
}
}
{
SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 * L_227 = (SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 *)il2cpp_codegen_object_new(SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8_il2cpp_TypeInfo_var);
SingleTypeInfo__ctor_mA5EBEEF7D8FA70CC36839D33FFEE1E92B36733C4(L_227, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_227;
goto IL_06ec;
}
IL_04f3:
{
Type_t * L_228 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_229 = { reinterpret_cast<intptr_t> (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_230 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_229, /*hidden argument*/NULL);
bool L_231 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_228, (Type_t *)L_230, /*hidden argument*/NULL);
if (!L_231)
{
goto IL_0510;
}
}
{
DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405 * L_232 = (DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405 *)il2cpp_codegen_object_new(DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405_il2cpp_TypeInfo_var);
DateTimeTypeInfo__ctor_m963A7C1FB683821F9728B33B2BA04C0D8A73B1F4(L_232, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_232;
goto IL_06ec;
}
IL_0510:
{
Type_t * L_233 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_234 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_235 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_234, /*hidden argument*/NULL);
bool L_236 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_233, (Type_t *)L_235, /*hidden argument*/NULL);
if (!L_236)
{
goto IL_052d;
}
}
{
DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85 * L_237 = (DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85 *)il2cpp_codegen_object_new(DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85_il2cpp_TypeInfo_var);
DecimalTypeInfo__ctor_mF2531EBF69BEC23272D7EBC06FB6CB789EE282A3(L_237, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_237;
goto IL_06ec;
}
IL_052d:
{
Type_t * L_238 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_239 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_240 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_239, /*hidden argument*/NULL);
bool L_241 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_238, (Type_t *)L_240, /*hidden argument*/NULL);
if (!L_241)
{
goto IL_054a;
}
}
{
IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 * L_242 = (IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 *)il2cpp_codegen_object_new(IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55_il2cpp_TypeInfo_var);
IntPtrTypeInfo__ctor_m01105F4A30A454AC162C62C5D3FF447A225DA07B(L_242, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_242;
goto IL_06ec;
}
IL_054a:
{
Type_t * L_243 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_244 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_245 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_244, /*hidden argument*/NULL);
bool L_246 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_243, (Type_t *)L_245, /*hidden argument*/NULL);
if (!L_246)
{
goto IL_0567;
}
}
{
UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D * L_247 = (UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D *)il2cpp_codegen_object_new(UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D_il2cpp_TypeInfo_var);
UIntPtrTypeInfo__ctor_m10665E5B71030580321F853F0AA64AA6450867BE(L_247, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_247;
goto IL_06ec;
}
IL_0567:
{
Type_t * L_248 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_249 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_250 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_249, /*hidden argument*/NULL);
bool L_251 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_248, (Type_t *)L_250, /*hidden argument*/NULL);
if (!L_251)
{
goto IL_0584;
}
}
{
GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED * L_252 = (GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED *)il2cpp_codegen_object_new(GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED_il2cpp_TypeInfo_var);
GuidTypeInfo__ctor_m16193A1FFDF45604394A54B7D5695069EC1306B6(L_252, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_252;
goto IL_06ec;
}
IL_0584:
{
Type_t * L_253 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_254 = { reinterpret_cast<intptr_t> (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_255 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_254, /*hidden argument*/NULL);
bool L_256 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_253, (Type_t *)L_255, /*hidden argument*/NULL);
if (!L_256)
{
goto IL_05a1;
}
}
{
TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA * L_257 = (TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA *)il2cpp_codegen_object_new(TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA_il2cpp_TypeInfo_var);
TimeSpanTypeInfo__ctor_m61DE1869347F3CAD1FD95898E7E6BFDBB82EF248(L_257, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_257;
goto IL_06ec;
}
IL_05a1:
{
Type_t * L_258 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_259 = { reinterpret_cast<intptr_t> (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_260 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_259, /*hidden argument*/NULL);
bool L_261 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_258, (Type_t *)L_260, /*hidden argument*/NULL);
if (!L_261)
{
goto IL_05be;
}
}
{
DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7 * L_262 = (DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7 *)il2cpp_codegen_object_new(DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7_il2cpp_TypeInfo_var);
DateTimeOffsetTypeInfo__ctor_m15CCCCC4AC20E4A3CE0A9F9F07D45C502A64C386(L_262, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_262;
goto IL_06ec;
}
IL_05be:
{
Type_t * L_263 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_264 = { reinterpret_cast<intptr_t> (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_265 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_264, /*hidden argument*/NULL);
bool L_266 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_263, (Type_t *)L_265, /*hidden argument*/NULL);
if (!L_266)
{
goto IL_05db;
}
}
{
NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D * L_267 = (NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D *)il2cpp_codegen_object_new(NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D_il2cpp_TypeInfo_var);
NullTypeInfo_1__ctor_m26AD9AD184C3134222FC7ECD036461D6CB55769C(L_267, /*hidden argument*/NullTypeInfo_1__ctor_m26AD9AD184C3134222FC7ECD036461D6CB55769C_RuntimeMethod_var);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_267;
goto IL_06ec;
}
IL_05db:
{
Type_t * L_268 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_269 = { reinterpret_cast<intptr_t> (KeyValuePair_2_tE2B149987A7A0267959C8B92C6923BAB9823089D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_270 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_269, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
bool L_271 = Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699((Type_t *)L_268, (RuntimeObject *)L_270, /*hidden argument*/NULL);
if (!L_271)
{
goto IL_0632;
}
}
{
Type_t * L_272 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_273 = Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9((Type_t *)L_272, /*hidden argument*/NULL);
V_5 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_273;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_274 = { reinterpret_cast<intptr_t> (KeyValuePairTypeInfo_2_t48B3C70F6BED0E9D17020012EC2D719996E9A241_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_275 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_274, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_276 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_277 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_276;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_278 = V_5;
NullCheck(L_278);
int32_t L_279 = 0;
Type_t * L_280 = (L_278)->GetAt(static_cast<il2cpp_array_size_t>(L_279));
NullCheck(L_277);
ArrayElementTypeCheck (L_277, L_280);
(L_277)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_280);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_281 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_277;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_282 = V_5;
NullCheck(L_282);
int32_t L_283 = 1;
Type_t * L_284 = (L_282)->GetAt(static_cast<il2cpp_array_size_t>(L_283));
NullCheck(L_281);
ArrayElementTypeCheck (L_281, L_284);
(L_281)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_284);
NullCheck((Type_t *)L_275);
Type_t * L_285 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_275, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_281);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_286 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_287 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_286;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_288 = ___recursionCheck0;
NullCheck(L_287);
ArrayElementTypeCheck (L_287, L_288);
(L_287)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_288);
RuntimeObject * L_289 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_285, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_287, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C *)Castclass((RuntimeObject*)L_289, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_0632:
{
Type_t * L_290 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_291 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_292 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_291, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
bool L_293 = Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699((Type_t *)L_290, (RuntimeObject *)L_292, /*hidden argument*/NULL);
if (!L_293)
{
goto IL_067f;
}
}
{
Type_t * L_294 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_295 = Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9((Type_t *)L_294, /*hidden argument*/NULL);
V_6 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_295;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_296 = { reinterpret_cast<intptr_t> (NullableTypeInfo_1_tDCBDA4871397F1360E9A30276BDABFDABB3B9115_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_297 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_296, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_298 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_299 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_298;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_300 = V_6;
NullCheck(L_300);
int32_t L_301 = 0;
Type_t * L_302 = (L_300)->GetAt(static_cast<il2cpp_array_size_t>(L_301));
NullCheck(L_299);
ArrayElementTypeCheck (L_299, L_302);
(L_299)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_302);
NullCheck((Type_t *)L_297);
Type_t * L_303 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_297, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_299);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_304 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_305 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_304;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_306 = ___recursionCheck0;
NullCheck(L_305);
ArrayElementTypeCheck (L_305, L_306);
(L_305)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_306);
RuntimeObject * L_307 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_303, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_305, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C *)Castclass((RuntimeObject*)L_307, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_067f:
{
Type_t * L_308 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
Type_t * L_309 = Statics_FindEnumerableElementType_mE2B9BCD8FECD8262FA51BED1DD0AE91DD8C37180((Type_t *)L_308, /*hidden argument*/NULL);
V_7 = (Type_t *)L_309;
Type_t * L_310 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_311 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9((Type_t *)L_310, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_311)
{
goto IL_06cd;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_312 = { reinterpret_cast<intptr_t> (EnumerableTypeInfo_2_t1B81D72B3A33D350331D3C9F1A4CA859454C351E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_313 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_312, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_314 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_315 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_314;
Type_t * L_316 = V_1;
NullCheck(L_315);
ArrayElementTypeCheck (L_315, L_316);
(L_315)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_316);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_317 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_315;
Type_t * L_318 = V_7;
NullCheck(L_317);
ArrayElementTypeCheck (L_317, L_318);
(L_317)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_318);
NullCheck((Type_t *)L_313);
Type_t * L_319 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_313, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_317);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_320 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_321 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_320;
Type_t * L_322 = V_7;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_323 = ___recursionCheck0;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_324 = Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6((Type_t *)L_322, (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_323, /*hidden argument*/NULL);
NullCheck(L_321);
ArrayElementTypeCheck (L_321, L_324);
(L_321)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_324);
RuntimeObject * L_325 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_319, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_321, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C *)Castclass((RuntimeObject*)L_325, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_06cd:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_326 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_327 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_326;
Type_t * L_328 = V_1;
NullCheck((MemberInfo_t *)L_328);
String_t* L_329 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_328);
NullCheck(L_327);
ArrayElementTypeCheck (L_327, L_329);
(L_327)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_329);
String_t* L_330 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB((String_t*)_stringLiteralDBA0F8BCBC38F520B1A5C333F28EEB1DDA183472, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_327, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_331 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_331, (String_t*)L_330, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_331, NULL, Statics_CreateDefaultTypeInfo_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m081A0AFC3C7A0D6746C9148EF02F4182EA58D5A4_RuntimeMethod_var);
}
IL_06ec:
{
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_332 = V_0;
return ((TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C *)Castclass((RuntimeObject*)L_332, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
}
}
// System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.Statics::CreateDefaultTypeInfo<System.UIntPtr>(System.Collections.Generic.List`1<System.Type>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 * Statics_CreateDefaultTypeInfo_TisUIntPtr_t_m4BF51455761B5D059AC2E3FA23CEF735EC9D0C9C_gshared (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * ___recursionCheck0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Statics_CreateDefaultTypeInfo_TisUIntPtr_t_m4BF51455761B5D059AC2E3FA23CEF735EC9D0C9C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * V_0 = NULL;
Type_t * V_1 = NULL;
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * V_2 = NULL;
Type_t * V_3 = NULL;
Type_t * V_4 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_5 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_6 = NULL;
Type_t * V_7 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_1 = (Type_t *)L_1;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_2 = ___recursionCheck0;
Type_t * L_3 = V_1;
NullCheck((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_2);
bool L_4 = List_1_Contains_m6A7AF0218C770BDC786185D61552281BF4051593((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_2, (Type_t *)L_3, /*hidden argument*/List_1_Contains_m6A7AF0218C770BDC786185D61552281BF4051593_RuntimeMethod_var);
if (!L_4)
{
goto IL_0024;
}
}
{
String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteralF084C7C4DE4AEADD0AA7AE2EDEFF6D9FB3DDA7A1, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_6 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_6, (String_t*)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Statics_CreateDefaultTypeInfo_TisUIntPtr_t_m4BF51455761B5D059AC2E3FA23CEF735EC9D0C9C_RuntimeMethod_var);
}
IL_0024:
{
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_7 = ___recursionCheck0;
Type_t * L_8 = V_1;
NullCheck((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_7);
List_1_Add_m0B2D1D24DF475E0A9FF3ACB89CFFB9FD07958AD3((List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_7, (Type_t *)L_8, /*hidden argument*/List_1_Add_m0B2D1D24DF475E0A9FF3ACB89CFFB9FD07958AD3_RuntimeMethod_var);
Type_t * L_9 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_10 = Statics_GetCustomAttribute_TisEventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85_m4F16FDCBB99EAD8A4E96FEDA6F2C0CD45CFA713F((Type_t *)L_9, /*hidden argument*/Statics_GetCustomAttribute_TisEventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85_m4F16FDCBB99EAD8A4E96FEDA6F2C0CD45CFA713F_RuntimeMethod_var);
V_2 = (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 *)L_10;
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_11 = V_2;
if (L_11)
{
goto IL_003d;
}
}
{
Type_t * L_12 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
CompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC * L_13 = Statics_GetCustomAttribute_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m7ECE22C72C43417D525F0001E8CB60E1000579A9((Type_t *)L_12, /*hidden argument*/Statics_GetCustomAttribute_TisCompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_m7ECE22C72C43417D525F0001E8CB60E1000579A9_RuntimeMethod_var);
if (!L_13)
{
goto IL_0050;
}
}
IL_003d:
{
Type_t * L_14 = V_1;
EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_15 = V_2;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_16 = ___recursionCheck0;
TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD * L_17 = (TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD *)il2cpp_codegen_object_new(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD_il2cpp_TypeInfo_var);
TypeAnalysis__ctor_m7FE311A013186B7421FCA3574941907DB1FA4632(L_17, (Type_t *)L_14, (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 *)L_15, (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_16, /*hidden argument*/NULL);
InvokeTypeInfo_1_t785BF9ED28135501B652EC2B780AC3E62225125A * L_18 = (InvokeTypeInfo_1_t785BF9ED28135501B652EC2B780AC3E62225125A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 1));
(( void (*) (InvokeTypeInfo_1_t785BF9ED28135501B652EC2B780AC3E62225125A *, TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(L_18, (TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_18;
goto IL_06ec;
}
IL_0050:
{
Type_t * L_19 = V_1;
NullCheck((Type_t *)L_19);
bool L_20 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE((Type_t *)L_19, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_024e;
}
}
{
Type_t * L_21 = V_1;
NullCheck((Type_t *)L_21);
Type_t * L_22 = VirtFuncInvoker0< Type_t * >::Invoke(98 /* System.Type System.Type::GetElementType() */, (Type_t *)L_21);
V_3 = (Type_t *)L_22;
Type_t * L_23 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL);
bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL);
if (!L_26)
{
goto IL_007f;
}
}
{
BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663 * L_27 = (BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663 *)il2cpp_codegen_object_new(BooleanArrayTypeInfo_t8D17476080DE9FE8BAA1873A346BAAB06CB87663_il2cpp_TypeInfo_var);
BooleanArrayTypeInfo__ctor_m4C42FDCC33CCC47576364D5CD3566487FBB26241(L_27, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_27;
goto IL_06ec;
}
IL_007f:
{
Type_t * L_28 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
bool L_31 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_28, (Type_t *)L_30, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_009c;
}
}
{
ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB * L_32 = (ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB *)il2cpp_codegen_object_new(ByteArrayTypeInfo_t5658F3F5721C44850C50467F5A065C635AAE06DB_il2cpp_TypeInfo_var);
ByteArrayTypeInfo__ctor_mC48373891BDF2EE356654D62BCFE3E252D365AD3(L_32, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_32;
goto IL_06ec;
}
IL_009c:
{
Type_t * L_33 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_34 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_35 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_34, /*hidden argument*/NULL);
bool L_36 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_33, (Type_t *)L_35, /*hidden argument*/NULL);
if (!L_36)
{
goto IL_00b9;
}
}
{
SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 * L_37 = (SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 *)il2cpp_codegen_object_new(SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6_il2cpp_TypeInfo_var);
SByteArrayTypeInfo__ctor_m574A695A8BC3854E038875B5EDA049ADCE1121BA(L_37, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_37;
goto IL_06ec;
}
IL_00b9:
{
Type_t * L_38 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL);
bool L_41 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_38, (Type_t *)L_40, /*hidden argument*/NULL);
if (!L_41)
{
goto IL_00d6;
}
}
{
Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 * L_42 = (Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 *)il2cpp_codegen_object_new(Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3_il2cpp_TypeInfo_var);
Int16ArrayTypeInfo__ctor_mF1C882F2ECD07C3ACE31BF421C84375783557470(L_42, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_42;
goto IL_06ec;
}
IL_00d6:
{
Type_t * L_43 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_44 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_45 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_44, /*hidden argument*/NULL);
bool L_46 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_43, (Type_t *)L_45, /*hidden argument*/NULL);
if (!L_46)
{
goto IL_00f3;
}
}
{
UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE * L_47 = (UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE *)il2cpp_codegen_object_new(UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE_il2cpp_TypeInfo_var);
UInt16ArrayTypeInfo__ctor_m47BF92C31CA6C00BF2934AE7D7B30BBE7340C2FE(L_47, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_47;
goto IL_06ec;
}
IL_00f3:
{
Type_t * L_48 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL);
bool L_51 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_48, (Type_t *)L_50, /*hidden argument*/NULL);
if (!L_51)
{
goto IL_0110;
}
}
{
Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C * L_52 = (Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C *)il2cpp_codegen_object_new(Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C_il2cpp_TypeInfo_var);
Int32ArrayTypeInfo__ctor_m9D7274FDA03ACB4C441E103CB50E6BE7DBF548F5(L_52, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_52;
goto IL_06ec;
}
IL_0110:
{
Type_t * L_53 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_54 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_55 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_54, /*hidden argument*/NULL);
bool L_56 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_53, (Type_t *)L_55, /*hidden argument*/NULL);
if (!L_56)
{
goto IL_012d;
}
}
{
UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC * L_57 = (UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC *)il2cpp_codegen_object_new(UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC_il2cpp_TypeInfo_var);
UInt32ArrayTypeInfo__ctor_m6E6B67C602B24ECD669EF5C8A05DE8994F4B2030(L_57, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_57;
goto IL_06ec;
}
IL_012d:
{
Type_t * L_58 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_59 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_60 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_59, /*hidden argument*/NULL);
bool L_61 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_58, (Type_t *)L_60, /*hidden argument*/NULL);
if (!L_61)
{
goto IL_014a;
}
}
{
Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC * L_62 = (Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC *)il2cpp_codegen_object_new(Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC_il2cpp_TypeInfo_var);
Int64ArrayTypeInfo__ctor_m0420AE4B52AE5BD112A2B29B0D12C0A6FB4B931D(L_62, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_62;
goto IL_06ec;
}
IL_014a:
{
Type_t * L_63 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_64 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_65 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_64, /*hidden argument*/NULL);
bool L_66 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_63, (Type_t *)L_65, /*hidden argument*/NULL);
if (!L_66)
{
goto IL_0167;
}
}
{
UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 * L_67 = (UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 *)il2cpp_codegen_object_new(UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5_il2cpp_TypeInfo_var);
UInt64ArrayTypeInfo__ctor_m7FD48AB4A63443625F680B68E2B80C17B694F26F(L_67, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_67;
goto IL_06ec;
}
IL_0167:
{
Type_t * L_68 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_69 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_70 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_69, /*hidden argument*/NULL);
bool L_71 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_68, (Type_t *)L_70, /*hidden argument*/NULL);
if (!L_71)
{
goto IL_0184;
}
}
{
CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7 * L_72 = (CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7 *)il2cpp_codegen_object_new(CharArrayTypeInfo_tA4DA36246558E48DE934DF2709E8F651EEC09AA7_il2cpp_TypeInfo_var);
CharArrayTypeInfo__ctor_m1EE2437D82CF59C21FD9A6202A9BDE9646CA8DDB(L_72, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_72;
goto IL_06ec;
}
IL_0184:
{
Type_t * L_73 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_74 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_75 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_74, /*hidden argument*/NULL);
bool L_76 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_73, (Type_t *)L_75, /*hidden argument*/NULL);
if (!L_76)
{
goto IL_01a1;
}
}
{
DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2 * L_77 = (DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2 *)il2cpp_codegen_object_new(DoubleArrayTypeInfo_t1FAAA8719DBC90C5C0E90721B27823D79BA963C2_il2cpp_TypeInfo_var);
DoubleArrayTypeInfo__ctor_mA1D7B8202A7F5FE4462E05403AF389C57308729D(L_77, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_77;
goto IL_06ec;
}
IL_01a1:
{
Type_t * L_78 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_79 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_80 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_79, /*hidden argument*/NULL);
bool L_81 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_78, (Type_t *)L_80, /*hidden argument*/NULL);
if (!L_81)
{
goto IL_01be;
}
}
{
SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 * L_82 = (SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 *)il2cpp_codegen_object_new(SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239_il2cpp_TypeInfo_var);
SingleArrayTypeInfo__ctor_m9897E1859A9FBE59C35E997146A165465927226F(L_82, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_82;
goto IL_06ec;
}
IL_01be:
{
Type_t * L_83 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_84 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_85 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_84, /*hidden argument*/NULL);
bool L_86 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_83, (Type_t *)L_85, /*hidden argument*/NULL);
if (!L_86)
{
goto IL_01db;
}
}
{
IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 * L_87 = (IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 *)il2cpp_codegen_object_new(IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702_il2cpp_TypeInfo_var);
IntPtrArrayTypeInfo__ctor_mEAB7419D27051053AAF97425F4CE4283CB6316EF(L_87, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_87;
goto IL_06ec;
}
IL_01db:
{
Type_t * L_88 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_89 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_90 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_89, /*hidden argument*/NULL);
bool L_91 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_88, (Type_t *)L_90, /*hidden argument*/NULL);
if (!L_91)
{
goto IL_01f8;
}
}
{
UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C * L_92 = (UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C *)il2cpp_codegen_object_new(UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C_il2cpp_TypeInfo_var);
UIntPtrArrayTypeInfo__ctor_m2ED85F03228949555DADD7E37416A143A58E3601(L_92, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_92;
goto IL_06ec;
}
IL_01f8:
{
Type_t * L_93 = V_3;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_94 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_95 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_94, /*hidden argument*/NULL);
bool L_96 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_93, (Type_t *)L_95, /*hidden argument*/NULL);
if (!L_96)
{
goto IL_0215;
}
}
{
GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 * L_97 = (GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 *)il2cpp_codegen_object_new(GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068_il2cpp_TypeInfo_var);
GuidArrayTypeInfo__ctor_m60FBBC3A58A030148BD5092494CF7DD8BCDD4584(L_97, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_97;
goto IL_06ec;
}
IL_0215:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_98 = { reinterpret_cast<intptr_t> (ArrayTypeInfo_1_t917EFD3106B9A6A891D84AF0A1EAE86F7E53BA5A_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_99 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_98, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_100 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_101 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_100;
Type_t * L_102 = V_3;
NullCheck(L_101);
ArrayElementTypeCheck (L_101, L_102);
(L_101)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_102);
NullCheck((Type_t *)L_99);
Type_t * L_103 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_99, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_101);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_104 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_105 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_104;
Type_t * L_106 = V_3;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_107 = ___recursionCheck0;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_108 = Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6((Type_t *)L_106, (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_107, /*hidden argument*/NULL);
NullCheck(L_105);
ArrayElementTypeCheck (L_105, L_108);
(L_105)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_108);
RuntimeObject * L_109 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_103, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_105, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 *)Castclass((RuntimeObject*)L_109, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_024e:
{
Type_t * L_110 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
bool L_111 = Statics_IsEnum_m9CD80B63044F16008C4CA89353FA72D2CA63EABF((Type_t *)L_110, /*hidden argument*/NULL);
if (!L_111)
{
goto IL_037a;
}
}
{
Type_t * L_112 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
Type_t * L_113 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_112, /*hidden argument*/NULL);
V_4 = (Type_t *)L_113;
Type_t * L_114 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_115 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_116 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_115, /*hidden argument*/NULL);
bool L_117 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_114, (Type_t *)L_116, /*hidden argument*/NULL);
if (!L_117)
{
goto IL_027f;
}
}
{
EnumInt32TypeInfo_1_tC25EBD5CFF82BD17C69D63D36A5467E57303EEF9 * L_118 = (EnumInt32TypeInfo_1_tC25EBD5CFF82BD17C69D63D36A5467E57303EEF9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 4));
(( void (*) (EnumInt32TypeInfo_1_tC25EBD5CFF82BD17C69D63D36A5467E57303EEF9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(L_118, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_118;
goto IL_06ec;
}
IL_027f:
{
Type_t * L_119 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_120 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_121 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_120, /*hidden argument*/NULL);
bool L_122 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_119, (Type_t *)L_121, /*hidden argument*/NULL);
if (!L_122)
{
goto IL_029d;
}
}
{
EnumUInt32TypeInfo_1_tC96E16DA9820EBE9F359D7815955ED3C563F6182 * L_123 = (EnumUInt32TypeInfo_1_tC96E16DA9820EBE9F359D7815955ED3C563F6182 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 6));
(( void (*) (EnumUInt32TypeInfo_1_tC96E16DA9820EBE9F359D7815955ED3C563F6182 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 7)->methodPointer)(L_123, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 7));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_123;
goto IL_06ec;
}
IL_029d:
{
Type_t * L_124 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_125 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_126 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_125, /*hidden argument*/NULL);
bool L_127 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_124, (Type_t *)L_126, /*hidden argument*/NULL);
if (!L_127)
{
goto IL_02bb;
}
}
{
EnumByteTypeInfo_1_t8BB4D3547CA684D35E404C6CAD1D21F25350991E * L_128 = (EnumByteTypeInfo_1_t8BB4D3547CA684D35E404C6CAD1D21F25350991E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 8));
(( void (*) (EnumByteTypeInfo_1_t8BB4D3547CA684D35E404C6CAD1D21F25350991E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 9)->methodPointer)(L_128, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 9));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_128;
goto IL_06ec;
}
IL_02bb:
{
Type_t * L_129 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_130 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_131 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_130, /*hidden argument*/NULL);
bool L_132 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_129, (Type_t *)L_131, /*hidden argument*/NULL);
if (!L_132)
{
goto IL_02d9;
}
}
{
EnumSByteTypeInfo_1_tD2920E09384E5F778EF760F4FA29970EFE03DA89 * L_133 = (EnumSByteTypeInfo_1_tD2920E09384E5F778EF760F4FA29970EFE03DA89 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 10));
(( void (*) (EnumSByteTypeInfo_1_tD2920E09384E5F778EF760F4FA29970EFE03DA89 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 11)->methodPointer)(L_133, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 11));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_133;
goto IL_06ec;
}
IL_02d9:
{
Type_t * L_134 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_135 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_136 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_135, /*hidden argument*/NULL);
bool L_137 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_134, (Type_t *)L_136, /*hidden argument*/NULL);
if (!L_137)
{
goto IL_02f7;
}
}
{
EnumInt16TypeInfo_1_t5AB64395753EBEA15960519F6400CA8B6FC14075 * L_138 = (EnumInt16TypeInfo_1_t5AB64395753EBEA15960519F6400CA8B6FC14075 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 12));
(( void (*) (EnumInt16TypeInfo_1_t5AB64395753EBEA15960519F6400CA8B6FC14075 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 13)->methodPointer)(L_138, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 13));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_138;
goto IL_06ec;
}
IL_02f7:
{
Type_t * L_139 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_140 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_141 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_140, /*hidden argument*/NULL);
bool L_142 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_139, (Type_t *)L_141, /*hidden argument*/NULL);
if (!L_142)
{
goto IL_0315;
}
}
{
EnumUInt16TypeInfo_1_t41858CAB5C37D081E5B80ED774E72C62CD2E3BC6 * L_143 = (EnumUInt16TypeInfo_1_t41858CAB5C37D081E5B80ED774E72C62CD2E3BC6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 14));
(( void (*) (EnumUInt16TypeInfo_1_t41858CAB5C37D081E5B80ED774E72C62CD2E3BC6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 15)->methodPointer)(L_143, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 15));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_143;
goto IL_06ec;
}
IL_0315:
{
Type_t * L_144 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_145 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_146 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_145, /*hidden argument*/NULL);
bool L_147 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_144, (Type_t *)L_146, /*hidden argument*/NULL);
if (!L_147)
{
goto IL_0333;
}
}
{
EnumInt64TypeInfo_1_t7958B8992318184766E3C45773E33CBC676C0E96 * L_148 = (EnumInt64TypeInfo_1_t7958B8992318184766E3C45773E33CBC676C0E96 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 16));
(( void (*) (EnumInt64TypeInfo_1_t7958B8992318184766E3C45773E33CBC676C0E96 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 17)->methodPointer)(L_148, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 17));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_148;
goto IL_06ec;
}
IL_0333:
{
Type_t * L_149 = V_4;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_150 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_151 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_150, /*hidden argument*/NULL);
bool L_152 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_149, (Type_t *)L_151, /*hidden argument*/NULL);
if (!L_152)
{
goto IL_0351;
}
}
{
EnumUInt64TypeInfo_1_tF5516549D86A1072DEFFFE9457AF8640773F42B9 * L_153 = (EnumUInt64TypeInfo_1_tF5516549D86A1072DEFFFE9457AF8640773F42B9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 18));
(( void (*) (EnumUInt64TypeInfo_1_tF5516549D86A1072DEFFFE9457AF8640773F42B9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 19)->methodPointer)(L_153, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 19));
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_153;
goto IL_06ec;
}
IL_0351:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_154 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_155 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_154;
Type_t * L_156 = V_1;
NullCheck((MemberInfo_t *)L_156);
String_t* L_157 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_156);
NullCheck(L_155);
ArrayElementTypeCheck (L_155, L_157);
(L_155)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_157);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_158 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_155;
Type_t * L_159 = V_4;
NullCheck((MemberInfo_t *)L_159);
String_t* L_160 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_159);
NullCheck(L_158);
ArrayElementTypeCheck (L_158, L_160);
(L_158)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_160);
String_t* L_161 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB((String_t*)_stringLiteralAFCEDBC2312C37DE46DE59F51E7A76B1B351DD75, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_158, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_162 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_162, (String_t*)L_161, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_162, NULL, Statics_CreateDefaultTypeInfo_TisUIntPtr_t_m4BF51455761B5D059AC2E3FA23CEF735EC9D0C9C_RuntimeMethod_var);
}
IL_037a:
{
Type_t * L_163 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_164 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_165 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_164, /*hidden argument*/NULL);
bool L_166 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_163, (Type_t *)L_165, /*hidden argument*/NULL);
if (!L_166)
{
goto IL_0397;
}
}
{
StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 * L_167 = (StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 *)il2cpp_codegen_object_new(StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26_il2cpp_TypeInfo_var);
StringTypeInfo__ctor_mCBEF207AA52314389CDE3589F55D5A3B4CA48ADD(L_167, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_167;
goto IL_06ec;
}
IL_0397:
{
Type_t * L_168 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_169 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_170 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_169, /*hidden argument*/NULL);
bool L_171 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_168, (Type_t *)L_170, /*hidden argument*/NULL);
if (!L_171)
{
goto IL_03b4;
}
}
{
BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772 * L_172 = (BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772 *)il2cpp_codegen_object_new(BooleanTypeInfo_t2A9D55D28358D7F016FEB8DE4DC3F47AE4EB0772_il2cpp_TypeInfo_var);
BooleanTypeInfo__ctor_mA6C506EA7D9651E4024FD3B1612F2170D7EF37B5(L_172, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_172;
goto IL_06ec;
}
IL_03b4:
{
Type_t * L_173 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_174 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_175 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_174, /*hidden argument*/NULL);
bool L_176 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_173, (Type_t *)L_175, /*hidden argument*/NULL);
if (!L_176)
{
goto IL_03d1;
}
}
{
ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F * L_177 = (ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F *)il2cpp_codegen_object_new(ByteTypeInfo_t94E7AB7A3DC095734C0A6A80EF36EBCEB9AA823F_il2cpp_TypeInfo_var);
ByteTypeInfo__ctor_mC04ADDE2C15F05E2B211965E5E3BFC777BB32776(L_177, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_177;
goto IL_06ec;
}
IL_03d1:
{
Type_t * L_178 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_179 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_180 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_179, /*hidden argument*/NULL);
bool L_181 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_178, (Type_t *)L_180, /*hidden argument*/NULL);
if (!L_181)
{
goto IL_03ee;
}
}
{
SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C * L_182 = (SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C *)il2cpp_codegen_object_new(SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C_il2cpp_TypeInfo_var);
SByteTypeInfo__ctor_mE051EE1E75CBE7BF5D6F0DEBCD1B2EC3B55DD89E(L_182, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_182;
goto IL_06ec;
}
IL_03ee:
{
Type_t * L_183 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_184 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_185 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_184, /*hidden argument*/NULL);
bool L_186 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_183, (Type_t *)L_185, /*hidden argument*/NULL);
if (!L_186)
{
goto IL_040b;
}
}
{
Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B * L_187 = (Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B *)il2cpp_codegen_object_new(Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B_il2cpp_TypeInfo_var);
Int16TypeInfo__ctor_m32663BF727B1441F924AF3C2440672AD69A8A0D0(L_187, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_187;
goto IL_06ec;
}
IL_040b:
{
Type_t * L_188 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_189 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_190 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_189, /*hidden argument*/NULL);
bool L_191 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_188, (Type_t *)L_190, /*hidden argument*/NULL);
if (!L_191)
{
goto IL_0428;
}
}
{
UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E * L_192 = (UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E *)il2cpp_codegen_object_new(UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E_il2cpp_TypeInfo_var);
UInt16TypeInfo__ctor_mCC09171DCA51C7C406B0A16C46D5EF4D07D089CD(L_192, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_192;
goto IL_06ec;
}
IL_0428:
{
Type_t * L_193 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_194 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_195 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_194, /*hidden argument*/NULL);
bool L_196 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_193, (Type_t *)L_195, /*hidden argument*/NULL);
if (!L_196)
{
goto IL_0445;
}
}
{
Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C * L_197 = (Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C *)il2cpp_codegen_object_new(Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C_il2cpp_TypeInfo_var);
Int32TypeInfo__ctor_mFB5D5C183B9CEADA879A9B192E5F6E613EF79ACC(L_197, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_197;
goto IL_06ec;
}
IL_0445:
{
Type_t * L_198 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_199 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_200 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_199, /*hidden argument*/NULL);
bool L_201 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_198, (Type_t *)L_200, /*hidden argument*/NULL);
if (!L_201)
{
goto IL_0462;
}
}
{
UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 * L_202 = (UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 *)il2cpp_codegen_object_new(UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59_il2cpp_TypeInfo_var);
UInt32TypeInfo__ctor_m5492D535F1F613D8B2160CCB6782ECA813E89181(L_202, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_202;
goto IL_06ec;
}
IL_0462:
{
Type_t * L_203 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_204 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_205 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_204, /*hidden argument*/NULL);
bool L_206 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_203, (Type_t *)L_205, /*hidden argument*/NULL);
if (!L_206)
{
goto IL_047f;
}
}
{
Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 * L_207 = (Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 *)il2cpp_codegen_object_new(Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5_il2cpp_TypeInfo_var);
Int64TypeInfo__ctor_m34E0E0F18CF350928B7FFA21BB7FBF14AB2D2783(L_207, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_207;
goto IL_06ec;
}
IL_047f:
{
Type_t * L_208 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_209 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_210 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_209, /*hidden argument*/NULL);
bool L_211 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_208, (Type_t *)L_210, /*hidden argument*/NULL);
if (!L_211)
{
goto IL_049c;
}
}
{
UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E * L_212 = (UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E *)il2cpp_codegen_object_new(UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E_il2cpp_TypeInfo_var);
UInt64TypeInfo__ctor_m237E06B639D1A9D0DFFDD3795FEABE0B50F245AE(L_212, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_212;
goto IL_06ec;
}
IL_049c:
{
Type_t * L_213 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_214 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_215 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_214, /*hidden argument*/NULL);
bool L_216 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_213, (Type_t *)L_215, /*hidden argument*/NULL);
if (!L_216)
{
goto IL_04b9;
}
}
{
CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1 * L_217 = (CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1 *)il2cpp_codegen_object_new(CharTypeInfo_t6E51C2BF61EF98CF737D58FC7F785AECD282D4E1_il2cpp_TypeInfo_var);
CharTypeInfo__ctor_m83F187FC1D323E6E2FA872CF3153BAB1F76AC298(L_217, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_217;
goto IL_06ec;
}
IL_04b9:
{
Type_t * L_218 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_219 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_220 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_219, /*hidden argument*/NULL);
bool L_221 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_218, (Type_t *)L_220, /*hidden argument*/NULL);
if (!L_221)
{
goto IL_04d6;
}
}
{
DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73 * L_222 = (DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73 *)il2cpp_codegen_object_new(DoubleTypeInfo_t5F4612E68335079CCE043E18B1353130DA731B73_il2cpp_TypeInfo_var);
DoubleTypeInfo__ctor_m0FC3E8A06AF05EE78EBFC4BEB3C45686DE65143B(L_222, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_222;
goto IL_06ec;
}
IL_04d6:
{
Type_t * L_223 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_224 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_225 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_224, /*hidden argument*/NULL);
bool L_226 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_223, (Type_t *)L_225, /*hidden argument*/NULL);
if (!L_226)
{
goto IL_04f3;
}
}
{
SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 * L_227 = (SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 *)il2cpp_codegen_object_new(SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8_il2cpp_TypeInfo_var);
SingleTypeInfo__ctor_mA5EBEEF7D8FA70CC36839D33FFEE1E92B36733C4(L_227, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_227;
goto IL_06ec;
}
IL_04f3:
{
Type_t * L_228 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_229 = { reinterpret_cast<intptr_t> (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_230 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_229, /*hidden argument*/NULL);
bool L_231 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_228, (Type_t *)L_230, /*hidden argument*/NULL);
if (!L_231)
{
goto IL_0510;
}
}
{
DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405 * L_232 = (DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405 *)il2cpp_codegen_object_new(DateTimeTypeInfo_tBB003B99145DFD499F2DEF1761291D2E0755A405_il2cpp_TypeInfo_var);
DateTimeTypeInfo__ctor_m963A7C1FB683821F9728B33B2BA04C0D8A73B1F4(L_232, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_232;
goto IL_06ec;
}
IL_0510:
{
Type_t * L_233 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_234 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_235 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_234, /*hidden argument*/NULL);
bool L_236 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_233, (Type_t *)L_235, /*hidden argument*/NULL);
if (!L_236)
{
goto IL_052d;
}
}
{
DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85 * L_237 = (DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85 *)il2cpp_codegen_object_new(DecimalTypeInfo_t010453A90659A30B7B7D48C9D98F22DD729F0F85_il2cpp_TypeInfo_var);
DecimalTypeInfo__ctor_mF2531EBF69BEC23272D7EBC06FB6CB789EE282A3(L_237, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_237;
goto IL_06ec;
}
IL_052d:
{
Type_t * L_238 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_239 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_240 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_239, /*hidden argument*/NULL);
bool L_241 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_238, (Type_t *)L_240, /*hidden argument*/NULL);
if (!L_241)
{
goto IL_054a;
}
}
{
IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 * L_242 = (IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 *)il2cpp_codegen_object_new(IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55_il2cpp_TypeInfo_var);
IntPtrTypeInfo__ctor_m01105F4A30A454AC162C62C5D3FF447A225DA07B(L_242, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_242;
goto IL_06ec;
}
IL_054a:
{
Type_t * L_243 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_244 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_245 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_244, /*hidden argument*/NULL);
bool L_246 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_243, (Type_t *)L_245, /*hidden argument*/NULL);
if (!L_246)
{
goto IL_0567;
}
}
{
UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D * L_247 = (UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D *)il2cpp_codegen_object_new(UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D_il2cpp_TypeInfo_var);
UIntPtrTypeInfo__ctor_m10665E5B71030580321F853F0AA64AA6450867BE(L_247, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_247;
goto IL_06ec;
}
IL_0567:
{
Type_t * L_248 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_249 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_250 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_249, /*hidden argument*/NULL);
bool L_251 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_248, (Type_t *)L_250, /*hidden argument*/NULL);
if (!L_251)
{
goto IL_0584;
}
}
{
GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED * L_252 = (GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED *)il2cpp_codegen_object_new(GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED_il2cpp_TypeInfo_var);
GuidTypeInfo__ctor_m16193A1FFDF45604394A54B7D5695069EC1306B6(L_252, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_252;
goto IL_06ec;
}
IL_0584:
{
Type_t * L_253 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_254 = { reinterpret_cast<intptr_t> (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_255 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_254, /*hidden argument*/NULL);
bool L_256 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_253, (Type_t *)L_255, /*hidden argument*/NULL);
if (!L_256)
{
goto IL_05a1;
}
}
{
TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA * L_257 = (TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA *)il2cpp_codegen_object_new(TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA_il2cpp_TypeInfo_var);
TimeSpanTypeInfo__ctor_m61DE1869347F3CAD1FD95898E7E6BFDBB82EF248(L_257, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_257;
goto IL_06ec;
}
IL_05a1:
{
Type_t * L_258 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_259 = { reinterpret_cast<intptr_t> (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_260 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_259, /*hidden argument*/NULL);
bool L_261 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_258, (Type_t *)L_260, /*hidden argument*/NULL);
if (!L_261)
{
goto IL_05be;
}
}
{
DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7 * L_262 = (DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7 *)il2cpp_codegen_object_new(DateTimeOffsetTypeInfo_tF43B2DF5DDA8C80D44E4466D622724CA9F56B2B7_il2cpp_TypeInfo_var);
DateTimeOffsetTypeInfo__ctor_m15CCCCC4AC20E4A3CE0A9F9F07D45C502A64C386(L_262, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_262;
goto IL_06ec;
}
IL_05be:
{
Type_t * L_263 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_264 = { reinterpret_cast<intptr_t> (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_265 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_264, /*hidden argument*/NULL);
bool L_266 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_263, (Type_t *)L_265, /*hidden argument*/NULL);
if (!L_266)
{
goto IL_05db;
}
}
{
NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D * L_267 = (NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D *)il2cpp_codegen_object_new(NullTypeInfo_1_tB517EC1B7C4D82D1533158B597F730454530519D_il2cpp_TypeInfo_var);
NullTypeInfo_1__ctor_m26AD9AD184C3134222FC7ECD036461D6CB55769C(L_267, /*hidden argument*/NullTypeInfo_1__ctor_m26AD9AD184C3134222FC7ECD036461D6CB55769C_RuntimeMethod_var);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_267;
goto IL_06ec;
}
IL_05db:
{
Type_t * L_268 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_269 = { reinterpret_cast<intptr_t> (KeyValuePair_2_tE2B149987A7A0267959C8B92C6923BAB9823089D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_270 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_269, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
bool L_271 = Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699((Type_t *)L_268, (RuntimeObject *)L_270, /*hidden argument*/NULL);
if (!L_271)
{
goto IL_0632;
}
}
{
Type_t * L_272 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_273 = Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9((Type_t *)L_272, /*hidden argument*/NULL);
V_5 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_273;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_274 = { reinterpret_cast<intptr_t> (KeyValuePairTypeInfo_2_t48B3C70F6BED0E9D17020012EC2D719996E9A241_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_275 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_274, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_276 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_277 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_276;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_278 = V_5;
NullCheck(L_278);
int32_t L_279 = 0;
Type_t * L_280 = (L_278)->GetAt(static_cast<il2cpp_array_size_t>(L_279));
NullCheck(L_277);
ArrayElementTypeCheck (L_277, L_280);
(L_277)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_280);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_281 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_277;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_282 = V_5;
NullCheck(L_282);
int32_t L_283 = 1;
Type_t * L_284 = (L_282)->GetAt(static_cast<il2cpp_array_size_t>(L_283));
NullCheck(L_281);
ArrayElementTypeCheck (L_281, L_284);
(L_281)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_284);
NullCheck((Type_t *)L_275);
Type_t * L_285 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_275, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_281);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_286 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_287 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_286;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_288 = ___recursionCheck0;
NullCheck(L_287);
ArrayElementTypeCheck (L_287, L_288);
(L_287)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_288);
RuntimeObject * L_289 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_285, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_287, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 *)Castclass((RuntimeObject*)L_289, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_0632:
{
Type_t * L_290 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_291 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_292 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_291, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
bool L_293 = Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699((Type_t *)L_290, (RuntimeObject *)L_292, /*hidden argument*/NULL);
if (!L_293)
{
goto IL_067f;
}
}
{
Type_t * L_294 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_295 = Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9((Type_t *)L_294, /*hidden argument*/NULL);
V_6 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_295;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_296 = { reinterpret_cast<intptr_t> (NullableTypeInfo_1_tDCBDA4871397F1360E9A30276BDABFDABB3B9115_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_297 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_296, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_298 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_299 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_298;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_300 = V_6;
NullCheck(L_300);
int32_t L_301 = 0;
Type_t * L_302 = (L_300)->GetAt(static_cast<il2cpp_array_size_t>(L_301));
NullCheck(L_299);
ArrayElementTypeCheck (L_299, L_302);
(L_299)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_302);
NullCheck((Type_t *)L_297);
Type_t * L_303 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_297, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_299);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_304 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_305 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_304;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_306 = ___recursionCheck0;
NullCheck(L_305);
ArrayElementTypeCheck (L_305, L_306);
(L_305)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_306);
RuntimeObject * L_307 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_303, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_305, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 *)Castclass((RuntimeObject*)L_307, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_067f:
{
Type_t * L_308 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
Type_t * L_309 = Statics_FindEnumerableElementType_mE2B9BCD8FECD8262FA51BED1DD0AE91DD8C37180((Type_t *)L_308, /*hidden argument*/NULL);
V_7 = (Type_t *)L_309;
Type_t * L_310 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_311 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9((Type_t *)L_310, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_311)
{
goto IL_06cd;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_312 = { reinterpret_cast<intptr_t> (EnumerableTypeInfo_2_t1B81D72B3A33D350331D3C9F1A4CA859454C351E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_313 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_312, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_314 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_315 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_314;
Type_t * L_316 = V_1;
NullCheck(L_315);
ArrayElementTypeCheck (L_315, L_316);
(L_315)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_316);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_317 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_315;
Type_t * L_318 = V_7;
NullCheck(L_317);
ArrayElementTypeCheck (L_317, L_318);
(L_317)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_318);
NullCheck((Type_t *)L_313);
Type_t * L_319 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(95 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_313, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_317);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_320 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_321 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_320;
Type_t * L_322 = V_7;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_323 = ___recursionCheck0;
IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var);
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_324 = Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6((Type_t *)L_322, (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)L_323, /*hidden argument*/NULL);
NullCheck(L_321);
ArrayElementTypeCheck (L_321, L_324);
(L_321)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_324);
RuntimeObject * L_325 = Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A((Type_t *)L_319, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_321, /*hidden argument*/NULL);
V_0 = (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)((TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 *)Castclass((RuntimeObject*)L_325, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
goto IL_06ec;
}
IL_06cd:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_326 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_327 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_326;
Type_t * L_328 = V_1;
NullCheck((MemberInfo_t *)L_328);
String_t* L_329 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_328);
NullCheck(L_327);
ArrayElementTypeCheck (L_327, L_329);
(L_327)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_329);
String_t* L_330 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB((String_t*)_stringLiteralDBA0F8BCBC38F520B1A5C333F28EEB1DDA183472, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_327, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_331 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_331, (String_t*)L_330, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_331, NULL, Statics_CreateDefaultTypeInfo_TisUIntPtr_t_m4BF51455761B5D059AC2E3FA23CEF735EC9D0C9C_RuntimeMethod_var);
}
IL_06ec:
{
TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_332 = V_0;
return ((TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 *)Castclass((RuntimeObject*)L_332, IL2CPP_RGCTX_DATA(method->rgctx_data, 3)));
}
}
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable::CombinePredicates<System.Object>(System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * Enumerable_CombinePredicates_TisRuntimeObject_mD514CB2BE6B311A8CC33D9DC2962A3DDDA40A32F_gshared (Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * ___predicate10, Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * ___predicate21, const RuntimeMethod* method)
{
{
U3CU3Ec__DisplayClass6_0_1_t69D2CA48E126DBADF561D4ECF6D6C18FB40017BE * L_0 = (U3CU3Ec__DisplayClass6_0_1_t69D2CA48E126DBADF561D4ECF6D6C18FB40017BE *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
(( void (*) (U3CU3Ec__DisplayClass6_0_1_t69D2CA48E126DBADF561D4ECF6D6C18FB40017BE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
U3CU3Ec__DisplayClass6_0_1_t69D2CA48E126DBADF561D4ECF6D6C18FB40017BE * L_1 = (U3CU3Ec__DisplayClass6_0_1_t69D2CA48E126DBADF561D4ECF6D6C18FB40017BE *)L_0;
Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * L_2 = ___predicate10;
NullCheck(L_1);
L_1->set_predicate1_0(L_2);
U3CU3Ec__DisplayClass6_0_1_t69D2CA48E126DBADF561D4ECF6D6C18FB40017BE * L_3 = (U3CU3Ec__DisplayClass6_0_1_t69D2CA48E126DBADF561D4ECF6D6C18FB40017BE *)L_1;
Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * L_4 = ___predicate21;
NullCheck(L_3);
L_3->set_predicate2_1(L_4);
Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * L_5 = (Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_5, (RuntimeObject *)L_3, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
return L_5;
}
}
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable::CombinePredicates<UnityEngine.Ray>(System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE * Enumerable_CombinePredicates_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m1537FAA73D010C7E129817CB156E46AAAE041ABC_gshared (Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE * ___predicate10, Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE * ___predicate21, const RuntimeMethod* method)
{
{
U3CU3Ec__DisplayClass6_0_1_t3C729929CDD16C4B567BE980075236C59C100E80 * L_0 = (U3CU3Ec__DisplayClass6_0_1_t3C729929CDD16C4B567BE980075236C59C100E80 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
(( void (*) (U3CU3Ec__DisplayClass6_0_1_t3C729929CDD16C4B567BE980075236C59C100E80 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
U3CU3Ec__DisplayClass6_0_1_t3C729929CDD16C4B567BE980075236C59C100E80 * L_1 = (U3CU3Ec__DisplayClass6_0_1_t3C729929CDD16C4B567BE980075236C59C100E80 *)L_0;
Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE * L_2 = ___predicate10;
NullCheck(L_1);
L_1->set_predicate1_0(L_2);
U3CU3Ec__DisplayClass6_0_1_t3C729929CDD16C4B567BE980075236C59C100E80 * L_3 = (U3CU3Ec__DisplayClass6_0_1_t3C729929CDD16C4B567BE980075236C59C100E80 *)L_1;
Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE * L_4 = ___predicate21;
NullCheck(L_3);
L_3->set_predicate2_1(L_4);
Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE * L_5 = (Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (Func_2_t08AB4A8D57784334B8B29A0D2FAC032F2A8BE5EE *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_5, (RuntimeObject *)L_3, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
return L_5;
}
}
// System.Int32 Microsoft.MixedReality.Toolkit.CollectionsExtensions::SortedInsert<System.Object>(System.Collections.Generic.List`1<TElement>,TElement,System.Collections.Generic.IComparer`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionsExtensions_SortedInsert_TisRuntimeObject_m45731811EF76597A8D6F6AD56132BE5B1AE6FA3A_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * ___elements0, RuntimeObject * ___toInsert1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CollectionsExtensions_SortedInsert_TisRuntimeObject_m45731811EF76597A8D6F6AD56132BE5B1AE6FA3A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
RuntimeObject * V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* G_B2_0 = NULL;
RuntimeObject* G_B1_0 = NULL;
int32_t G_B11_0 = 0;
{
// var effectiveComparer = comparer ?? Comparer<TElement>.Default;
RuntimeObject* L_0 = ___comparer2;
RuntimeObject* L_1 = (RuntimeObject*)L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_000a;
}
}
{
Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * L_2 = (( Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
G_B2_0 = ((RuntimeObject*)(L_2));
}
IL_000a:
{
V_0 = (RuntimeObject*)G_B2_0;
// if (Application.isEditor)
bool L_3 = Application_get_isEditor_m347E6EE16E5109EF613C83ED98DB1EC6E3EF5E26(/*hidden argument*/NULL);
if (!L_3)
{
goto IL_0052;
}
}
{
// for (int iElement = 0; iElement < elements.Count - 1; iElement++)
V_3 = (int32_t)0;
goto IL_0047;
}
IL_0016:
{
// var element = elements[iElement];
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_4 = ___elements0;
int32_t L_5 = V_3;
NullCheck((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_4);
RuntimeObject * L_6 = (( RuntimeObject * (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_4, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
V_4 = (RuntimeObject *)L_6;
// var nextElement = elements[iElement + 1];
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_7 = ___elements0;
int32_t L_8 = V_3;
NullCheck((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_7);
RuntimeObject * L_9 = (( RuntimeObject * (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_7, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
V_5 = (RuntimeObject *)L_9;
// if (effectiveComparer.Compare(element, nextElement) > 0)
RuntimeObject* L_10 = V_0;
RuntimeObject * L_11 = V_4;
RuntimeObject * L_12 = V_5;
NullCheck((RuntimeObject*)L_10);
int32_t L_13 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 3), (RuntimeObject*)L_10, (RuntimeObject *)L_11, (RuntimeObject *)L_12);
if ((((int32_t)L_13) <= ((int32_t)0)))
{
goto IL_0043;
}
}
{
// Debug.LogWarning("Elements must already be sorted to call this method.");
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogWarning_m37338644DC81F640CCDFEAE35A223F0E965F0568((RuntimeObject *)_stringLiteralAD8D6903DEF0C8235FCFCD2EF02963C7EFC13C41, /*hidden argument*/NULL);
// break;
goto IL_0052;
}
IL_0043:
{
// for (int iElement = 0; iElement < elements.Count - 1; iElement++)
int32_t L_14 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_0047:
{
// for (int iElement = 0; iElement < elements.Count - 1; iElement++)
int32_t L_15 = V_3;
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_16 = ___elements0;
NullCheck((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_16);
int32_t L_17 = (( int32_t (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
if ((((int32_t)L_15) < ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1)))))
{
goto IL_0016;
}
}
IL_0052:
{
// int searchResult = elements.BinarySearch(toInsert, effectiveComparer);
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_18 = ___elements0;
RuntimeObject * L_19 = ___toInsert1;
RuntimeObject* L_20 = V_0;
NullCheck((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_18);
int32_t L_21 = (( int32_t (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_18, (RuntimeObject *)L_19, (RuntimeObject*)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
V_1 = (int32_t)L_21;
// int insertionIndex = searchResult >= 0
// ? searchResult
// : ~searchResult;
int32_t L_22 = V_1;
if ((((int32_t)L_22) >= ((int32_t)0)))
{
goto IL_0063;
}
}
{
int32_t L_23 = V_1;
G_B11_0 = ((~L_23));
goto IL_0064;
}
IL_0063:
{
int32_t L_24 = V_1;
G_B11_0 = L_24;
}
IL_0064:
{
V_2 = (int32_t)G_B11_0;
// elements.Insert(insertionIndex, toInsert);
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_25 = ___elements0;
int32_t L_26 = V_2;
RuntimeObject * L_27 = ___toInsert1;
NullCheck((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_25);
(( void (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, int32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_25, (int32_t)L_26, (RuntimeObject *)L_27, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
// return insertionIndex;
int32_t L_28 = V_2;
return L_28;
}
}
// System.Int32 System.Array::BinarySearch<Microsoft.MixedReality.Toolkit.Boundary.Edge>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_mE999CCA521DD03B6383D41412214029BEF0B86DA_gshared (EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73* ___array0, int32_t ___index1, int32_t ___length2, Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_mE999CCA521DD03B6383D41412214029BEF0B86DA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_mE999CCA521DD03B6383D41412214029BEF0B86DA_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_mE999CCA521DD03B6383D41412214029BEF0B86DA_RuntimeMethod_var);
}
IL_0031:
{
EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_mE999CCA521DD03B6383D41412214029BEF0B86DA_RuntimeMethod_var);
}
IL_0044:
{
EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73*, int32_t, int32_t, Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73*)L_10, (int32_t)L_11, (int32_t)L_12, (Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_mC2AE554FDB5EDAF726BA00BBA06E56E05D67B2EC_gshared (MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B* ___array0, int32_t ___index1, int32_t ___length2, MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_mC2AE554FDB5EDAF726BA00BBA06E56E05D67B2EC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_mC2AE554FDB5EDAF726BA00BBA06E56E05D67B2EC_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_mC2AE554FDB5EDAF726BA00BBA06E56E05D67B2EC_RuntimeMethod_var);
}
IL_0031:
{
MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_mC2AE554FDB5EDAF726BA00BBA06E56E05D67B2EC_RuntimeMethod_var);
}
IL_0044:
{
MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B*, int32_t, int32_t, MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B*)L_10, (int32_t)L_11, (int32_t)L_12, (MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_mEA3B674F656896F71B0C639BC8EEB2FC521DB872_gshared (BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A* ___array0, int32_t ___index1, int32_t ___length2, BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_mEA3B674F656896F71B0C639BC8EEB2FC521DB872_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_mEA3B674F656896F71B0C639BC8EEB2FC521DB872_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_mEA3B674F656896F71B0C639BC8EEB2FC521DB872_RuntimeMethod_var);
}
IL_0031:
{
BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_mEA3B674F656896F71B0C639BC8EEB2FC521DB872_RuntimeMethod_var);
}
IL_0044:
{
BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A*, int32_t, int32_t, BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A*)L_10, (int32_t)L_11, (int32_t)L_12, (BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m9E51BB0EBAD067C4AD5BD72DDCC66A1DFE46355E_gshared (InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5* ___array0, int32_t ___index1, int32_t ___length2, InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m9E51BB0EBAD067C4AD5BD72DDCC66A1DFE46355E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m9E51BB0EBAD067C4AD5BD72DDCC66A1DFE46355E_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m9E51BB0EBAD067C4AD5BD72DDCC66A1DFE46355E_RuntimeMethod_var);
}
IL_0031:
{
InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m9E51BB0EBAD067C4AD5BD72DDCC66A1DFE46355E_RuntimeMethod_var);
}
IL_0044:
{
InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5*, int32_t, int32_t, InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5*)L_10, (int32_t)L_11, (int32_t)L_12, (InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<Microsoft.MixedReality.Toolkit.UI.ProfileSettings>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_mACEC4B3BBCF556F70CE4DF0781AC9C18266D9B59_gshared (ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88* ___array0, int32_t ___index1, int32_t ___length2, ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_mACEC4B3BBCF556F70CE4DF0781AC9C18266D9B59_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_mACEC4B3BBCF556F70CE4DF0781AC9C18266D9B59_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_mACEC4B3BBCF556F70CE4DF0781AC9C18266D9B59_RuntimeMethod_var);
}
IL_0031:
{
ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_mACEC4B3BBCF556F70CE4DF0781AC9C18266D9B59_RuntimeMethod_var);
}
IL_0044:
{
ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88*, int32_t, int32_t, ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88*)L_10, (int32_t)L_11, (int32_t)L_12, (ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<Microsoft.MixedReality.Toolkit.UI.ShaderProperties>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m48321F54984CB8E7FAF3F76348A7DC698E5C3ABA_gshared (ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103* ___array0, int32_t ___index1, int32_t ___length2, ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m48321F54984CB8E7FAF3F76348A7DC698E5C3ABA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m48321F54984CB8E7FAF3F76348A7DC698E5C3ABA_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m48321F54984CB8E7FAF3F76348A7DC698E5C3ABA_RuntimeMethod_var);
}
IL_0031:
{
ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m48321F54984CB8E7FAF3F76348A7DC698E5C3ABA_RuntimeMethod_var);
}
IL_0044:
{
ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103*, int32_t, int32_t, ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103*)L_10, (int32_t)L_11, (int32_t)L_12, (ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<Microsoft.MixedReality.Toolkit.UI.ThemeSettings>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_m6732FF9F941B4C4CA599383565DCE9E1A3F71E59_gshared (ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA* ___array0, int32_t ___index1, int32_t ___length2, ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_m6732FF9F941B4C4CA599383565DCE9E1A3F71E59_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_m6732FF9F941B4C4CA599383565DCE9E1A3F71E59_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_m6732FF9F941B4C4CA599383565DCE9E1A3F71E59_RuntimeMethod_var);
}
IL_0031:
{
ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_m6732FF9F941B4C4CA599383565DCE9E1A3F71E59_RuntimeMethod_var);
}
IL_0044:
{
ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA*, int32_t, int32_t, ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA*)L_10, (int32_t)L_11, (int32_t)L_12, (ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_mCB2D4AD438D996980045B026004389E6C9E436AA_gshared (InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E* ___array0, int32_t ___index1, int32_t ___length2, InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_mCB2D4AD438D996980045B026004389E6C9E436AA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_mCB2D4AD438D996980045B026004389E6C9E436AA_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_mCB2D4AD438D996980045B026004389E6C9E436AA_RuntimeMethod_var);
}
IL_0031:
{
InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_mCB2D4AD438D996980045B026004389E6C9E436AA_RuntimeMethod_var);
}
IL_0044:
{
InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E*, int32_t, int32_t, InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E*)L_10, (int32_t)L_11, (int32_t)L_12, (InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mD0580F6A57C00D4BB0B8497571BD8DE4D46AFC2F_gshared (InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4* ___array0, int32_t ___index1, int32_t ___length2, InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mD0580F6A57C00D4BB0B8497571BD8DE4D46AFC2F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mD0580F6A57C00D4BB0B8497571BD8DE4D46AFC2F_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mD0580F6A57C00D4BB0B8497571BD8DE4D46AFC2F_RuntimeMethod_var);
}
IL_0031:
{
InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mD0580F6A57C00D4BB0B8497571BD8DE4D46AFC2F_RuntimeMethod_var);
}
IL_0044:
{
InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4*, int32_t, int32_t, InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4*)L_10, (int32_t)L_11, (int32_t)L_12, (InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_mE688AE9AB2BE31D75E5630EE2B437C571AFF035B_gshared (ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9* ___array0, int32_t ___index1, int32_t ___length2, ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_mE688AE9AB2BE31D75E5630EE2B437C571AFF035B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_mE688AE9AB2BE31D75E5630EE2B437C571AFF035B_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_mE688AE9AB2BE31D75E5630EE2B437C571AFF035B_RuntimeMethod_var);
}
IL_0031:
{
ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_mE688AE9AB2BE31D75E5630EE2B437C571AFF035B_RuntimeMethod_var);
}
IL_0044:
{
ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9*, int32_t, int32_t, ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9*)L_10, (int32_t)L_11, (int32_t)L_12, (ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Byte>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mB3D0C0E03BFDCA6DCE32948268CC6ACE5D28A08C_gshared (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, int32_t ___index1, int32_t ___length2, uint8_t ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mB3D0C0E03BFDCA6DCE32948268CC6ACE5D28A08C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mB3D0C0E03BFDCA6DCE32948268CC6ACE5D28A08C_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mB3D0C0E03BFDCA6DCE32948268CC6ACE5D28A08C_RuntimeMethod_var);
}
IL_0031:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mB3D0C0E03BFDCA6DCE32948268CC6ACE5D28A08C_RuntimeMethod_var);
}
IL_0044:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
uint8_t L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, uint8_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)L_10, (int32_t)L_11, (int32_t)L_12, (uint8_t)L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Char>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m84CD815D21A6D6C056335FD5ABB904D508EB2F2A_gshared (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___array0, int32_t ___index1, int32_t ___length2, Il2CppChar ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m84CD815D21A6D6C056335FD5ABB904D508EB2F2A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m84CD815D21A6D6C056335FD5ABB904D508EB2F2A_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m84CD815D21A6D6C056335FD5ABB904D508EB2F2A_RuntimeMethod_var);
}
IL_0031:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m84CD815D21A6D6C056335FD5ABB904D508EB2F2A_RuntimeMethod_var);
}
IL_0044:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
Il2CppChar L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t, Il2CppChar, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)L_10, (int32_t)L_11, (int32_t)L_12, (Il2CppChar)L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m1E809338041B52162EA87A7B8D3F31A39D4D72C2_gshared (KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m1E809338041B52162EA87A7B8D3F31A39D4D72C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m1E809338041B52162EA87A7B8D3F31A39D4D72C2_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m1E809338041B52162EA87A7B8D3F31A39D4D72C2_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m1E809338041B52162EA87A7B8D3F31A39D4D72C2_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F*, int32_t, int32_t, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC649768C3F11C43DE320BF26E54183F12709CDEC_gshared (KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC649768C3F11C43DE320BF26E54183F12709CDEC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC649768C3F11C43DE320BF26E54183F12709CDEC_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC649768C3F11C43DE320BF26E54183F12709CDEC_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC649768C3F11C43DE320BF26E54183F12709CDEC_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7*, int32_t, int32_t, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mC01C436387B9F301A31A63975A60EF31C0F14BC4_gshared (KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mC01C436387B9F301A31A63975A60EF31C0F14BC4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mC01C436387B9F301A31A63975A60EF31C0F14BC4_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mC01C436387B9F301A31A63975A60EF31C0F14BC4_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mC01C436387B9F301A31A63975A60EF31C0F14BC4_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A*, int32_t, int32_t, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m1197B69B899E731E1CBFB1C54A1F408DA98A7B1C_gshared (KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m1197B69B899E731E1CBFB1C54A1F408DA98A7B1C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m1197B69B899E731E1CBFB1C54A1F408DA98A7B1C_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m1197B69B899E731E1CBFB1C54A1F408DA98A7B1C_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m1197B69B899E731E1CBFB1C54A1F408DA98A7B1C_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5*, int32_t, int32_t, KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mAEEC55E914AA2B3B582B0B985BC8636F45FA9806_gshared (KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mAEEC55E914AA2B3B582B0B985BC8636F45FA9806_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mAEEC55E914AA2B3B582B0B985BC8636F45FA9806_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mAEEC55E914AA2B3B582B0B985BC8636F45FA9806_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mAEEC55E914AA2B3B582B0B985BC8636F45FA9806_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417*, int32_t, int32_t, KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mCE9E0BBE31D9DD4A428E1A9A923B0F09765520A6_gshared (KeyValuePair_2U5BU5D_tC7A09A604E89B878B8A673BD6238A819ADDAD26A* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mCE9E0BBE31D9DD4A428E1A9A923B0F09765520A6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_tC7A09A604E89B878B8A673BD6238A819ADDAD26A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mCE9E0BBE31D9DD4A428E1A9A923B0F09765520A6_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mCE9E0BBE31D9DD4A428E1A9A923B0F09765520A6_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_tC7A09A604E89B878B8A673BD6238A819ADDAD26A* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mCE9E0BBE31D9DD4A428E1A9A923B0F09765520A6_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_tC7A09A604E89B878B8A673BD6238A819ADDAD26A* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_tC7A09A604E89B878B8A673BD6238A819ADDAD26A*, int32_t, int32_t, KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_tC7A09A604E89B878B8A673BD6238A819ADDAD26A*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mFC6E3E824DF7484B94A7EA9B67C1CFDFA4D5A465_gshared (KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mFC6E3E824DF7484B94A7EA9B67C1CFDFA4D5A465_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mFC6E3E824DF7484B94A7EA9B67C1CFDFA4D5A465_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mFC6E3E824DF7484B94A7EA9B67C1CFDFA4D5A465_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mFC6E3E824DF7484B94A7EA9B67C1CFDFA4D5A465_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291*, int32_t, int32_t, KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mEEEAD860A7573F1F583EBA7E8343C4A84A7A68E9_gshared (KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mEEEAD860A7573F1F583EBA7E8343C4A84A7A68E9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mEEEAD860A7573F1F583EBA7E8343C4A84A7A68E9_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mEEEAD860A7573F1F583EBA7E8343C4A84A7A68E9_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mEEEAD860A7573F1F583EBA7E8343C4A84A7A68E9_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B*, int32_t, int32_t, KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.Int32,System.UInt32>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4_m4D1C8875DC3AFC3F951A05F681431115EB72B34E_gshared (KeyValuePair_2U5BU5D_t2E62DFFEEC2B3F858CEA261AE40C4CC4A8A2808D* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4_m4D1C8875DC3AFC3F951A05F681431115EB72B34E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_t2E62DFFEEC2B3F858CEA261AE40C4CC4A8A2808D* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4_m4D1C8875DC3AFC3F951A05F681431115EB72B34E_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4_m4D1C8875DC3AFC3F951A05F681431115EB72B34E_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_t2E62DFFEEC2B3F858CEA261AE40C4CC4A8A2808D* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4_m4D1C8875DC3AFC3F951A05F681431115EB72B34E_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_t2E62DFFEEC2B3F858CEA261AE40C4CC4A8A2808D* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_t2E62DFFEEC2B3F858CEA261AE40C4CC4A8A2808D*, int32_t, int32_t, KeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_t2E62DFFEEC2B3F858CEA261AE40C4CC4A8A2808D*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_tEE8C58367BC77CCC649F893DF7CB813C6B5C1AB4 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m045C87C6F889E6A10CBE7A003F332670C458DB6E_gshared (KeyValuePair_2U5BU5D_tF3E7A3C0CD8F236E22836D54F25B24F11461CD8C* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m045C87C6F889E6A10CBE7A003F332670C458DB6E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_tF3E7A3C0CD8F236E22836D54F25B24F11461CD8C* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m045C87C6F889E6A10CBE7A003F332670C458DB6E_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m045C87C6F889E6A10CBE7A003F332670C458DB6E_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_tF3E7A3C0CD8F236E22836D54F25B24F11461CD8C* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m045C87C6F889E6A10CBE7A003F332670C458DB6E_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_tF3E7A3C0CD8F236E22836D54F25B24F11461CD8C* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_tF3E7A3C0CD8F236E22836D54F25B24F11461CD8C*, int32_t, int32_t, KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_tF3E7A3C0CD8F236E22836D54F25B24F11461CD8C*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mEBD369DABCA4D2399B45FE0EA72909694DDF8399_gshared (KeyValuePair_2U5BU5D_tA70A6D970A6407747BDE3F49A31B0BE1D7043951* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mEBD369DABCA4D2399B45FE0EA72909694DDF8399_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_tA70A6D970A6407747BDE3F49A31B0BE1D7043951* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mEBD369DABCA4D2399B45FE0EA72909694DDF8399_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mEBD369DABCA4D2399B45FE0EA72909694DDF8399_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_tA70A6D970A6407747BDE3F49A31B0BE1D7043951* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mEBD369DABCA4D2399B45FE0EA72909694DDF8399_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_tA70A6D970A6407747BDE3F49A31B0BE1D7043951* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_tA70A6D970A6407747BDE3F49A31B0BE1D7043951*, int32_t, int32_t, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_tA70A6D970A6407747BDE3F49A31B0BE1D7043951*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mFDA54C827C1D317996C9BD0BB6D5208A9FDB8615_gshared (KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mFDA54C827C1D317996C9BD0BB6D5208A9FDB8615_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mFDA54C827C1D317996C9BD0BB6D5208A9FDB8615_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mFDA54C827C1D317996C9BD0BB6D5208A9FDB8615_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mFDA54C827C1D317996C9BD0BB6D5208A9FDB8615_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB*, int32_t, int32_t, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m457B24E910F7BC25FA2D8A86207630B1453069C8_gshared (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m457B24E910F7BC25FA2D8A86207630B1453069C8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m457B24E910F7BC25FA2D8A86207630B1453069C8_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m457B24E910F7BC25FA2D8A86207630B1453069C8_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m457B24E910F7BC25FA2D8A86207630B1453069C8_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*, int32_t, int32_t, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_mC9517C8C0CFDC8377A7E22EB81BA7B9BE20555F8_gshared (KeyValuePair_2U5BU5D_t90D650B211D4280D9C648325D90FE4CDA0CE18D7* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_mC9517C8C0CFDC8377A7E22EB81BA7B9BE20555F8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_t90D650B211D4280D9C648325D90FE4CDA0CE18D7* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_mC9517C8C0CFDC8377A7E22EB81BA7B9BE20555F8_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_mC9517C8C0CFDC8377A7E22EB81BA7B9BE20555F8_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_t90D650B211D4280D9C648325D90FE4CDA0CE18D7* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_mC9517C8C0CFDC8377A7E22EB81BA7B9BE20555F8_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_t90D650B211D4280D9C648325D90FE4CDA0CE18D7* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_t90D650B211D4280D9C648325D90FE4CDA0CE18D7*, int32_t, int32_t, KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_t90D650B211D4280D9C648325D90FE4CDA0CE18D7*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA82D8D7AC96631A617854337195E8830DB3F8649_gshared (KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA82D8D7AC96631A617854337195E8830DB3F8649_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA82D8D7AC96631A617854337195E8830DB3F8649_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA82D8D7AC96631A617854337195E8830DB3F8649_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA82D8D7AC96631A617854337195E8830DB3F8649_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8*, int32_t, int32_t, KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_mC9A170485F63D61087F53E04271603ACEED8534C_gshared (KeyValuePair_2U5BU5D_tE550885A1F49CF2FBFB8A2E39DC0EADEF91219B8* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_mC9A170485F63D61087F53E04271603ACEED8534C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_tE550885A1F49CF2FBFB8A2E39DC0EADEF91219B8* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_mC9A170485F63D61087F53E04271603ACEED8534C_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_mC9A170485F63D61087F53E04271603ACEED8534C_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_tE550885A1F49CF2FBFB8A2E39DC0EADEF91219B8* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_mC9A170485F63D61087F53E04271603ACEED8534C_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_tE550885A1F49CF2FBFB8A2E39DC0EADEF91219B8* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_tE550885A1F49CF2FBFB8A2E39DC0EADEF91219B8*, int32_t, int32_t, KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_tE550885A1F49CF2FBFB8A2E39DC0EADEF91219B8*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m20BE3F0D660F831E8932E3F8E54EF17904360F3E_gshared (KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD* ___array0, int32_t ___index1, int32_t ___length2, KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m20BE3F0D660F831E8932E3F8E54EF17904360F3E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m20BE3F0D660F831E8932E3F8E54EF17904360F3E_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m20BE3F0D660F831E8932E3F8E54EF17904360F3E_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m20BE3F0D660F831E8932E3F8E54EF17904360F3E_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD*, int32_t, int32_t, KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD*)L_10, (int32_t)L_11, (int32_t)L_12, (KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Diagnostics.Tracing.EventProvider_SessionInfo>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m03FB2954AF31857178AEEEA72BE5CE5EA55B67BE_gshared (SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* ___array0, int32_t ___index1, int32_t ___length2, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m03FB2954AF31857178AEEEA72BE5CE5EA55B67BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m03FB2954AF31857178AEEEA72BE5CE5EA55B67BE_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m03FB2954AF31857178AEEEA72BE5CE5EA55B67BE_RuntimeMethod_var);
}
IL_0031:
{
SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m03FB2954AF31857178AEEEA72BE5CE5EA55B67BE_RuntimeMethod_var);
}
IL_0044:
{
SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906*, int32_t, int32_t, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906*)L_10, (int32_t)L_11, (int32_t)L_12, (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Guid>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisGuid_t_m6CE4AD2C7E6AF127440BE859120AF7C1D1FB803F_gshared (GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ___array0, int32_t ___index1, int32_t ___length2, Guid_t ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisGuid_t_m6CE4AD2C7E6AF127440BE859120AF7C1D1FB803F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisGuid_t_m6CE4AD2C7E6AF127440BE859120AF7C1D1FB803F_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisGuid_t_m6CE4AD2C7E6AF127440BE859120AF7C1D1FB803F_RuntimeMethod_var);
}
IL_0031:
{
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisGuid_t_m6CE4AD2C7E6AF127440BE859120AF7C1D1FB803F_RuntimeMethod_var);
}
IL_0044:
{
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
Guid_t L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF*, int32_t, int32_t, Guid_t , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF*)L_10, (int32_t)L_11, (int32_t)L_12, (Guid_t )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Int32>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m422EDDA3031357E73A5DE5DD70068AD8E1858B2D_gshared (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___array0, int32_t ___index1, int32_t ___length2, int32_t ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m422EDDA3031357E73A5DE5DD70068AD8E1858B2D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m422EDDA3031357E73A5DE5DD70068AD8E1858B2D_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m422EDDA3031357E73A5DE5DD70068AD8E1858B2D_RuntimeMethod_var);
}
IL_0031:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m422EDDA3031357E73A5DE5DD70068AD8E1858B2D_RuntimeMethod_var);
}
IL_0044:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
int32_t L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*, int32_t, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_10, (int32_t)L_11, (int32_t)L_12, (int32_t)L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Int32Enum>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m2C182555176CA144188F81AAD71A2CB9F3B97DED_gshared (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* ___array0, int32_t ___index1, int32_t ___length2, int32_t ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m2C182555176CA144188F81AAD71A2CB9F3B97DED_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m2C182555176CA144188F81AAD71A2CB9F3B97DED_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m2C182555176CA144188F81AAD71A2CB9F3B97DED_RuntimeMethod_var);
}
IL_0031:
{
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m2C182555176CA144188F81AAD71A2CB9F3B97DED_RuntimeMethod_var);
}
IL_0044:
{
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
int32_t L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A*, int32_t, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A*)L_10, (int32_t)L_11, (int32_t)L_12, (int32_t)L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Object>(T[],System.Int32,System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisRuntimeObject_m535329324687A28BC4E8B3767E2220B5BF2AB121_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject * ___value3, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
int32_t L_1 = ___index1;
int32_t L_2 = ___length2;
RuntimeObject * L_3 = ___value3;
int32_t L_4 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_0, (int32_t)L_1, (int32_t)L_2, (RuntimeObject *)L_3, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_4;
}
}
// System.Int32 System.Array::BinarySearch<System.Object>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisRuntimeObject_m231DBB062A7AE93EDDB3DA7F315257F029F408EA_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject * ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisRuntimeObject_m231DBB062A7AE93EDDB3DA7F315257F029F408EA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisRuntimeObject_m231DBB062A7AE93EDDB3DA7F315257F029F408EA_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisRuntimeObject_m231DBB062A7AE93EDDB3DA7F315257F029F408EA_RuntimeMethod_var);
}
IL_0031:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisRuntimeObject_m231DBB062A7AE93EDDB3DA7F315257F029F408EA_RuntimeMethod_var);
}
IL_0044:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
RuntimeObject * L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_10, (int32_t)L_11, (int32_t)L_12, (RuntimeObject *)L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.Object>(T[],T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisRuntimeObject_mDB35A59E7FE53934FCA076CC6CEDB1B0CF0E21A8_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisRuntimeObject_mDB35A59E7FE53934FCA076CC6CEDB1B0CF0E21A8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisRuntimeObject_mDB35A59E7FE53934FCA076CC6CEDB1B0CF0E21A8_RuntimeMethod_var);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = ___array0;
NullCheck(L_3);
RuntimeObject * L_4 = ___value1;
int32_t L_5 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))), (RuntimeObject *)L_4, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_5;
}
}
// System.Int32 System.Array::BinarySearch<System.Object>(T[],T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisRuntimeObject_mDB70A968B86A65FAAEACC23E4318A873AB86BE78_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisRuntimeObject_mDB70A968B86A65FAAEACC23E4318A873AB86BE78_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisRuntimeObject_mDB70A968B86A65FAAEACC23E4318A873AB86BE78_RuntimeMethod_var);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = ___array0;
NullCheck(L_3);
RuntimeObject * L_4 = ___value1;
RuntimeObject* L_5 = ___comparer2;
int32_t L_6 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))), (RuntimeObject *)L_4, (RuntimeObject*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_6;
}
}
// System.Int32 System.Array::BinarySearch<System.Single>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8F59A6F6DA436F5F98DEFA57143A5FE243E4D936_gshared (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___array0, int32_t ___index1, int32_t ___length2, float ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8F59A6F6DA436F5F98DEFA57143A5FE243E4D936_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8F59A6F6DA436F5F98DEFA57143A5FE243E4D936_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8F59A6F6DA436F5F98DEFA57143A5FE243E4D936_RuntimeMethod_var);
}
IL_0031:
{
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8F59A6F6DA436F5F98DEFA57143A5FE243E4D936_RuntimeMethod_var);
}
IL_0044:
{
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
float L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*, int32_t, int32_t, float, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*)L_10, (int32_t)L_11, (int32_t)L_12, (float)L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.UInt32>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCBB688507C1CCB926EEB79CF495D774E457E39DA_gshared (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___array0, int32_t ___index1, int32_t ___length2, uint32_t ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCBB688507C1CCB926EEB79CF495D774E457E39DA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCBB688507C1CCB926EEB79CF495D774E457E39DA_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCBB688507C1CCB926EEB79CF495D774E457E39DA_RuntimeMethod_var);
}
IL_0031:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCBB688507C1CCB926EEB79CF495D774E457E39DA_RuntimeMethod_var);
}
IL_0044:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
uint32_t L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*, int32_t, int32_t, uint32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)L_10, (int32_t)L_11, (int32_t)L_12, (uint32_t)L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.UInt64>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m540250F0BE7BD67F5C7E204F96442E5E7C8B7C6B_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___array0, int32_t ___index1, int32_t ___length2, uint64_t ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m540250F0BE7BD67F5C7E204F96442E5E7C8B7C6B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m540250F0BE7BD67F5C7E204F96442E5E7C8B7C6B_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m540250F0BE7BD67F5C7E204F96442E5E7C8B7C6B_RuntimeMethod_var);
}
IL_0031:
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m540250F0BE7BD67F5C7E204F96442E5E7C8B7C6B_RuntimeMethod_var);
}
IL_0044:
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
uint64_t L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, int32_t, int32_t, uint64_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_10, (int32_t)L_11, (int32_t)L_12, (uint64_t)L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<System.UInt64>(T[],T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mDC37BFA945C8ED7FB8700727168D2F68CCFCE4A3_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___array0, uint64_t ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mDC37BFA945C8ED7FB8700727168D2F68CCFCE4A3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mDC37BFA945C8ED7FB8700727168D2F68CCFCE4A3_RuntimeMethod_var);
}
IL_000e:
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_2 = ___array0;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_3 = ___array0;
NullCheck(L_3);
uint64_t L_4 = ___value1;
int32_t L_5 = (( int32_t (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, int32_t, int32_t, uint64_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_2, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))), (uint64_t)L_4, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_5;
}
}
// System.Int32 System.Array::BinarySearch<TMPro.SpriteAssetUtilities.TexturePacker_SpriteData>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mC0EE7D10AF2003CAEF21AC93EBF2338F59341582_gshared (SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41* ___array0, int32_t ___index1, int32_t ___length2, SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mC0EE7D10AF2003CAEF21AC93EBF2338F59341582_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mC0EE7D10AF2003CAEF21AC93EBF2338F59341582_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mC0EE7D10AF2003CAEF21AC93EBF2338F59341582_RuntimeMethod_var);
}
IL_0031:
{
SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mC0EE7D10AF2003CAEF21AC93EBF2338F59341582_RuntimeMethod_var);
}
IL_0044:
{
SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41*, int32_t, int32_t, SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41*)L_10, (int32_t)L_11, (int32_t)L_12, (SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<UnityEngine.BeforeRenderHelper_OrderBlock>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m01428836A7119BC029D578A0B73315C61B270FE1_gshared (OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* ___array0, int32_t ___index1, int32_t ___length2, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m01428836A7119BC029D578A0B73315C61B270FE1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m01428836A7119BC029D578A0B73315C61B270FE1_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m01428836A7119BC029D578A0B73315C61B270FE1_RuntimeMethod_var);
}
IL_0031:
{
OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m01428836A7119BC029D578A0B73315C61B270FE1_RuntimeMethod_var);
}
IL_0044:
{
OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101*, int32_t, int32_t, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101*)L_10, (int32_t)L_11, (int32_t)L_12, (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<UnityEngine.Color32>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mCC3A7E4E4C0798377EB1D1DC7E7211EE35759C9A_gshared (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* ___array0, int32_t ___index1, int32_t ___length2, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mCC3A7E4E4C0798377EB1D1DC7E7211EE35759C9A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mCC3A7E4E4C0798377EB1D1DC7E7211EE35759C9A_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mCC3A7E4E4C0798377EB1D1DC7E7211EE35759C9A_RuntimeMethod_var);
}
IL_0031:
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mCC3A7E4E4C0798377EB1D1DC7E7211EE35759C9A_RuntimeMethod_var);
}
IL_0044:
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*, int32_t, int32_t, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)L_10, (int32_t)L_11, (int32_t)L_12, (Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<UnityEngine.Color>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mAC9E46FDECEC4FF35292E2DB381716356A9D2522_gshared (ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* ___array0, int32_t ___index1, int32_t ___length2, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mAC9E46FDECEC4FF35292E2DB381716356A9D2522_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mAC9E46FDECEC4FF35292E2DB381716356A9D2522_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mAC9E46FDECEC4FF35292E2DB381716356A9D2522_RuntimeMethod_var);
}
IL_0031:
{
ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mAC9E46FDECEC4FF35292E2DB381716356A9D2522_RuntimeMethod_var);
}
IL_0044:
{
ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399*, int32_t, int32_t, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399*)L_10, (int32_t)L_11, (int32_t)L_12, (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<UnityEngine.EventSystems.RaycastResult>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m7CD8A89CCC3270F1591778B5FFDE2FD247A0020B_gshared (RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* ___array0, int32_t ___index1, int32_t ___length2, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m7CD8A89CCC3270F1591778B5FFDE2FD247A0020B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m7CD8A89CCC3270F1591778B5FFDE2FD247A0020B_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m7CD8A89CCC3270F1591778B5FFDE2FD247A0020B_RuntimeMethod_var);
}
IL_0031:
{
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m7CD8A89CCC3270F1591778B5FFDE2FD247A0020B_RuntimeMethod_var);
}
IL_0044:
{
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65*, int32_t, int32_t, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65*)L_10, (int32_t)L_11, (int32_t)L_12, (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<UnityEngine.Matrix4x4>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m5197F63CA6582B6B88EEC42974071AB7777E1F32_gshared (Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9* ___array0, int32_t ___index1, int32_t ___length2, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m5197F63CA6582B6B88EEC42974071AB7777E1F32_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m5197F63CA6582B6B88EEC42974071AB7777E1F32_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m5197F63CA6582B6B88EEC42974071AB7777E1F32_RuntimeMethod_var);
}
IL_0031:
{
Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m5197F63CA6582B6B88EEC42974071AB7777E1F32_RuntimeMethod_var);
}
IL_0044:
{
Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9*, int32_t, int32_t, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9*)L_10, (int32_t)L_11, (int32_t)L_12, (Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<UnityEngine.Ray>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m92D8C7146266757EE12622FF6B0BB09065144477_gshared (RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED* ___array0, int32_t ___index1, int32_t ___length2, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m92D8C7146266757EE12622FF6B0BB09065144477_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m92D8C7146266757EE12622FF6B0BB09065144477_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m92D8C7146266757EE12622FF6B0BB09065144477_RuntimeMethod_var);
}
IL_0031:
{
RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m92D8C7146266757EE12622FF6B0BB09065144477_RuntimeMethod_var);
}
IL_0044:
{
RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED*, int32_t, int32_t, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED*)L_10, (int32_t)L_11, (int32_t)L_12, (Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<UnityEngine.RaycastHit2D>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m977A77D146F0587CEEDAE221F57B35D62EE58BDE_gshared (RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* ___array0, int32_t ___index1, int32_t ___length2, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m977A77D146F0587CEEDAE221F57B35D62EE58BDE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m977A77D146F0587CEEDAE221F57B35D62EE58BDE_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m977A77D146F0587CEEDAE221F57B35D62EE58BDE_RuntimeMethod_var);
}
IL_0031:
{
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m977A77D146F0587CEEDAE221F57B35D62EE58BDE_RuntimeMethod_var);
}
IL_0044:
{
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165*, int32_t, int32_t, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165*)L_10, (int32_t)L_11, (int32_t)L_12, (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<UnityEngine.TextCore.GlyphRect>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m5285CDC9F41BD33F44970343E620830C4A5963E4_gshared (GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2* ___array0, int32_t ___index1, int32_t ___length2, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m5285CDC9F41BD33F44970343E620830C4A5963E4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m5285CDC9F41BD33F44970343E620830C4A5963E4_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m5285CDC9F41BD33F44970343E620830C4A5963E4_RuntimeMethod_var);
}
IL_0031:
{
GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m5285CDC9F41BD33F44970343E620830C4A5963E4_RuntimeMethod_var);
}
IL_0044:
{
GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2*, int32_t, int32_t, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2*)L_10, (int32_t)L_11, (int32_t)L_12, (GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<UnityEngine.UICharInfo>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mB192B545BB885349A231450B4670ED8CF2F81E9F_gshared (UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* ___array0, int32_t ___index1, int32_t ___length2, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mB192B545BB885349A231450B4670ED8CF2F81E9F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mB192B545BB885349A231450B4670ED8CF2F81E9F_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mB192B545BB885349A231450B4670ED8CF2F81E9F_RuntimeMethod_var);
}
IL_0031:
{
UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mB192B545BB885349A231450B4670ED8CF2F81E9F_RuntimeMethod_var);
}
IL_0044:
{
UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482*, int32_t, int32_t, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482*)L_10, (int32_t)L_11, (int32_t)L_12, (UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<UnityEngine.UILineInfo>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m164D2D0DEF9850BE82BDBDCB708316B46E1D7BEE_gshared (UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* ___array0, int32_t ___index1, int32_t ___length2, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m164D2D0DEF9850BE82BDBDCB708316B46E1D7BEE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m164D2D0DEF9850BE82BDBDCB708316B46E1D7BEE_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m164D2D0DEF9850BE82BDBDCB708316B46E1D7BEE_RuntimeMethod_var);
}
IL_0031:
{
UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m164D2D0DEF9850BE82BDBDCB708316B46E1D7BEE_RuntimeMethod_var);
}
IL_0044:
{
UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC*, int32_t, int32_t, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC*)L_10, (int32_t)L_11, (int32_t)L_12, (UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<UnityEngine.UIVertex>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m783A55A894592C6BE071E25F5F99E956A3BA7132_gshared (UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* ___array0, int32_t ___index1, int32_t ___length2, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m783A55A894592C6BE071E25F5F99E956A3BA7132_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m783A55A894592C6BE071E25F5F99E956A3BA7132_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m783A55A894592C6BE071E25F5F99E956A3BA7132_RuntimeMethod_var);
}
IL_0031:
{
UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m783A55A894592C6BE071E25F5F99E956A3BA7132_RuntimeMethod_var);
}
IL_0044:
{
UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A*, int32_t, int32_t, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A*)L_10, (int32_t)L_11, (int32_t)L_12, (UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<UnityEngine.UnitySynchronizationContext_WorkRequest>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m22BE921011F4181EBCA1FF732432A529E30BAE7E_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___array0, int32_t ___index1, int32_t ___length2, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m22BE921011F4181EBCA1FF732432A529E30BAE7E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m22BE921011F4181EBCA1FF732432A529E30BAE7E_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m22BE921011F4181EBCA1FF732432A529E30BAE7E_RuntimeMethod_var);
}
IL_0031:
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m22BE921011F4181EBCA1FF732432A529E30BAE7E_RuntimeMethod_var);
}
IL_0044:
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, int32_t, int32_t, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_10, (int32_t)L_11, (int32_t)L_12, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<UnityEngine.Vector2>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m6ED066B82A11FF1D2E38AAC05907A107E066F29A_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___array0, int32_t ___index1, int32_t ___length2, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m6ED066B82A11FF1D2E38AAC05907A107E066F29A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m6ED066B82A11FF1D2E38AAC05907A107E066F29A_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m6ED066B82A11FF1D2E38AAC05907A107E066F29A_RuntimeMethod_var);
}
IL_0031:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m6ED066B82A11FF1D2E38AAC05907A107E066F29A_RuntimeMethod_var);
}
IL_0044:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, int32_t, int32_t, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_10, (int32_t)L_11, (int32_t)L_12, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<UnityEngine.Vector3>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m8D00BEE3850E6748E7BC97419A9C997873444A51_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___array0, int32_t ___index1, int32_t ___length2, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m8D00BEE3850E6748E7BC97419A9C997873444A51_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m8D00BEE3850E6748E7BC97419A9C997873444A51_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m8D00BEE3850E6748E7BC97419A9C997873444A51_RuntimeMethod_var);
}
IL_0031:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m8D00BEE3850E6748E7BC97419A9C997873444A51_RuntimeMethod_var);
}
IL_0044:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, int32_t, int32_t, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_10, (int32_t)L_11, (int32_t)L_12, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::BinarySearch<UnityEngine.Vector4>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mE03E866D8CC289D617AA9A5E95FA4263B1238C1D_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___array0, int32_t ___index1, int32_t ___length2, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mE03E866D8CC289D617AA9A5E95FA4263B1238C1D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mE03E866D8CC289D617AA9A5E95FA4263B1238C1D_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mE03E866D8CC289D617AA9A5E95FA4263B1238C1D_RuntimeMethod_var);
}
IL_0031:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_BinarySearch_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mE03E866D8CC289D617AA9A5E95FA4263B1238C1D_RuntimeMethod_var);
}
IL_0044:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_10 = ___array0;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_13 = ___value3;
RuntimeObject* L_14 = ___comparer4;
int32_t L_15 = (( int32_t (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, int32_t, int32_t, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_10, (int32_t)L_11, (int32_t)L_12, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_13, (RuntimeObject*)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::FindIndex<System.Object>(T[],System.Int32,System.Int32,System.Predicate`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_FindIndex_TisRuntimeObject_m214491B7AA29D758A126088D7DE01528FC655FE4_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___startIndex1, int32_t ___count2, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___match3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_FindIndex_TisRuntimeObject_m214491B7AA29D758A126088D7DE01528FC655FE4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_FindIndex_TisRuntimeObject_m214491B7AA29D758A126088D7DE01528FC655FE4_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_FindIndex_TisRuntimeObject_m214491B7AA29D758A126088D7DE01528FC655FE4_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___startIndex1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___count2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_FindIndex_TisRuntimeObject_m214491B7AA29D758A126088D7DE01528FC655FE4_RuntimeMethod_var);
}
IL_0044:
{
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_11 = ___match3;
if (L_11)
{
goto IL_0052;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_12 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_12, (String_t*)_stringLiteralEF5C844EAB88BCACA779BD2F3AD67B573BBBBFCA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Array_FindIndex_TisRuntimeObject_m214491B7AA29D758A126088D7DE01528FC655FE4_RuntimeMethod_var);
}
IL_0052:
{
int32_t L_13 = ___startIndex1;
int32_t L_14 = ___count2;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
int32_t L_15 = ___startIndex1;
V_1 = (int32_t)L_15;
goto IL_006f;
}
IL_005a:
{
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_16 = ___match3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = ___array0;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
RuntimeObject * L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck((Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_16);
bool L_21 = (( bool (*) (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_16, (RuntimeObject *)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
if (!L_21)
{
goto IL_006b;
}
}
{
int32_t L_22 = V_1;
return L_22;
}
IL_006b:
{
int32_t L_23 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
}
IL_006f:
{
int32_t L_24 = V_1;
int32_t L_25 = V_0;
if ((((int32_t)L_24) < ((int32_t)L_25)))
{
goto IL_005a;
}
}
{
return (-1);
}
}
// System.Int32 System.Array::FindIndex<System.Object>(T[],System.Int32,System.Predicate`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_FindIndex_TisRuntimeObject_m080935AA8F5127F69944FA0C9F92E55EC4B4AA83_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___startIndex1, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___match2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_FindIndex_TisRuntimeObject_m080935AA8F5127F69944FA0C9F92E55EC4B4AA83_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_FindIndex_TisRuntimeObject_m080935AA8F5127F69944FA0C9F92E55EC4B4AA83_RuntimeMethod_var);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0;
int32_t L_3 = ___startIndex1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0;
NullCheck(L_4);
int32_t L_5 = ___startIndex1;
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_6 = ___match2;
int32_t L_7 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)L_3, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)L_5)), (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_7;
}
}
// System.Int32 System.Array::FindIndex<System.Object>(T[],System.Predicate`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_FindIndex_TisRuntimeObject_m139444E431531EEC2474B0CB068687A36B579685_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___match1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_FindIndex_TisRuntimeObject_m139444E431531EEC2474B0CB068687A36B579685_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_FindIndex_TisRuntimeObject_m139444E431531EEC2474B0CB068687A36B579685_RuntimeMethod_var);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = ___array0;
NullCheck(L_3);
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_4 = ___match1;
int32_t L_5 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))), (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_5;
}
}
// System.Int32 System.Array::FindLastIndex<System.Object>(T[],System.Int32,System.Int32,System.Predicate`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_FindLastIndex_TisRuntimeObject_m3CACF7B288BFF83852DC9909FEC8E4E9E467C529_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___startIndex1, int32_t ___count2, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___match3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_FindLastIndex_TisRuntimeObject_m3CACF7B288BFF83852DC9909FEC8E4E9E467C529_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_FindLastIndex_TisRuntimeObject_m3CACF7B288BFF83852DC9909FEC8E4E9E467C529_RuntimeMethod_var);
}
IL_000e:
{
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_2 = ___match3;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, (String_t*)_stringLiteralEF5C844EAB88BCACA779BD2F3AD67B573BBBBFCA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Array_FindLastIndex_TisRuntimeObject_m3CACF7B288BFF83852DC9909FEC8E4E9E467C529_RuntimeMethod_var);
}
IL_001c:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0;
NullCheck(L_4);
if ((((RuntimeArray*)L_4)->max_length))
{
goto IL_0034;
}
}
{
int32_t L_5 = ___startIndex1;
if ((((int32_t)L_5) == ((int32_t)(-1))))
{
goto IL_004e;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_6, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Array_FindLastIndex_TisRuntimeObject_m3CACF7B288BFF83852DC9909FEC8E4E9E467C529_RuntimeMethod_var);
}
IL_0034:
{
int32_t L_7 = ___startIndex1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_003e;
}
}
{
int32_t L_8 = ___startIndex1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = ___array0;
NullCheck(L_9);
if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))))
{
goto IL_004e;
}
}
IL_003e:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_FindLastIndex_TisRuntimeObject_m3CACF7B288BFF83852DC9909FEC8E4E9E467C529_RuntimeMethod_var);
}
IL_004e:
{
int32_t L_11 = ___count2;
if ((((int32_t)L_11) < ((int32_t)0)))
{
goto IL_005a;
}
}
{
int32_t L_12 = ___startIndex1;
int32_t L_13 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13)), (int32_t)1))) >= ((int32_t)0)))
{
goto IL_006a;
}
}
IL_005a:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_14 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_14, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, NULL, Array_FindLastIndex_TisRuntimeObject_m3CACF7B288BFF83852DC9909FEC8E4E9E467C529_RuntimeMethod_var);
}
IL_006a:
{
int32_t L_15 = ___startIndex1;
int32_t L_16 = ___count2;
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16));
int32_t L_17 = ___startIndex1;
V_1 = (int32_t)L_17;
goto IL_0087;
}
IL_0072:
{
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_18 = ___match3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = ___array0;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = L_20;
RuntimeObject * L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck((Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_18);
bool L_23 = (( bool (*) (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_18, (RuntimeObject *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
if (!L_23)
{
goto IL_0083;
}
}
{
int32_t L_24 = V_1;
return L_24;
}
IL_0083:
{
int32_t L_25 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0087:
{
int32_t L_26 = V_1;
int32_t L_27 = V_0;
if ((((int32_t)L_26) > ((int32_t)L_27)))
{
goto IL_0072;
}
}
{
return (-1);
}
}
// System.Int32 System.Array::FindLastIndex<System.Object>(T[],System.Int32,System.Predicate`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_FindLastIndex_TisRuntimeObject_mD120E7C8596220358A4C2542B8CC116239CCE36D_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___startIndex1, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___match2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_FindLastIndex_TisRuntimeObject_mD120E7C8596220358A4C2542B8CC116239CCE36D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_FindLastIndex_TisRuntimeObject_mD120E7C8596220358A4C2542B8CC116239CCE36D_RuntimeMethod_var);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0;
int32_t L_3 = ___startIndex1;
int32_t L_4 = ___startIndex1;
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_5 = ___match2;
int32_t L_6 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)L_3, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)), (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_6;
}
}
// System.Int32 System.Array::FindLastIndex<System.Object>(T[],System.Predicate`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_FindLastIndex_TisRuntimeObject_m6FA23A622561D230641A38B87A5961B70C2F998B_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___match1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_FindLastIndex_TisRuntimeObject_m6FA23A622561D230641A38B87A5961B70C2F998B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_FindLastIndex_TisRuntimeObject_m6FA23A622561D230641A38B87A5961B70C2F998B_RuntimeMethod_var);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = ___array0;
NullCheck(L_3);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0;
NullCheck(L_4);
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_5 = ___match1;
int32_t L_6 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))), (int32_t)1)), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_6;
}
}
// System.Int32 System.Array::IndexOf<Microsoft.MixedReality.Toolkit.Boundary.Edge>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_mC4365C58798F06788D9AAD4796089B8BEA7C5D7A_gshared (EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73* ___array0, Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_mC4365C58798F06788D9AAD4796089B8BEA7C5D7A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_mC4365C58798F06788D9AAD4796089B8BEA7C5D7A_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_mC4365C58798F06788D9AAD4796089B8BEA7C5D7A_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_mC4365C58798F06788D9AAD4796089B8BEA7C5D7A_RuntimeMethod_var);
}
IL_0044:
{
EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73* L_11 = ___array0;
Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73*, Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73*)L_11, (Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_m38B925224BE7B76E242FC398D93D9662FDBF9A77_gshared (MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B* ___array0, MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_m38B925224BE7B76E242FC398D93D9662FDBF9A77_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_m38B925224BE7B76E242FC398D93D9662FDBF9A77_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_m38B925224BE7B76E242FC398D93D9662FDBF9A77_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_m38B925224BE7B76E242FC398D93D9662FDBF9A77_RuntimeMethod_var);
}
IL_0044:
{
MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B* L_11 = ___array0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B*, MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B*)L_11, (MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_m50F76630646083AE2493C46B06D9D5B9D6C3C22A_gshared (BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A* ___array0, BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_m50F76630646083AE2493C46B06D9D5B9D6C3C22A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_m50F76630646083AE2493C46B06D9D5B9D6C3C22A_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_m50F76630646083AE2493C46B06D9D5B9D6C3C22A_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_m50F76630646083AE2493C46B06D9D5B9D6C3C22A_RuntimeMethod_var);
}
IL_0044:
{
BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A* L_11 = ___array0;
BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A*, BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A*)L_11, (BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m3A8AA082C2C2E7085FC7B09D5FE18D4A203A50D3_gshared (InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5* ___array0, InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m3A8AA082C2C2E7085FC7B09D5FE18D4A203A50D3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m3A8AA082C2C2E7085FC7B09D5FE18D4A203A50D3_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m3A8AA082C2C2E7085FC7B09D5FE18D4A203A50D3_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m3A8AA082C2C2E7085FC7B09D5FE18D4A203A50D3_RuntimeMethod_var);
}
IL_0044:
{
InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5* L_11 = ___array0;
InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5*, InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5*)L_11, (InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<Microsoft.MixedReality.Toolkit.UI.ProfileSettings>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_mF776BBFB14622D57612CF5C395E56F3642538888_gshared (ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88* ___array0, ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_mF776BBFB14622D57612CF5C395E56F3642538888_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_mF776BBFB14622D57612CF5C395E56F3642538888_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_mF776BBFB14622D57612CF5C395E56F3642538888_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_mF776BBFB14622D57612CF5C395E56F3642538888_RuntimeMethod_var);
}
IL_0044:
{
ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88* L_11 = ___array0;
ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88*, ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88*)L_11, (ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<Microsoft.MixedReality.Toolkit.UI.ShaderProperties>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m8571072D8697027BC648229857C801EE327218B8_gshared (ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103* ___array0, ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m8571072D8697027BC648229857C801EE327218B8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m8571072D8697027BC648229857C801EE327218B8_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m8571072D8697027BC648229857C801EE327218B8_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m8571072D8697027BC648229857C801EE327218B8_RuntimeMethod_var);
}
IL_0044:
{
ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103* L_11 = ___array0;
ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103*, ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103*)L_11, (ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<Microsoft.MixedReality.Toolkit.UI.ThemeSettings>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_m72AB6EA9C8133D7F31AEEF0BAB793B9F48F21853_gshared (ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA* ___array0, ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_m72AB6EA9C8133D7F31AEEF0BAB793B9F48F21853_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_m72AB6EA9C8133D7F31AEEF0BAB793B9F48F21853_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_m72AB6EA9C8133D7F31AEEF0BAB793B9F48F21853_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_m72AB6EA9C8133D7F31AEEF0BAB793B9F48F21853_RuntimeMethod_var);
}
IL_0044:
{
ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA* L_11 = ___array0;
ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA*, ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA*)L_11, (ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_m200739F61144011AE8554950AF95E62155CF33BF_gshared (InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E* ___array0, InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_m200739F61144011AE8554950AF95E62155CF33BF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_m200739F61144011AE8554950AF95E62155CF33BF_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_m200739F61144011AE8554950AF95E62155CF33BF_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_m200739F61144011AE8554950AF95E62155CF33BF_RuntimeMethod_var);
}
IL_0044:
{
InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E* L_11 = ___array0;
InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E*, InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E*)L_11, (InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mB731723C8A1F6E2997A5D21FA270A48C4EAB2B99_gshared (InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4* ___array0, InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mB731723C8A1F6E2997A5D21FA270A48C4EAB2B99_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mB731723C8A1F6E2997A5D21FA270A48C4EAB2B99_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mB731723C8A1F6E2997A5D21FA270A48C4EAB2B99_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mB731723C8A1F6E2997A5D21FA270A48C4EAB2B99_RuntimeMethod_var);
}
IL_0044:
{
InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4* L_11 = ___array0;
InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4*, InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4*)L_11, (InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_m831D225941E00E2D42362A65867C43DA10B1AFCD_gshared (ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9* ___array0, ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_m831D225941E00E2D42362A65867C43DA10B1AFCD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_m831D225941E00E2D42362A65867C43DA10B1AFCD_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_m831D225941E00E2D42362A65867C43DA10B1AFCD_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_m831D225941E00E2D42362A65867C43DA10B1AFCD_RuntimeMethod_var);
}
IL_0044:
{
ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9* L_11 = ___array0;
ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9*, ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9*)L_11, (ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<System.Byte>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m5CE9F6C8D5A1826746221DD45C6187D3C9B8F049_gshared (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, uint8_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m5CE9F6C8D5A1826746221DD45C6187D3C9B8F049_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m5CE9F6C8D5A1826746221DD45C6187D3C9B8F049_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m5CE9F6C8D5A1826746221DD45C6187D3C9B8F049_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m5CE9F6C8D5A1826746221DD45C6187D3C9B8F049_RuntimeMethod_var);
}
IL_0044:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ___array0;
uint8_t L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, uint8_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)L_11, (uint8_t)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<System.Char>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m1F352B00CF67AEE547813DF32C13E43BD171EB62_gshared (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___array0, Il2CppChar ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m1F352B00CF67AEE547813DF32C13E43BD171EB62_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m1F352B00CF67AEE547813DF32C13E43BD171EB62_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m1F352B00CF67AEE547813DF32C13E43BD171EB62_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m1F352B00CF67AEE547813DF32C13E43BD171EB62_RuntimeMethod_var);
}
IL_0044:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = ___array0;
Il2CppChar L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, Il2CppChar, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)L_11, (Il2CppChar)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mDE039BCF9D5C0446B1D683115D39D29D2FE79A59_gshared (KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* ___array0, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mDE039BCF9D5C0446B1D683115D39D29D2FE79A59_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mDE039BCF9D5C0446B1D683115D39D29D2FE79A59_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mDE039BCF9D5C0446B1D683115D39D29D2FE79A59_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mDE039BCF9D5C0446B1D683115D39D29D2FE79A59_RuntimeMethod_var);
}
IL_0044:
{
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_11 = ___array0;
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F*, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F*)L_11, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<System.Diagnostics.Tracing.EventProvider_SessionInfo>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA91455A82DA1E75779F77E30564F3425C79601A4_gshared (SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* ___array0, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA91455A82DA1E75779F77E30564F3425C79601A4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA91455A82DA1E75779F77E30564F3425C79601A4_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA91455A82DA1E75779F77E30564F3425C79601A4_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA91455A82DA1E75779F77E30564F3425C79601A4_RuntimeMethod_var);
}
IL_0044:
{
SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_11 = ___array0;
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906*, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906*)L_11, (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<System.Guid>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisGuid_t_mBFE3E8B35C542B661E7B9CE17068434154F777BB_gshared (GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ___array0, Guid_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisGuid_t_mBFE3E8B35C542B661E7B9CE17068434154F777BB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisGuid_t_mBFE3E8B35C542B661E7B9CE17068434154F777BB_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisGuid_t_mBFE3E8B35C542B661E7B9CE17068434154F777BB_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisGuid_t_mBFE3E8B35C542B661E7B9CE17068434154F777BB_RuntimeMethod_var);
}
IL_0044:
{
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_11 = ___array0;
Guid_t L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF*, Guid_t , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF*)L_11, (Guid_t )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<System.Int32>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB69F9A4858DC906B554451585199281F230F4EE5_gshared (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB69F9A4858DC906B554451585199281F230F4EE5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB69F9A4858DC906B554451585199281F230F4EE5_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB69F9A4858DC906B554451585199281F230F4EE5_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB69F9A4858DC906B554451585199281F230F4EE5_RuntimeMethod_var);
}
IL_0044:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = ___array0;
int32_t L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_11, (int32_t)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<System.Int32Enum>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m58E90042E7B17B74CB00683164B0B720BA91A8B5_gshared (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m58E90042E7B17B74CB00683164B0B720BA91A8B5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m58E90042E7B17B74CB00683164B0B720BA91A8B5_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m58E90042E7B17B74CB00683164B0B720BA91A8B5_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m58E90042E7B17B74CB00683164B0B720BA91A8B5_RuntimeMethod_var);
}
IL_0044:
{
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_11 = ___array0;
int32_t L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A*)L_11, (int32_t)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<System.Object>(T[],T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370_RuntimeMethod_var);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0;
RuntimeObject * L_3 = ___value1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0;
NullCheck(L_4);
int32_t L_5 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (RuntimeObject *)L_3, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_5;
}
}
// System.Int32 System.Array::IndexOf<System.Object>(T[],T,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRuntimeObject_m13B203F08875E17F92EC3ABF6A3C7B76351E79A8_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisRuntimeObject_m13B203F08875E17F92EC3ABF6A3C7B76351E79A8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisRuntimeObject_m13B203F08875E17F92EC3ABF6A3C7B76351E79A8_RuntimeMethod_var);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0;
RuntimeObject * L_3 = ___value1;
int32_t L_4 = ___startIndex2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___array0;
NullCheck(L_5);
int32_t L_6 = ___startIndex2;
int32_t L_7 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (RuntimeObject *)L_3, (int32_t)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), (int32_t)L_6)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_7;
}
}
// System.Int32 System.Array::IndexOf<System.Object>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_RuntimeMethod_var);
}
IL_0044:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = ___array0;
RuntimeObject * L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_11, (RuntimeObject *)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<System.Single>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m39D77B3B21AD0C5FF6C74D4903289CAFDB17E6B5_gshared (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___array0, float ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m39D77B3B21AD0C5FF6C74D4903289CAFDB17E6B5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m39D77B3B21AD0C5FF6C74D4903289CAFDB17E6B5_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m39D77B3B21AD0C5FF6C74D4903289CAFDB17E6B5_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m39D77B3B21AD0C5FF6C74D4903289CAFDB17E6B5_RuntimeMethod_var);
}
IL_0044:
{
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_11 = ___array0;
float L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*, float, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*)L_11, (float)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<System.UInt32>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m48022B8A70A2C45E247884ED52141FCA9695A1B0_gshared (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___array0, uint32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m48022B8A70A2C45E247884ED52141FCA9695A1B0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m48022B8A70A2C45E247884ED52141FCA9695A1B0_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m48022B8A70A2C45E247884ED52141FCA9695A1B0_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m48022B8A70A2C45E247884ED52141FCA9695A1B0_RuntimeMethod_var);
}
IL_0044:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_11 = ___array0;
uint32_t L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*, uint32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)L_11, (uint32_t)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<System.UInt64>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m295FA2C782117B117C7C15EA1A40B5C89BCA5A95_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___array0, uint64_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m295FA2C782117B117C7C15EA1A40B5C89BCA5A95_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m295FA2C782117B117C7C15EA1A40B5C89BCA5A95_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m295FA2C782117B117C7C15EA1A40B5C89BCA5A95_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m295FA2C782117B117C7C15EA1A40B5C89BCA5A95_RuntimeMethod_var);
}
IL_0044:
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_11 = ___array0;
uint64_t L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, uint64_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_11, (uint64_t)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<TMPro.SpriteAssetUtilities.TexturePacker_SpriteData>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mA5646235862DD2C78A918CB0834CAE844AC97D45_gshared (SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41* ___array0, SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mA5646235862DD2C78A918CB0834CAE844AC97D45_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mA5646235862DD2C78A918CB0834CAE844AC97D45_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mA5646235862DD2C78A918CB0834CAE844AC97D45_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mA5646235862DD2C78A918CB0834CAE844AC97D45_RuntimeMethod_var);
}
IL_0044:
{
SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41* L_11 = ___array0;
SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41*, SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41*)L_11, (SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<UnityEngine.BeforeRenderHelper_OrderBlock>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA3A1313F7FD2A62CE172AEF0501E52E60B7AE9DD_gshared (OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* ___array0, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA3A1313F7FD2A62CE172AEF0501E52E60B7AE9DD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA3A1313F7FD2A62CE172AEF0501E52E60B7AE9DD_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA3A1313F7FD2A62CE172AEF0501E52E60B7AE9DD_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA3A1313F7FD2A62CE172AEF0501E52E60B7AE9DD_RuntimeMethod_var);
}
IL_0044:
{
OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_11 = ___array0;
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101*, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101*)L_11, (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<UnityEngine.Color32>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m14DF1820F74C0CBFFFD19399B38AC5FB9A4D981A_gshared (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* ___array0, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m14DF1820F74C0CBFFFD19399B38AC5FB9A4D981A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m14DF1820F74C0CBFFFD19399B38AC5FB9A4D981A_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m14DF1820F74C0CBFFFD19399B38AC5FB9A4D981A_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m14DF1820F74C0CBFFFD19399B38AC5FB9A4D981A_RuntimeMethod_var);
}
IL_0044:
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_11 = ___array0;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)L_11, (Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<UnityEngine.Color>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mE582D10D9E0BF5EEBEFCD6E19078AA6D05CA0235_gshared (ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* ___array0, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mE582D10D9E0BF5EEBEFCD6E19078AA6D05CA0235_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mE582D10D9E0BF5EEBEFCD6E19078AA6D05CA0235_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mE582D10D9E0BF5EEBEFCD6E19078AA6D05CA0235_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mE582D10D9E0BF5EEBEFCD6E19078AA6D05CA0235_RuntimeMethod_var);
}
IL_0044:
{
ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* L_11 = ___array0;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399*, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399*)L_11, (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<UnityEngine.EventSystems.RaycastResult>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_mC1389D66F959F48244F648F64EB2624EC1381EB8_gshared (RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* ___array0, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_mC1389D66F959F48244F648F64EB2624EC1381EB8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_mC1389D66F959F48244F648F64EB2624EC1381EB8_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_mC1389D66F959F48244F648F64EB2624EC1381EB8_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_mC1389D66F959F48244F648F64EB2624EC1381EB8_RuntimeMethod_var);
}
IL_0044:
{
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* L_11 = ___array0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65*, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65*)L_11, (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<UnityEngine.Matrix4x4>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m8ABC4C9182362C3064FB4F7DB433AE1813F0A2FC_gshared (Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9* ___array0, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m8ABC4C9182362C3064FB4F7DB433AE1813F0A2FC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m8ABC4C9182362C3064FB4F7DB433AE1813F0A2FC_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m8ABC4C9182362C3064FB4F7DB433AE1813F0A2FC_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m8ABC4C9182362C3064FB4F7DB433AE1813F0A2FC_RuntimeMethod_var);
}
IL_0044:
{
Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9* L_11 = ___array0;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9*, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9*)L_11, (Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<UnityEngine.Ray>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m37EA652262811150EF62FC34099E322F2EEFCA0D_gshared (RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED* ___array0, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m37EA652262811150EF62FC34099E322F2EEFCA0D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m37EA652262811150EF62FC34099E322F2EEFCA0D_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m37EA652262811150EF62FC34099E322F2EEFCA0D_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m37EA652262811150EF62FC34099E322F2EEFCA0D_RuntimeMethod_var);
}
IL_0044:
{
RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED* L_11 = ___array0;
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED*, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED*)L_11, (Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<UnityEngine.RaycastHit2D>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m76AF616D8A8D3F0F807C161783871C266DE496B8_gshared (RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* ___array0, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m76AF616D8A8D3F0F807C161783871C266DE496B8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m76AF616D8A8D3F0F807C161783871C266DE496B8_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m76AF616D8A8D3F0F807C161783871C266DE496B8_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m76AF616D8A8D3F0F807C161783871C266DE496B8_RuntimeMethod_var);
}
IL_0044:
{
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_11 = ___array0;
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165*, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165*)L_11, (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<UnityEngine.TextCore.GlyphRect>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m83B1F1525A65BE034509F85B7A798756FF331D85_gshared (GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2* ___array0, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m83B1F1525A65BE034509F85B7A798756FF331D85_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m83B1F1525A65BE034509F85B7A798756FF331D85_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m83B1F1525A65BE034509F85B7A798756FF331D85_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m83B1F1525A65BE034509F85B7A798756FF331D85_RuntimeMethod_var);
}
IL_0044:
{
GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2* L_11 = ___array0;
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2*, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2*)L_11, (GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<UnityEngine.UICharInfo>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mF1DA4467BB68F0C623C69CABEE7BDBCF56B4AEE1_gshared (UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* ___array0, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mF1DA4467BB68F0C623C69CABEE7BDBCF56B4AEE1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mF1DA4467BB68F0C623C69CABEE7BDBCF56B4AEE1_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mF1DA4467BB68F0C623C69CABEE7BDBCF56B4AEE1_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mF1DA4467BB68F0C623C69CABEE7BDBCF56B4AEE1_RuntimeMethod_var);
}
IL_0044:
{
UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* L_11 = ___array0;
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482*, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482*)L_11, (UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<UnityEngine.UILineInfo>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mF2AAC652E27FF051859B7D6E67EC59A4F792D963_gshared (UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* ___array0, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mF2AAC652E27FF051859B7D6E67EC59A4F792D963_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mF2AAC652E27FF051859B7D6E67EC59A4F792D963_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mF2AAC652E27FF051859B7D6E67EC59A4F792D963_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mF2AAC652E27FF051859B7D6E67EC59A4F792D963_RuntimeMethod_var);
}
IL_0044:
{
UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* L_11 = ___array0;
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC*, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC*)L_11, (UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<UnityEngine.UIVertex>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mC5CE8E715A43FBBA5924C860EA542AF8202E59FE_gshared (UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* ___array0, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mC5CE8E715A43FBBA5924C860EA542AF8202E59FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mC5CE8E715A43FBBA5924C860EA542AF8202E59FE_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mC5CE8E715A43FBBA5924C860EA542AF8202E59FE_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mC5CE8E715A43FBBA5924C860EA542AF8202E59FE_RuntimeMethod_var);
}
IL_0044:
{
UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* L_11 = ___array0;
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A*, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A*)L_11, (UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<UnityEngine.UnitySynchronizationContext_WorkRequest>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mCE7226D6E0020AF1553F7171B52CD314D7F69356_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___array0, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mCE7226D6E0020AF1553F7171B52CD314D7F69356_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mCE7226D6E0020AF1553F7171B52CD314D7F69356_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mCE7226D6E0020AF1553F7171B52CD314D7F69356_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mCE7226D6E0020AF1553F7171B52CD314D7F69356_RuntimeMethod_var);
}
IL_0044:
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_11 = ___array0;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_11, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<UnityEngine.Vector2>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m4644DE89476228E7FE1A31451FBA906DD39AEAE4_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___array0, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m4644DE89476228E7FE1A31451FBA906DD39AEAE4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m4644DE89476228E7FE1A31451FBA906DD39AEAE4_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m4644DE89476228E7FE1A31451FBA906DD39AEAE4_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m4644DE89476228E7FE1A31451FBA906DD39AEAE4_RuntimeMethod_var);
}
IL_0044:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_11 = ___array0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_11, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<UnityEngine.Vector3>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m91C0908D1326B8347BC582790135FDA101262CDB_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___array0, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m91C0908D1326B8347BC582790135FDA101262CDB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m91C0908D1326B8347BC582790135FDA101262CDB_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m91C0908D1326B8347BC582790135FDA101262CDB_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m91C0908D1326B8347BC582790135FDA101262CDB_RuntimeMethod_var);
}
IL_0044:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_11 = ___array0;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_11, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOf<UnityEngine.Vector4>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mC187C9391085E050706A864D834108272C3B5F4C_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___array0, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mC187C9391085E050706A864D834108272C3B5F4C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mC187C9391085E050706A864D834108272C3B5F4C_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_IndexOf_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mC187C9391085E050706A864D834108272C3B5F4C_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___count3;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___startIndex2;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_IndexOf_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mC187C9391085E050706A864D834108272C3B5F4C_RuntimeMethod_var);
}
IL_0044:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_11 = ___array0;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_12 = ___value1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
int32_t L_15 = (( int32_t (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_11, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_15;
}
}
// System.Int32 System.Array::IndexOfImpl<Microsoft.MixedReality.Toolkit.Boundary.Edge>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_m24B1AF068E78FFAD54EE6D48FB2742AC26711367_gshared (EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73* ___array0, Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t2325EF6C671A8A5B1B75E0C26BBCBFD9356E8A98 * L_0 = (( EqualityComparer_1_t2325EF6C671A8A5B1B75E0C26BBCBFD9356E8A98 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73* L_1 = ___array0;
Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t2325EF6C671A8A5B1B75E0C26BBCBFD9356E8A98 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73*, Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.Boundary.Edge>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t2325EF6C671A8A5B1B75E0C26BBCBFD9356E8A98 *)L_0, (EdgeU5BU5D_t19037A2C3D0D958505390A48D16951C95E2A1E73*)L_1, (Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_m72D264077FBB81C56C078A905E98DD24641E29E0_gshared (MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B* ___array0, MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t5539349CF2BB6918DDF0B77E8FC52F86CFAEE22B * L_0 = (( EqualityComparer_1_t5539349CF2BB6918DDF0B77E8FC52F86CFAEE22B * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B* L_1 = ___array0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t5539349CF2BB6918DDF0B77E8FC52F86CFAEE22B *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B*, MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t5539349CF2BB6918DDF0B77E8FC52F86CFAEE22B *)L_0, (MixedRealityInputActionU5BU5D_t276FE4992F86C40C8F043DBF297DC049E06B967B*)L_1, (MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_mF24036D42EEDB90D8B4DB235A69B43E2836B9791_gshared (BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A* ___array0, BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_tD9FADBA5768DF32FA3E264D8C104E71A53A435E5 * L_0 = (( EqualityComparer_1_tD9FADBA5768DF32FA3E264D8C104E71A53A435E5 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A* L_1 = ___array0;
BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_tD9FADBA5768DF32FA3E264D8C104E71A53A435E5 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A*, BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme/BlocksAndRenderer>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tD9FADBA5768DF32FA3E264D8C104E71A53A435E5 *)L_0, (BlocksAndRendererU5BU5D_t99A1F632F291D9BF7A6B91B5BD9801B0A31E7F4A*)L_1, (BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_mEC968C63E7C0694C4617B36C0DC87CCB24F6B300_gshared (InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5* ___array0, InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_tBA358B06D509320B3D3C82C2061A9546ED4B0D77 * L_0 = (( EqualityComparer_1_tBA358B06D509320B3D3C82C2061A9546ED4B0D77 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5* L_1 = ___array0;
InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_tBA358B06D509320B3D3C82C2061A9546ED4B0D77 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5*, InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tBA358B06D509320B3D3C82C2061A9546ED4B0D77 *)L_0, (InteractableThemePropertySettingsU5BU5D_t5625DFC7737D54015CBD6E0C211121929B51ADA5*)L_1, (InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<Microsoft.MixedReality.Toolkit.UI.ProfileSettings>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_m08A6E6B958D49F45AEAF6F03D25BC6D3797D273E_gshared (ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88* ___array0, ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_tAAD434C99D7E20699C7C6335341D2EB7064A9C4B * L_0 = (( EqualityComparer_1_tAAD434C99D7E20699C7C6335341D2EB7064A9C4B * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88* L_1 = ___array0;
ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_tAAD434C99D7E20699C7C6335341D2EB7064A9C4B *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88*, ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.UI.ProfileSettings>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tAAD434C99D7E20699C7C6335341D2EB7064A9C4B *)L_0, (ProfileSettingsU5BU5D_t538785EAD1EAF68C35ADD6B3537CCEA70CF35A88*)L_1, (ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<Microsoft.MixedReality.Toolkit.UI.ShaderProperties>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m148A44A965BF260B5E58B0E56F5B9131683E51B1_gshared (ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103* ___array0, ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t6FFD9221D0F2B19554CB93BDED86F324F675F41B * L_0 = (( EqualityComparer_1_t6FFD9221D0F2B19554CB93BDED86F324F675F41B * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103* L_1 = ___array0;
ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t6FFD9221D0F2B19554CB93BDED86F324F675F41B *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103*, ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.UI.ShaderProperties>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t6FFD9221D0F2B19554CB93BDED86F324F675F41B *)L_0, (ShaderPropertiesU5BU5D_tFF3EED0A945BAB04CFF933FE64A0F3D44C1F4103*)L_1, (ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<Microsoft.MixedReality.Toolkit.UI.ThemeSettings>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_mD97CE542BBB0FCD71203B76AC570DA4FF2EC46BD_gshared (ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA* ___array0, ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t934AEB77EAD7F2F153DAFC6A0F51D1BA652C0086 * L_0 = (( EqualityComparer_1_t934AEB77EAD7F2F153DAFC6A0F51D1BA652C0086 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA* L_1 = ___array0;
ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t934AEB77EAD7F2F153DAFC6A0F51D1BA652C0086 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA*, ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.UI.ThemeSettings>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t934AEB77EAD7F2F153DAFC6A0F51D1BA652C0086 *)L_0, (ThemeSettingsU5BU5D_tB2F074F60DDE83CF94053E95AA5D7ECF2591B9CA*)L_1, (ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_m15C7FB9D254F0EF809633A408407088E6BBD9BAF_gshared (InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E* ___array0, InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t738C13BF0507189822BF3355B733F04CADAC63CE * L_0 = (( EqualityComparer_1_t738C13BF0507189822BF3355B733F04CADAC63CE * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E* L_1 = ___array0;
InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t738C13BF0507189822BF3355B733F04CADAC63CE *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E*, InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t738C13BF0507189822BF3355B733F04CADAC63CE *)L_0, (InspectorFieldDataU5BU5D_t13D540016CB8D2FCE68E5EC9BCA9E2D2549C5E9E*)L_1, (InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mF1F1A268A90D84C99C65156663B199061B9ACF0E_gshared (InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4* ___array0, InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t728101F67A8CECD65C7520DC19EF6FB7F65A0D26 * L_0 = (( EqualityComparer_1_t728101F67A8CECD65C7520DC19EF6FB7F65A0D26 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4* L_1 = ___array0;
InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t728101F67A8CECD65C7520DC19EF6FB7F65A0D26 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4*, InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t728101F67A8CECD65C7520DC19EF6FB7F65A0D26 *)L_0, (InspectorPropertySettingU5BU5D_t5C78537D549136B8F62D01FB4514044E1E80C0D4*)L_1, (InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_m16C9F5B1F2F2A40E210CE6965E89E45445B1E9A3_gshared (ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9* ___array0, ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t3507F28BC058454819B289885AD982AE6541A963 * L_0 = (( EqualityComparer_1_t3507F28BC058454819B289885AD982AE6541A963 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9* L_1 = ___array0;
ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t3507F28BC058454819B289885AD982AE6541A963 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9*, ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t3507F28BC058454819B289885AD982AE6541A963 *)L_0, (ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9*)L_1, (ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<System.Byte>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mDF309171EB0865C4FD14537C72C58DDDA76FB9CA_gshared (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, uint8_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * L_0 = (( EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___array0;
uint8_t L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, uint8_t, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Byte>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)L_0, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)L_1, (uint8_t)L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<System.Char>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m7C7231DB417923651250CDC19210D8F6D88A7ED1_gshared (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___array0, Il2CppChar ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t9918F2EC0F0844A7A97CFA33C602072D990AB562 * L_0 = (( EqualityComparer_1_t9918F2EC0F0844A7A97CFA33C602072D990AB562 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___array0;
Il2CppChar L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t9918F2EC0F0844A7A97CFA33C602072D990AB562 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, Il2CppChar, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Char>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t9918F2EC0F0844A7A97CFA33C602072D990AB562 *)L_0, (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)L_1, (Il2CppChar)L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m9C9005959035A531721D41B837D7E9BEC5CE3B63_gshared (KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* ___array0, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * L_0 = (( EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_1 = ___array0;
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F*, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)L_0, (KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F*)L_1, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<System.Diagnostics.Tracing.EventProvider_SessionInfo>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m82AC2069233E5E4FEC2764E5A8551D8A6A5AFF70_gshared (SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* ___array0, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF * L_0 = (( EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_1 = ___array0;
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906*, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t998EC77AE710777CF628230235325EFCE0737BEF *)L_0, (SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906*)L_1, (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<System.Guid>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisGuid_t_mE5A672A0B2D93C0281ED51CF9C000E2EF986BB86_gshared (GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ___array0, Guid_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * L_0 = (( EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_1 = ___array0;
Guid_t L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF*, Guid_t , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Guid>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)L_0, (GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF*)L_1, (Guid_t )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<System.Int32>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m811CD352B13D4F65CC4F4962E4660E0A26FC6EA0_gshared (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 * L_0 = (( EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = ___array0;
int32_t L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*, int32_t, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 *)L_0, (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1, (int32_t)L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<System.Int32Enum>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m3A48C703F30458F4CEEC64398652FC1CF43EB6B1_gshared (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C * L_0 = (( EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_1 = ___array0;
int32_t L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A*, int32_t, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tEC6595561CF074BEB11B6E8C286DCCD35D21136C *)L_0, (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A*)L_1, (int32_t)L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<System.Object>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisRuntimeObject_m43E510BAFFEAE5D11F06F45B9DE8D2B311C4742B_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_0 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ___array0;
RuntimeObject * L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Object>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_0, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_1, (RuntimeObject *)L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<System.Single>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m9804B7DD3A5C32712B0D2F6E2C3806B8C03232C7_gshared (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___array0, float ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 * L_0 = (( EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_1 = ___array0;
float L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*, float, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Single>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tB4B41F25BC08C22B3E91BB2941802C39586AC6B6 *)L_0, (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*)L_1, (float)L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<System.UInt32>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCAF17A25D1E42797BEBBF9DA1050D5BE1B7E9B8A_gshared (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___array0, uint32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 * L_0 = (( EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = ___array0;
uint32_t L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*, uint32_t, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.UInt32>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 *)L_0, (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)L_1, (uint32_t)L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<System.UInt64>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m689969801B6D54EC21CF85E17E524E1423369DA7_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___array0, uint64_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * L_0 = (( EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_1 = ___array0;
uint64_t L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, uint64_t, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.UInt64>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 *)L_0, (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_1, (uint64_t)L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<TMPro.SpriteAssetUtilities.TexturePacker_SpriteData>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mB639FC2C5635AB69E0FC40898F94BA6084334FC7_gshared (SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41* ___array0, SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t5AE428F5422000B69378E01CDEC66C25A5CCDC3C * L_0 = (( EqualityComparer_1_t5AE428F5422000B69378E01CDEC66C25A5CCDC3C * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41* L_1 = ___array0;
SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t5AE428F5422000B69378E01CDEC66C25A5CCDC3C *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41*, SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t5AE428F5422000B69378E01CDEC66C25A5CCDC3C *)L_0, (SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41*)L_1, (SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<UnityEngine.BeforeRenderHelper_OrderBlock>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m434D426AF5E81289841D6EAE9258DFEA6BEBEE37_gshared (OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* ___array0, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 * L_0 = (( EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_1 = ___array0;
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101*, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t0D8A0D07F0A489FDE0EF7548F8FB0525D28F70F7 *)L_0, (OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101*)L_1, (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<UnityEngine.Color32>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m67514EBBB7E08C1E1A87DDB099EA84D24DB97D14_gshared (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* ___array0, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t64516AE22515640CA46E6ACDBB51EB38AE8BA243 * L_0 = (( EqualityComparer_1_t64516AE22515640CA46E6ACDBB51EB38AE8BA243 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_1 = ___array0;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t64516AE22515640CA46E6ACDBB51EB38AE8BA243 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t64516AE22515640CA46E6ACDBB51EB38AE8BA243 *)L_0, (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)L_1, (Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<UnityEngine.Color>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mAAAC1447B027099482E2430E6D08781C7A4E97D5_gshared (ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* ___array0, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t3FD85BA110510D8815AF1DFDD8266E284A5632C6 * L_0 = (( EqualityComparer_1_t3FD85BA110510D8815AF1DFDD8266E284A5632C6 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* L_1 = ___array0;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t3FD85BA110510D8815AF1DFDD8266E284A5632C6 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399*, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Color>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t3FD85BA110510D8815AF1DFDD8266E284A5632C6 *)L_0, (ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399*)L_1, (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<UnityEngine.EventSystems.RaycastResult>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m1FCD4C2CB2F94BAD636725E0895DAB4D0FE55457_gshared (RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* ___array0, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t4814B5237F2155B9F52EA643AB3CCEBDC093964A * L_0 = (( EqualityComparer_1_t4814B5237F2155B9F52EA643AB3CCEBDC093964A * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* L_1 = ___array0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t4814B5237F2155B9F52EA643AB3CCEBDC093964A *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65*, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t4814B5237F2155B9F52EA643AB3CCEBDC093964A *)L_0, (RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65*)L_1, (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<UnityEngine.Matrix4x4>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m72A3E960C8B35060B00848B5393F9E111CA0C144_gshared (Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9* ___array0, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t782178306EB8B0010E7B1E3913E62F5934F46927 * L_0 = (( EqualityComparer_1_t782178306EB8B0010E7B1E3913E62F5934F46927 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9* L_1 = ___array0;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t782178306EB8B0010E7B1E3913E62F5934F46927 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9*, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Matrix4x4>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t782178306EB8B0010E7B1E3913E62F5934F46927 *)L_0, (Matrix4x4U5BU5D_t1C64F7A0C34058334A8A95BF165F0027690598C9*)L_1, (Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<UnityEngine.Ray>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_m89E3C8C4F1BDA06858C817A5D7250C43B395410B_gshared (RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED* ___array0, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_tF14F528C27E637700C3B5190DD4040F2B269F291 * L_0 = (( EqualityComparer_1_tF14F528C27E637700C3B5190DD4040F2B269F291 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED* L_1 = ___array0;
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_tF14F528C27E637700C3B5190DD4040F2B269F291 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED*, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Ray>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tF14F528C27E637700C3B5190DD4040F2B269F291 *)L_0, (RayU5BU5D_t12DEF91FC216309B41EA5AC033184CC041F3B5ED*)L_1, (Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<UnityEngine.RaycastHit2D>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m92B2F2E7CC8DBC0AE85702247C9A940BC0BD448A_gshared (RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* ___array0, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t7A8526AAC9D8F3F6E9FC92FC80191263130CFDE8 * L_0 = (( EqualityComparer_1_t7A8526AAC9D8F3F6E9FC92FC80191263130CFDE8 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_1 = ___array0;
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t7A8526AAC9D8F3F6E9FC92FC80191263130CFDE8 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165*, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.RaycastHit2D>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t7A8526AAC9D8F3F6E9FC92FC80191263130CFDE8 *)L_0, (RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165*)L_1, (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<UnityEngine.TextCore.GlyphRect>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m66707C28D21CBA40DB37887DF1E164D89022B53B_gshared (GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2* ___array0, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_tCDF71D565EF681A3FA07FEA641ACF98768CDF0D2 * L_0 = (( EqualityComparer_1_tCDF71D565EF681A3FA07FEA641ACF98768CDF0D2 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2* L_1 = ___array0;
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_tCDF71D565EF681A3FA07FEA641ACF98768CDF0D2 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2*, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.TextCore.GlyphRect>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tCDF71D565EF681A3FA07FEA641ACF98768CDF0D2 *)L_0, (GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2*)L_1, (GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<UnityEngine.UICharInfo>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mBD5BB510E2208E17A4A204762CBBBEE252035083_gshared (UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* ___array0, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_tC9FE6AC7127ED7A22F717A9EF3208401E3C1D28D * L_0 = (( EqualityComparer_1_tC9FE6AC7127ED7A22F717A9EF3208401E3C1D28D * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* L_1 = ___array0;
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_tC9FE6AC7127ED7A22F717A9EF3208401E3C1D28D *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482*, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tC9FE6AC7127ED7A22F717A9EF3208401E3C1D28D *)L_0, (UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482*)L_1, (UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<UnityEngine.UILineInfo>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mF173F576FE9C7C086C43D52A5CD3994EABE7ACD0_gshared (UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* ___array0, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_tF33A333C3CC9DCBB0DA73EBB7975182A3CA3FDB6 * L_0 = (( EqualityComparer_1_tF33A333C3CC9DCBB0DA73EBB7975182A3CA3FDB6 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* L_1 = ___array0;
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_tF33A333C3CC9DCBB0DA73EBB7975182A3CA3FDB6 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC*, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tF33A333C3CC9DCBB0DA73EBB7975182A3CA3FDB6 *)L_0, (UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC*)L_1, (UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<UnityEngine.UIVertex>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mC2BC8A2BCD3BF13FBF5AAB7B6EC13F10607A67CC_gshared (UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* ___array0, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t7443BABD4F571AE906F5407888530FDE8F1EE9E7 * L_0 = (( EqualityComparer_1_t7443BABD4F571AE906F5407888530FDE8F1EE9E7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* L_1 = ___array0;
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t7443BABD4F571AE906F5407888530FDE8F1EE9E7 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A*, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t7443BABD4F571AE906F5407888530FDE8F1EE9E7 *)L_0, (UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A*)L_1, (UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<UnityEngine.UnitySynchronizationContext_WorkRequest>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m391BAB47A134889502F0765CF082DCCE533EC8B2_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___array0, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 * L_0 = (( EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_1 = ___array0;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t3BC42857E36209A693BF3CE884A5A4699FC68B79 *)L_0, (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_1, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<UnityEngine.Vector2>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_mD559D97C07813BA6F5AF1EFB83CC18EB0CAD4A3B_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___array0, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t5404190F17E14E6CF5185C22EC4668BCE15B76F1 * L_0 = (( EqualityComparer_1_t5404190F17E14E6CF5185C22EC4668BCE15B76F1 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_1 = ___array0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t5404190F17E14E6CF5185C22EC4668BCE15B76F1 *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector2>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t5404190F17E14E6CF5185C22EC4668BCE15B76F1 *)L_0, (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_1, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<UnityEngine.Vector3>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m51899637E5173C2F0C4C0398B95DDFAB3E024AA4_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___array0, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_tF8B3A336A2CCCA76C99157B28AA030355D18120D * L_0 = (( EqualityComparer_1_tF8B3A336A2CCCA76C99157B28AA030355D18120D * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_1 = ___array0;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_tF8B3A336A2CCCA76C99157B28AA030355D18120D *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_tF8B3A336A2CCCA76C99157B28AA030355D18120D *)L_0, (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_1, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::IndexOfImpl<UnityEngine.Vector4>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOfImpl_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mCCBBBA81BEA231AAE5C0C955C70E54D2B0193AC6_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___array0, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t7E3233D219BAD9A94FD502F672DC198E60C604CA * L_0 = (( EqualityComparer_1_t7E3233D219BAD9A94FD502F672DC198E60C604CA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_1 = ___array0;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t7E3233D219BAD9A94FD502F672DC198E60C604CA *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , int32_t, int32_t >::Invoke(10 /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>::IndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t7E3233D219BAD9A94FD502F672DC198E60C604CA *)L_0, (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_1, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect_AudioLoFiFilterSettings>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisAudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139_mAB3085D8B4D753AD39E204D4CBF9D5346A13DA47_gshared (RuntimeArray * __this, AudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisAudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139_mAB3085D8B4D753AD39E204D4CBF9D5346A13DA47_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
AudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisAudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139_mAB3085D8B4D753AD39E204D4CBF9D5346A13DA47_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (AudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139 *)(AudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
AudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139 L_9 = ___item0;
AudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = AudioLoFiFilterSettings_Equals_mA4BA4C33A9C9AA11381BF17C181F633D20107D70((AudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139 *)(AudioLoFiFilterSettings_t2DBDEA6041A08604EC936D49487AB423AB87F139 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Boundary.Edge>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_m7CBBEACD5642DA737877A020AC980D46F23FCBF2_gshared (RuntimeArray * __this, Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_m7CBBEACD5642DA737877A020AC980D46F23FCBF2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEdge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F_m7CBBEACD5642DA737877A020AC980D46F23FCBF2_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F *)(Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F L_9 = ___item0;
Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Edge_tB0E238CD7D4528E6AAD29C1E38C8B3671D6EE50F *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.AnimatedCursorData>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisAnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B_mC8F1D65DD438E372A4D9131139494F49987CF436_gshared (RuntimeArray * __this, AnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisAnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B_mC8F1D65DD438E372A4D9131139494F49987CF436_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
AnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisAnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B_mC8F1D65DD438E372A4D9131139494F49987CF436_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (AnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B *)(AnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
AnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B L_9 = ___item0;
AnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(AnimatedCursorData_tB2B62439E7DF0D452B4FF7DEB3ED617C4757A32B *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.InputActionRuleDigital>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22_m72F1471664A363CF5D3155FB498A23AE64C02E4B_gshared (RuntimeArray * __this, InputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22_m72F1471664A363CF5D3155FB498A23AE64C02E4B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
InputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisInputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22_m72F1471664A363CF5D3155FB498A23AE64C02E4B_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (InputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22 *)(InputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
InputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22 L_9 = ___item0;
InputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(InputActionRuleDigital_t64BB8CE78896AF2BD650540D023EE2D30441BA22 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.InputActionRuleDualAxis>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4_m7C6EBF7DC3068160C1D416C9B449AA1F66B32395_gshared (RuntimeArray * __this, InputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4_m7C6EBF7DC3068160C1D416C9B449AA1F66B32395_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
InputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisInputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4_m7C6EBF7DC3068160C1D416C9B449AA1F66B32395_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (InputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4 *)(InputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
InputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4 L_9 = ___item0;
InputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(InputActionRuleDualAxis_t0633D3BE34D657D9D17051896E072F4A1F282CB4 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.InputActionRulePoseAxis>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652_mED48230AD3EAD17FE42D1B42F752B54642FBE635_gshared (RuntimeArray * __this, InputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652_mED48230AD3EAD17FE42D1B42F752B54642FBE635_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
InputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisInputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652_mED48230AD3EAD17FE42D1B42F752B54642FBE635_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (InputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652 *)(InputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
InputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652 L_9 = ___item0;
InputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(InputActionRulePoseAxis_t70A8FE417E419AC6A634C4A72F4DA95245D04652 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.InputActionRuleQuaternionAxis>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409_m3CE610AD6148E524B952218F035DF088C707B9E1_gshared (RuntimeArray * __this, InputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409_m3CE610AD6148E524B952218F035DF088C707B9E1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
InputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisInputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409_m3CE610AD6148E524B952218F035DF088C707B9E1_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (InputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409 *)(InputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
InputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409 L_9 = ___item0;
InputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(InputActionRuleQuaternionAxis_t44B7F9185EEC6497B1F53FE2E4498CECBD41C409 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.InputActionRuleSingleAxis>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316_mCBB27A22A708FB3194167D620E368F9C62728D86_gshared (RuntimeArray * __this, InputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316_mCBB27A22A708FB3194167D620E368F9C62728D86_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
InputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisInputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316_mCBB27A22A708FB3194167D620E368F9C62728D86_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (InputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316 *)(InputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
InputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316 L_9 = ___item0;
InputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(InputActionRuleSingleAxis_tE77DB2B8B7ABDE9A77E352B628CFD24098245316 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.InputActionRuleVectorAxis>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572_m6EB78BFCD08F38817E5101A186125DC3B000C9CB_gshared (RuntimeArray * __this, InputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572_m6EB78BFCD08F38817E5101A186125DC3B000C9CB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
InputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisInputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572_m6EB78BFCD08F38817E5101A186125DC3B000C9CB_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (InputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572 *)(InputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
InputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572 L_9 = ___item0;
InputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(InputActionRuleVectorAxis_tB717B77481413D5852379F482FB7E3FD3E7B1572 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.KeywordAndResponse>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A_m8DE0BC400ED94369C41EF97D1C4CE005F2DDF1D1_gshared (RuntimeArray * __this, KeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A_m8DE0BC400ED94369C41EF97D1C4CE005F2DDF1D1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisKeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A_m8DE0BC400ED94369C41EF97D1C4CE005F2DDF1D1_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A *)(KeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A L_9 = ___item0;
KeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeywordAndResponse_tFFF55F9650BDEE408A09923CFDFB318A97D1963A *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.MeshCursor_MeshCursorDatum>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisMeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B_mAA5F04A0A01ABBF57D26C66104EAF76C009F69CA_gshared (RuntimeArray * __this, MeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisMeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B_mAA5F04A0A01ABBF57D26C66104EAF76C009F69CA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
MeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisMeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B_mAA5F04A0A01ABBF57D26C66104EAF76C009F69CA_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (MeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B *)(MeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
MeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B L_9 = ___item0;
MeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(MeshCursorDatum_tED77BE9D9349344F28762AF28E4496102222C95B *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerMapping>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisMixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34_m69F57E65A22413288FE8A97A4CAF2AC206D77D96_gshared (RuntimeArray * __this, MixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisMixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34_m69F57E65A22413288FE8A97A4CAF2AC206D77D96_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
MixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisMixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34_m69F57E65A22413288FE8A97A4CAF2AC206D77D96_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (MixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34 *)(MixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
MixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34 L_9 = ___item0;
MixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(MixedRealityControllerMapping_t02DE4CF288E71401ADA12CA03A9FE7B7C6781C34 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisMixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4_mD1EB8CE3980FFB9C1E2BAFF67F922ED4C0F82178_gshared (RuntimeArray * __this, MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisMixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4_mD1EB8CE3980FFB9C1E2BAFF67F922ED4C0F82178_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisMixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4_mD1EB8CE3980FFB9C1E2BAFF67F922ED4C0F82178_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4 *)(MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4 L_9 = ___item0;
MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(MixedRealityControllerVisualizationSetting_t3C5EAD8149AE6C68F50441C7C31D307A121652C4 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.MixedRealityGestureMapping>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisMixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074_m17C7A6B28437CE70FC4539A54DAC8B5B8ECEDB15_gshared (RuntimeArray * __this, MixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisMixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074_m17C7A6B28437CE70FC4539A54DAC8B5B8ECEDB15_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
MixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisMixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074_m17C7A6B28437CE70FC4539A54DAC8B5B8ECEDB15_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (MixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074 *)(MixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
MixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074 L_9 = ___item0;
MixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(MixedRealityGestureMapping_t765237603301D949A532A3533D70FB492A6E3074 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_mBB8B9105768BD0619054BE248B0CA0B1D24E14C1_gshared (RuntimeArray * __this, MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_mBB8B9105768BD0619054BE248B0CA0B1D24E14C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisMixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073_mBB8B9105768BD0619054BE248B0CA0B1D24E14C1_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 *)(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 L_9 = ___item0;
MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = MixedRealityInputAction_Equals_m654F3EF2301E74D1C72DF2BFF6CDEF153CFF7BAB((MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 *)(MixedRealityInputAction_tF3298AB582C6E52C2107F4AC4E6E4381EA0A5073 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisMixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932_m6AADE33EF1A15014BBFEAB8B81BDBE0D21854A37_gshared (RuntimeArray * __this, MixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisMixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932_m6AADE33EF1A15014BBFEAB8B81BDBE0D21854A37_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
MixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisMixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932_m6AADE33EF1A15014BBFEAB8B81BDBE0D21854A37_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (MixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932 *)(MixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
MixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932 L_9 = ___item0;
MixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(MixedRealityInputDataProviderConfiguration_tF45BD2BADA25AD599C888CA858382C101C88F932 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.ObjectCursor_ObjectCursorDatum>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4_m2A294C8205343BE79CF8BA8F1602DC853A993CA5_gshared (RuntimeArray * __this, ObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4_m2A294C8205343BE79CF8BA8F1602DC853A993CA5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4_m2A294C8205343BE79CF8BA8F1602DC853A993CA5_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4 *)(ObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
ObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4 L_9 = ___item0;
ObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(ObjectCursorDatum_tF08FDD6DDDE37F58B529A36F1B866417796307D4 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.PointerOption>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisPointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109_m6CDA63486DDE04292DB9A07C8AB4E62760FE8CF1_gshared (RuntimeArray * __this, PointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisPointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109_m6CDA63486DDE04292DB9A07C8AB4E62760FE8CF1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
PointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisPointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109_m6CDA63486DDE04292DB9A07C8AB4E62760FE8CF1_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (PointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109 *)(PointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
PointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109 L_9 = ___item0;
PointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(PointerOption_t1FA5E38BDEFB69C08A29A33BDA3721B0EE6F4109 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.SpeechCommands>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisSpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B_mE6BCEC3D77E4FCE2BACBCB63D16030795E4B5FB1_gshared (RuntimeArray * __this, SpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B_mE6BCEC3D77E4FCE2BACBCB63D16030795E4B5FB1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
SpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisSpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B_mE6BCEC3D77E4FCE2BACBCB63D16030795E4B5FB1_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (SpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B *)(SpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
SpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B L_9 = ___item0;
SpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(SpeechCommands_tF37A6AFE4D69C10D0E30BC190E5C97A64354878B *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Input.SpriteCursor_SpriteCursorDatum>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisSpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784_m05467A17D37B6C664E5E88F9497C6A26CB7487DF_gshared (RuntimeArray * __this, SpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784_m05467A17D37B6C664E5E88F9497C6A26CB7487DF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
SpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisSpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784_m05467A17D37B6C664E5E88F9497C6A26CB7487DF_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (SpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784 *)(SpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
SpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784 L_9 = ___item0;
SpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(SpriteCursorDatum_t7EF127D03AE70D5F53CA6FDC7F23ADEA0841D784 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisMixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9_mEB91A8F6350D594B38889FA2DDCE98E79C3773F0_gshared (RuntimeArray * __this, MixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisMixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9_mEB91A8F6350D594B38889FA2DDCE98E79C3773F0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
MixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisMixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9_mEB91A8F6350D594B38889FA2DDCE98E79C3773F0_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (MixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9 *)(MixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
MixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9 L_9 = ___item0;
MixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(MixedRealityServiceConfiguration_t490C7A96DDF29AF9B69E8C74A09FB9FC3F1BBCF9 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Physics.RayStep>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisRayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B_m2350E27F6ADB52095D6403991496A9E8C7519A45_gshared (RuntimeArray * __this, RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisRayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B_m2350E27F6ADB52095D6403991496A9E8C7519A45_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisRayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B_m2350E27F6ADB52095D6403991496A9E8C7519A45_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B *)(RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B L_9 = ___item0;
RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(RayStep_t8941E7B4377DF525FFDB64F2734B74B5CEBA1C1B *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisMixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90_mC523466815C8B4C46D28D3B30D39DBADB178A630_gshared (RuntimeArray * __this, MixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisMixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90_mC523466815C8B4C46D28D3B30D39DBADB178A630_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
MixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisMixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90_mC523466815C8B4C46D28D3B30D39DBADB178A630_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (MixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90 *)(MixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
MixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90 L_9 = ___item0;
MixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(MixedRealitySpatialObserverConfiguration_tB23D0A3BC6604415558EA7F9D1D04C2220B95A90 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_m83285759FFB781D9ED8A24F864DA7D80490A3465_gshared (RuntimeArray * __this, BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_m83285759FFB781D9ED8A24F864DA7D80490A3465_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisBlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B_m83285759FFB781D9ED8A24F864DA7D80490A3465_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B *)(BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B L_9 = ___item0;
BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(BlocksAndRenderer_tCFD385415C474303D131927A49AE034024BCE10B *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.UI.InteractableThemePropertySettings>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m659E758B21596E58A4289C84B7B96A1F6D7CDD62_gshared (RuntimeArray * __this, InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m659E758B21596E58A4289C84B7B96A1F6D7CDD62_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisInteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D_m659E758B21596E58A4289C84B7B96A1F6D7CDD62_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D *)(InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D L_9 = ___item0;
InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(InteractableThemePropertySettings_t16FB3A3BCBD3C201383A5EF66C97224E0830A89D *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.UI.ProfileSettings>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_m35859824B93E92DC4BAE008B4A760A8DF82C0AFA_gshared (RuntimeArray * __this, ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_m35859824B93E92DC4BAE008B4A760A8DF82C0AFA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301_m35859824B93E92DC4BAE008B4A760A8DF82C0AFA_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 *)(ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 L_9 = ___item0;
ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(ProfileSettings_t725F711155B5CBC7BCFEBAF308EBFB881665A301 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.UI.ShaderProperties>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m7EB571B3E8AC25C72D40E9396E77432DC14241E8_gshared (RuntimeArray * __this, ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m7EB571B3E8AC25C72D40E9396E77432DC14241E8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B_m7EB571B3E8AC25C72D40E9396E77432DC14241E8_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B *)(ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B L_9 = ___item0;
ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(ShaderProperties_t87994268E81D67327A9B7EC2E88C72B6CBAB734B *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.UI.ThemeSettings>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_mF39952E86460266BA79B806D545DD5C2920DC6F5_gshared (RuntimeArray * __this, ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_mF39952E86460266BA79B806D545DD5C2920DC6F5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1_mF39952E86460266BA79B806D545DD5C2920DC6F5_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 *)(ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 L_9 = ___item0;
ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(ThemeSettings_t8E9821AE5E1DF2E25D1A70AF4484476FA08C61F1 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisAnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1_m91766D9833AF2737D655BF71FE72B46A7543D637_gshared (RuntimeArray * __this, AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisAnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1_m91766D9833AF2737D655BF71FE72B46A7543D637_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisAnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1_m91766D9833AF2737D655BF71FE72B46A7543D637_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1 *)(AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1 L_9 = ___item0;
AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(AnimatorParameter_tDB7700BAEE22DEF019D15A01AF5A8F5B0FB027F1 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorFieldData>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_m5105025B1F73BD96E7037CE69F9B9B8B1012E92E_gshared (RuntimeArray * __this, InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_m5105025B1F73BD96E7037CE69F9B9B8B1012E92E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisInspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE_m5105025B1F73BD96E7037CE69F9B9B8B1012E92E_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE *)(InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE L_9 = ___item0;
InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(InspectorFieldData_t510F032EC513D2686E2E080EAB7412EF4B7D99AE *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mB557FFF75B8919577B6908E3F08942C55EFCBB07_gshared (RuntimeArray * __this, InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mB557FFF75B8919577B6908E3F08942C55EFCBB07_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisInspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3_mB557FFF75B8919577B6908E3F08942C55EFCBB07_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 *)(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 L_9 = ___item0;
InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(InspectorPropertySetting_t591FAF5FA7C1855E5200508C63DA3F1C9D335EE3 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisMixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45_m23C973484309E6C14C553DB04ED48BC2605C04F3_gshared (RuntimeArray * __this, MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisMixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45_m23C973484309E6C14C553DB04ED48BC2605C04F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisMixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45_m23C973484309E6C14C553DB04ED48BC2605C04F3_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 *)(MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 L_9 = ___item0;
MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = MixedRealityPose_Equals_mE824BC0DE4E17F5D29CE4A15D8CB4C6756E15CFD((MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 *)(MixedRealityPose_tB91C13927D4C609825580E7DACDB4A550F3F0F45 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_mEE9F75376AD48C517CF2F48A755A36426E393FC7_gshared (RuntimeArray * __this, ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_mEE9F75376AD48C517CF2F48A755A36426E393FC7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_mEE9F75376AD48C517CF2F48A755A36426E393FC7_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 *)(ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 L_9 = ___item0;
ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisFileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58_m02C171CB1B77EEB520B7FF95188F8C38342DCD32_gshared (RuntimeArray * __this, FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisFileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58_m02C171CB1B77EEB520B7FF95188F8C38342DCD32_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisFileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58_m02C171CB1B77EEB520B7FF95188F8C38342DCD32_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58 *)(FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58 L_9 = ___item0;
FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(FileInfo_tD1EEE823703D3680DF4B6AF8C142074B7AAABB58 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Mono.Globalization.Unicode.CodePointIndexer_TableRange>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m293EA28BAD3E4A83929BAE545B1011CC6143CEBB_gshared (RuntimeArray * __this, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m293EA28BAD3E4A83929BAE545B1011CC6143CEBB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m293EA28BAD3E4A83929BAE545B1011CC6143CEBB_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_9 = ___item0;
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Mono.Security.Uri_UriScheme>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_mB660489B728CE8C089645F41EEC79DFE051FCF77_gshared (RuntimeArray * __this, UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_mB660489B728CE8C089645F41EEC79DFE051FCF77_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_mB660489B728CE8C089645F41EEC79DFE051FCF77_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 *)(UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 L_9 = ___item0;
UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Boolean>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mC20BDC11F0575D4DDACD88DEAB020A75B564F11A_gshared (RuntimeArray * __this, bool ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mC20BDC11F0575D4DDACD88DEAB020A75B564F11A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
bool V_2 = false;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mC20BDC11F0575D4DDACD88DEAB020A75B564F11A_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (bool*)(bool*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
bool L_9 = ___item0;
bool L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7((bool*)(bool*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Byte>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m29830CD9ACA0126B5E56A827D3E7C1EEFDAFFB8D_gshared (RuntimeArray * __this, uint8_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m29830CD9ACA0126B5E56A827D3E7C1EEFDAFFB8D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
uint8_t V_2 = 0x0;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m29830CD9ACA0126B5E56A827D3E7C1EEFDAFFB8D_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint8_t*)(uint8_t*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
uint8_t L_9 = ___item0;
uint8_t L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF((uint8_t*)(uint8_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.ByteEnum>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mB68275DACDBA8E7A31E8D4F94E29DE490C338846_gshared (RuntimeArray * __this, uint8_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mB68275DACDBA8E7A31E8D4F94E29DE490C338846_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
uint8_t V_2 = 0;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mB68275DACDBA8E7A31E8D4F94E29DE490C338846_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint8_t*)(uint8_t*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
uint8_t L_9 = ___item0;
uint8_t L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
Il2CppFakeBox<uint8_t> L_12(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(&L_12), (RuntimeObject *)L_11);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Char>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8F737294D199447E8600FE272EF4B479D43BB930_gshared (RuntimeArray * __this, Il2CppChar ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8F737294D199447E8600FE272EF4B479D43BB930_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Il2CppChar V_2 = 0x0;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8F737294D199447E8600FE272EF4B479D43BB930_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Il2CppChar*)(Il2CppChar*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Il2CppChar L_9 = ___item0;
Il2CppChar L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8((Il2CppChar*)(Il2CppChar*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.DictionaryEntry>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m9B747BA30199C9DEF5EFC5DDDCC6B41417445BD0_gshared (RuntimeArray * __this, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m9B747BA30199C9DEF5EFC5DDDCC6B41417445BD0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m9B747BA30199C9DEF5EFC5DDDCC6B41417445BD0_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_9 = ___item0;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Boolean>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m29D2C81E85706E37680406C712B7C8D7059BC4C1_gshared (RuntimeArray * __this, Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m29D2C81E85706E37680406C712B7C8D7059BC4C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m29D2C81E85706E37680406C712B7C8D7059BC4C1_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 *)(Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 L_9 = ___item0;
Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Char>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m0002994DEEB217F54EC3111A86BCBEF435DA2B1F_gshared (RuntimeArray * __this, Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m0002994DEEB217F54EC3111A86BCBEF435DA2B1F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m0002994DEEB217F54EC3111A86BCBEF435DA2B1F_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A *)(Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A L_9 = ___item0;
Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m66CF6D3513851813DD6659C268BB12FBC88DA4BA_gshared (RuntimeArray * __this, Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m66CF6D3513851813DD6659C268BB12FBC88DA4BA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m66CF6D3513851813DD6659C268BB12FBC88DA4BA_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 *)(Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 L_9 = ___item0;
Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int64>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m967EB5C1814D8B4BCE2F049D793A283FD40F8ECB_gshared (RuntimeArray * __this, Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m967EB5C1814D8B4BCE2F049D793A283FD40F8ECB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m967EB5C1814D8B4BCE2F049D793A283FD40F8ECB_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A *)(Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A L_9 = ___item0;
Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m3AECD5FB3B18910B3F0C8107C6EF08B1CEA10CCF_gshared (RuntimeArray * __this, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m3AECD5FB3B18910B3F0C8107C6EF08B1CEA10CCF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m3AECD5FB3B18910B3F0C8107C6EF08B1CEA10CCF_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_9 = ___item0;
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.UInt32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tBAF6664AA6A875750059858D06D0616671054743_m0E451BF23511A3F2D2E4E840D91A6527329F08DB_gshared (RuntimeArray * __this, Entry_tBAF6664AA6A875750059858D06D0616671054743 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tBAF6664AA6A875750059858D06D0616671054743_m0E451BF23511A3F2D2E4E840D91A6527329F08DB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_tBAF6664AA6A875750059858D06D0616671054743 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_tBAF6664AA6A875750059858D06D0616671054743_m0E451BF23511A3F2D2E4E840D91A6527329F08DB_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tBAF6664AA6A875750059858D06D0616671054743 *)(Entry_tBAF6664AA6A875750059858D06D0616671054743 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_tBAF6664AA6A875750059858D06D0616671054743 L_9 = ___item0;
Entry_tBAF6664AA6A875750059858D06D0616671054743 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_tBAF6664AA6A875750059858D06D0616671054743 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect_AudioLoFiFilterSettings>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tBB2C3E86781F36999E2AE5A12F9264342F927AE4_mACB783F6411839B436F8760A6EB11B6CAF4F9132_gshared (RuntimeArray * __this, Entry_tBB2C3E86781F36999E2AE5A12F9264342F927AE4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tBB2C3E86781F36999E2AE5A12F9264342F927AE4_mACB783F6411839B436F8760A6EB11B6CAF4F9132_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_tBB2C3E86781F36999E2AE5A12F9264342F927AE4 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_tBB2C3E86781F36999E2AE5A12F9264342F927AE4_mACB783F6411839B436F8760A6EB11B6CAF4F9132_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tBB2C3E86781F36999E2AE5A12F9264342F927AE4 *)(Entry_tBB2C3E86781F36999E2AE5A12F9264342F927AE4 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_tBB2C3E86781F36999E2AE5A12F9264342F927AE4 L_9 = ___item0;
Entry_tBB2C3E86781F36999E2AE5A12F9264342F927AE4 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_tBB2C3E86781F36999E2AE5A12F9264342F927AE4 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t4588F5F844CFA9BFB03C33BD835C77631202A97B_m06D663C5FBD41F74C64AA49BFA1892A822036BFA_gshared (RuntimeArray * __this, Entry_t4588F5F844CFA9BFB03C33BD835C77631202A97B ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t4588F5F844CFA9BFB03C33BD835C77631202A97B_m06D663C5FBD41F74C64AA49BFA1892A822036BFA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t4588F5F844CFA9BFB03C33BD835C77631202A97B V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t4588F5F844CFA9BFB03C33BD835C77631202A97B_m06D663C5FBD41F74C64AA49BFA1892A822036BFA_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t4588F5F844CFA9BFB03C33BD835C77631202A97B *)(Entry_t4588F5F844CFA9BFB03C33BD835C77631202A97B *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t4588F5F844CFA9BFB03C33BD835C77631202A97B L_9 = ___item0;
Entry_t4588F5F844CFA9BFB03C33BD835C77631202A97B L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t4588F5F844CFA9BFB03C33BD835C77631202A97B *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t0947D15694A2F80B19118B0E9DA4161A92D6139A_mC51379159902E31E43B069E9F706B565A78D7BA1_gshared (RuntimeArray * __this, Entry_t0947D15694A2F80B19118B0E9DA4161A92D6139A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t0947D15694A2F80B19118B0E9DA4161A92D6139A_mC51379159902E31E43B069E9F706B565A78D7BA1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t0947D15694A2F80B19118B0E9DA4161A92D6139A V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t0947D15694A2F80B19118B0E9DA4161A92D6139A_mC51379159902E31E43B069E9F706B565A78D7BA1_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t0947D15694A2F80B19118B0E9DA4161A92D6139A *)(Entry_t0947D15694A2F80B19118B0E9DA4161A92D6139A *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t0947D15694A2F80B19118B0E9DA4161A92D6139A L_9 = ___item0;
Entry_t0947D15694A2F80B19118B0E9DA4161A92D6139A L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t0947D15694A2F80B19118B0E9DA4161A92D6139A *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int64,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mA54FCEA16D773F3AE200B75CF17100952E5701A6_gshared (RuntimeArray * __this, Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mA54FCEA16D773F3AE200B75CF17100952E5701A6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mA54FCEA16D773F3AE200B75CF17100952E5701A6_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 *)(Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 L_9 = ___item0;
Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Boolean>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t002F09010D6E57174B6C73A6AA7D53F256F2E030_m5142E441A730CB10C2F1F82D6BAB6CA096AF4828_gshared (RuntimeArray * __this, Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t002F09010D6E57174B6C73A6AA7D53F256F2E030_m5142E441A730CB10C2F1F82D6BAB6CA096AF4828_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t002F09010D6E57174B6C73A6AA7D53F256F2E030_m5142E441A730CB10C2F1F82D6BAB6CA096AF4828_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030 *)(Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030 L_9 = ___item0;
Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m9E5B158A4C9B0A5FA3027E4177DA98DA6264A56C_gshared (RuntimeArray * __this, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m9E5B158A4C9B0A5FA3027E4177DA98DA6264A56C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m9E5B158A4C9B0A5FA3027E4177DA98DA6264A56C_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_9 = ___item0;
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m17FA206B6160A89ECE120941608D1B89D499203C_gshared (RuntimeArray * __this, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m17FA206B6160A89ECE120941608D1B89D499203C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m17FA206B6160A89ECE120941608D1B89D499203C_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_9 = ___item0;
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBB075A2082A735C0ECB89547222A737D30DBBCC4_gshared (RuntimeArray * __this, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBB075A2082A735C0ECB89547222A737D30DBBCC4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBB075A2082A735C0ECB89547222A737D30DBBCC4_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_9 = ___item0;
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Vector3>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t7F6EFCC50C152F187A40F83B2412AA3926B29874_m44FE645F60462F85DF7BEDEC94EA57405DDB59C3_gshared (RuntimeArray * __this, Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t7F6EFCC50C152F187A40F83B2412AA3926B29874_m44FE645F60462F85DF7BEDEC94EA57405DDB59C3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t7F6EFCC50C152F187A40F83B2412AA3926B29874_m44FE645F60462F85DF7BEDEC94EA57405DDB59C3_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874 *)(Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874 L_9 = ___item0;
Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Boolean>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2_m3282E38B358B4461CF429E9BA856BAB7326AD5F4_gshared (RuntimeArray * __this, Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2_m3282E38B358B4461CF429E9BA856BAB7326AD5F4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2_m3282E38B358B4461CF429E9BA856BAB7326AD5F4_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2 *)(Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2 L_9 = ___item0;
Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_m6492CFA1AD01D223CA6A09D9969C2DFA2E2522BB_gshared (RuntimeArray * __this, Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_m6492CFA1AD01D223CA6A09D9969C2DFA2E2522BB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_m6492CFA1AD01D223CA6A09D9969C2DFA2E2522BB_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 *)(Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 L_9 = ___item0;
Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t443D72C18A3A122927C703E1FEBF06B4FDB17F38_m0443A4FA281A4B8195F5E6804278A35E87090ED0_gshared (RuntimeArray * __this, Entry_t443D72C18A3A122927C703E1FEBF06B4FDB17F38 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t443D72C18A3A122927C703E1FEBF06B4FDB17F38_m0443A4FA281A4B8195F5E6804278A35E87090ED0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t443D72C18A3A122927C703E1FEBF06B4FDB17F38 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t443D72C18A3A122927C703E1FEBF06B4FDB17F38_m0443A4FA281A4B8195F5E6804278A35E87090ED0_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t443D72C18A3A122927C703E1FEBF06B4FDB17F38 *)(Entry_t443D72C18A3A122927C703E1FEBF06B4FDB17F38 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t443D72C18A3A122927C703E1FEBF06B4FDB17F38 L_9 = ___item0;
Entry_t443D72C18A3A122927C703E1FEBF06B4FDB17F38 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t443D72C18A3A122927C703E1FEBF06B4FDB17F38 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,UnityEngine.Vector3>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_m6B43F83D6E383FB8F114A21E49F58765BACE7A96_gshared (RuntimeArray * __this, Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_m6B43F83D6E383FB8F114A21E49F58765BACE7A96_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_m6B43F83D6E383FB8F114A21E49F58765BACE7A96_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8 *)(Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8 L_9 = ___item0;
Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_mFCE0B6A27B30770A4B512BEDB254E192D5280D29_gshared (RuntimeArray * __this, Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_mFCE0B6A27B30770A4B512BEDB254E192D5280D29_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_mFCE0B6A27B30770A4B512BEDB254E192D5280D29_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_9 = ___item0;
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m5A0BC17921AC35849670855347808D9393DF8B16_gshared (RuntimeArray * __this, Entry_t687188C87EF1FD0D50038E634676DBC449857B8E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m5A0BC17921AC35849670855347808D9393DF8B16_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t687188C87EF1FD0D50038E634676DBC449857B8E V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m5A0BC17921AC35849670855347808D9393DF8B16_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t687188C87EF1FD0D50038E634676DBC449857B8E *)(Entry_t687188C87EF1FD0D50038E634676DBC449857B8E *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t687188C87EF1FD0D50038E634676DBC449857B8E L_9 = ___item0;
Entry_t687188C87EF1FD0D50038E634676DBC449857B8E L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t687188C87EF1FD0D50038E634676DBC449857B8E *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.HashSet`1_Slot<System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mEB90B7E039CD88096D8235EBC77043B201D089F8_gshared (RuntimeArray * __this, Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mEB90B7E039CD88096D8235EBC77043B201D089F8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mEB90B7E039CD88096D8235EBC77043B201D089F8_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 L_9 = ___item0;
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m739A55FED52BC421DC9BDA024BE349CD2D135C19_gshared (RuntimeArray * __this, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m739A55FED52BC421DC9BDA024BE349CD2D135C19_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m739A55FED52BC421DC9BDA024BE349CD2D135C19_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_9 = ___item0;
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m4918F1A608A3EFBAE42BA98870BAF1D3F2F66072_gshared (RuntimeArray * __this, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m4918F1A608A3EFBAE42BA98870BAF1D3F2F66072_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IndexOf_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m4918F1A608A3EFBAE42BA98870BAF1D3F2F66072_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 L_9 = ___item0;
KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
|
[
"35610867+joaoadpereira@users.noreply.github.com"
] |
35610867+joaoadpereira@users.noreply.github.com
|
533cc87e9a57ae96c677aad765a0c009f66674bf
|
e748f21ca6ef98149e546c6e6053dd7de2cad5ee
|
/src/Laser_Photoresistor_LED/Laser_Photoresistor_LED.ino
|
f77741bad864c9c2eea547bf1f6fa05c80968e86
|
[] |
no_license
|
cbm-instructions/thunderbirds
|
69d0eff3aea07edcae5f57f6cb67aa8ca5300bbc
|
c2ce5446e3b4676b4ad7e1e719be8ad6b94da34c
|
refs/heads/master
| 2021-01-17T16:34:39.680847
| 2016-06-22T07:34:55
| 2016-06-22T07:34:55
| 58,318,464
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 7,603
|
ino
|
#include <Servo.h>
#include <PololuLedStrip.h>
#include <LEDFader.h>
// Create an ledStrip object and specify the pin it will use.
PololuLedStrip<12> ledStrip;
PololuLedStrip<13> ledStrip2;
// Create a buffer for holding the colors (3 bytes per color).
#define LED_COUNT 300
rgb_color colors[LED_COUNT];
#define LED_COUNT2 100
rgb_color colors2[LED_COUNT2];
//Photoresistoren der Kontinente
int photoNorthAmericaA = 0;
int photoSouthAmericaA = 1;
int photoEuropeA = 2;
int photoAfricaA = 3;
int photoAsiaA = 4;
int photoAustraliaA = 5;
//Threshold der Photoresistoren
int thresholdNorthAmerica = 300;
int thresholdSouthAmerica = 250;
int thresholdEurope = 500;
int thresholdAfrica = 500;
int thresholdAsia = 420;
int thresholdAustralia = 490;
//Zeit stoppen
unsigned long timer;
long start;
long dauer;
void reset() {
thresholdNorthAmerica = 250;
thresholdSouthAmerica = 250;
thresholdEurope = 500;
thresholdAfrica = 500;
thresholdAsia = 420;
thresholdAustralia = 490;
for (int i = 0; i < LED_COUNT; i++) {
colors[i] = (rgb_color) {
0, 0, 0
};
}
ledStrip.write(colors, LED_COUNT);
}
/************************************************************************************************/
void setup() {
Serial.begin(9600);
timer = millis();
}
/************************************************************************************************/
void loop() {
//led.update();
//Fade Schleife
for (int j = 0; j < LED_COUNT2; j++) {
colors2[j] = (rgb_color) {
255, 255, 255
};
}
ledStrip2.write(colors2, LED_COUNT2);
if (millis() - timer > 50000) {
reset();
}
//Serial.println(timer);
//Photoresistor & LED
//Serial.println(analogRead(photoSouthAmericaA));
//Serial.println(analogRead(photoNorthAmericaA));
//Serial.println(analogRead(photoAfricaA));
//Serial.println(analogRead(photoEuropeA));
//Serial.println(analogRead(photoAsiaA));
//Serial.println(analogRead(photoAustraliaA));
// if (timer <= 2000) {
Serial.println(millis() - timer);
//Beleuchtung: Nordamerika
if (analogRead(photoNorthAmericaA) > thresholdNorthAmerica) {
timer = millis();
for (uint16_t i = 29; i <= 96; i++) {
colors[i] = (rgb_color) {
0, 0, 255
};
}
thresholdNorthAmerica = 900;
ledStrip.write(colors, LED_COUNT);
}
//Beleuchtung: Südamerika
if (analogRead(photoSouthAmericaA) > thresholdSouthAmerica) {
timer = millis();
for (uint16_t i = 0; i <= 28; i++) {
colors[i] = (rgb_color) {
210, 105, 30
};
}
thresholdSouthAmerica = 900;
ledStrip.write(colors, LED_COUNT);
}
//Beleuchtung: Afrika
if (analogRead(photoAfricaA) > thresholdAfrica) {
timer = millis();
for (uint16_t i = 112; i <= 139; i++) {
colors[i] = (rgb_color) {
138, 43, 226
};
}
thresholdAfrica = 900;
ledStrip.write(colors, LED_COUNT);
}
//Beleuchtung: Europa
if (analogRead(photoEuropeA) > thresholdEurope) {
timer = millis();
for (uint16_t i = 140; i <= 151; i++) {
colors[i] = (rgb_color) {
255, 215, 0
};
}
thresholdEurope = 900;
ledStrip.write(colors, LED_COUNT);
for (uint16_t i = 210; i <= 215; i++) {
colors[i] = (rgb_color) {
255, 215, 0
};
}
ledStrip.write(colors, LED_COUNT);
}
//Beleuchtung: Asien
if (analogRead(photoAsiaA) > thresholdAsia) {
timer = millis();
for (uint16_t i = 152; i <= 172; i++) {
colors[i] = (rgb_color) {
0, 255, 0
};
}
thresholdAsia = 900;
ledStrip.write(colors, LED_COUNT);
for (uint16_t i = 195; i <= 209; i++) {
colors[i] = (rgb_color) {
0, 255, 0
};
}
ledStrip.write(colors, LED_COUNT);
}
//Beleuchtung: Australien
if (analogRead(photoAustraliaA) > thresholdAustralia) {
timer = millis();
for (uint16_t i = 184; i <= 194; i++) {
colors[i] = (rgb_color) {
255, 0, 255
};
}
thresholdAustralia = 999;
ledStrip.write(colors, LED_COUNT);
}
/************************************************************************************************/
//Verbindung Südamerika -> Afrika
if (thresholdSouthAmerica == 900 && thresholdAfrica == 900) {
// interruptSouthAmericaAfrica();
// conSouthAmericaAfrica();
for (uint16_t i = 97; i <= 111; i++)
{
colors[i] = (rgb_color) {
210, 105, 30
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
for (uint16_t i = 97; i <= 111; i++)
{
colors[i] = (rgb_color) {
0, 0, 0
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
for (uint16_t i = 111; i >= 97; i--)
{
colors[i] = (rgb_color) {
138, 43, 226
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
for (uint16_t i = 111; i >= 97; i--)
{
colors[i] = (rgb_color) {
0, 0, 0
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
}
//Verbindung Asia -> Australia
if (thresholdAsia == 900 && thresholdAustralia == 999) {
// conAsiaAustralia();
for (uint16_t i = 173; i <= 183; i++)
{
colors[i] = (rgb_color) {
0, 255, 0
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
for (uint16_t i = 173; i <= 183; i++)
{
colors[i] = (rgb_color) {
0, 0, 0
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
for (uint16_t i = 183; i >= 173; i--)
{
colors[i] = (rgb_color) {
255, 0, 255
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
for (uint16_t i = 183; i >= 173; i--)
{
colors[i] = (rgb_color) {
0, 0, 0
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
}
//Verbindung Europe -> NorthAmerica
if (thresholdEurope == 900 && thresholdNorthAmerica == 900) {
//conEuropeNorthAmerica();
for (uint16_t i = 215; i <= 230; i++)
{
colors[i] = (rgb_color) {
255, 215, 0
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
for (uint16_t i = 215; i <= 230; i++)
{
colors[i] = (rgb_color) {
0, 0, 0
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
for (uint16_t i = 230; i >= 215; i--)
{
colors[i] = (rgb_color) {
0, 0, 255
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
for (uint16_t i = 230; i >= 215; i--)
{
colors[i] = (rgb_color) {
0, 0, 0
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
}
//Verbindung Africa -> Australia
if (thresholdAfrica == 900 && thresholdAustralia == 999) {
//conAfricaAustralia();
for (uint16_t i = 231; i <= 245; i++)
{
colors[i] = (rgb_color) {
138, 43, 226
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
for (uint16_t i = 231; i <= 245; i++)
{
colors[i] = (rgb_color) {
0, 0, 0
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
for (uint16_t i = 245; i >= 231; i--)
{
colors[i] = (rgb_color) {
255, 0, 255
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
for (uint16_t i = 245; i >= 231; i--)
{
colors[i] = (rgb_color) {
0, 0, 0
};
ledStrip.write(colors, LED_COUNT);
delay(10);
}
}
// } else {
// Serial.println("sdhkjfhdjkfhkjdfkjd");
// }
}
|
[
"Pirsen@live.de"
] |
Pirsen@live.de
|
6d608b7ee5c846d2ee77720d066ea7256a008acd
|
81a1ffac3f9f0f0d656ff6e95bf5f2913eb93666
|
/src/data.utilities/xml_lookup_table_2d_reading.cpp
|
bdaabb6907366cc1761a11cb44199eaa5b42e13d
|
[] |
no_license
|
mccabe082/Simple-Aircraft-Simulator
|
6dd0622130f588a5e797729844697e9f36f525a6
|
e4f1e16d398ff3da9513cbb0b5a07715ad8b67f2
|
refs/heads/master
| 2022-07-03T05:45:44.553576
| 2020-05-17T22:49:01
| 2020-05-17T22:49:01
| 262,423,396
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,377
|
cpp
|
#include "xml_lookup_table_2d_reading.h"
#include "rapidxml.hpp"
#include "rapidxml_utils.hpp"
#include "bilinear_interpolation.h"
#include <exception>
#include <iostream>
#include <string>
#include <string_view>
#include <algorithm>
#include <memory>
namespace
{
using namespace rapidxml;
using NodePtr = xml_node<>*;
using XMLDoc = xml_document<>;
void tokenise(const std::string& csvStr, std::vector<double>& values)
{
std::vector<double> constructionValues;
static constexpr char* whitespaces = " \t\f\v\n\r";
try
{
std::string::size_type currentPos = 0;
std::string::size_type cumulativePos = 0;
std::string::size_type finalPos = csvStr.find_last_not_of(whitespaces);
while (cumulativePos < finalPos)
{
double token = std::stod(csvStr.substr(cumulativePos), ¤tPos);
cumulativePos += currentPos;
constructionValues.push_back(token);
}
values = std::move(constructionValues);
}
catch (...)
{
throw (std::runtime_error("malformed token (#" + std::to_string(constructionValues.size() + 1) + ")"));
}
}
bool notSorted(std::vector<double>& values)
{
return !std::is_sorted(values.begin(), values.end());
}
}
namespace DataUtilities
{
namespace XMLLookupReading
{
void readColumnHeaderElement(const NodePtr lookupTable2DNode, LookupTable2D& table)
{
try
{
NodePtr columnHeaderNode = lookupTable2DNode->first_node("Column");
if (columnHeaderNode)
{
std::string_view rowDescription = columnHeaderNode->first_attribute("description")->value();
std::string columnDataStr = columnHeaderNode->value();
tokenise(columnDataStr, table.xSamples);
if (notSorted(table.xSamples)) throw std::runtime_error("column header data isn't strictly increasing");
return;
}
}
catch (std::runtime_error ex)
{
throw std::runtime_error("reading <Column> header element: " + std::string(ex.what()));
}
catch (...)
{
throw std::runtime_error("missing or malformed <Column> element");
}
}
void readRowHeaderElement(const NodePtr lookupTable2DNode, LookupTable2D& table)
{
try
{
NodePtr rowHeaderNode = lookupTable2DNode->first_node("Row");
if (rowHeaderNode)
{
std::string_view rowDescription = rowHeaderNode->first_attribute("description")->value();
tokenise(std::string(rowHeaderNode->value()), table.ySamples);
if (notSorted(table.ySamples)) throw std::runtime_error("row header data isn't strictly increasing");
return;
}
}
catch (std::runtime_error ex)
{
throw std::runtime_error("reading <Row> header element: " + std::string(ex.what()));
}
catch (...)
{
throw std::runtime_error("missing or malformed <Row> element");
}
}
void readRowElements(const NodePtr valuesNode, LookupTable2D& table)
{
const size_t ROWS = table.xSamples.size();
const size_t COLS = table.ySamples.size();
table.fRows.resize(COLS, LookupTable2D::Row(ROWS, 0.));
try
{
size_t iRow = 0;
LookupTable2D::Row rowOnFile;
NodePtr rowNode = valuesNode->first_node("Row");
while (rowNode)
{
if (iRow >= ROWS) throw std::runtime_error("too many rows in lookup table");
tokenise(std::string(rowNode->value()), rowOnFile);
if (rowOnFile.size() < COLS) throw std::runtime_error("too many columns in lookup table, row #" + iRow);
if (rowOnFile.size() > COLS) throw std::runtime_error("too few columns in lookup table" + iRow);
for (size_t iCol = 0; iCol < COLS; ++iCol)
{
table.fRows[iCol][iRow] = rowOnFile[iCol];
}
iRow++;
rowNode = rowNode->next_sibling("Row");
}
if (iRow < ROWS) throw std::runtime_error("too few row in lookup table");
}
catch (std::runtime_error ex)
{
throw std::runtime_error("reading <Row> elements: " + std::string(ex.what()));
}
catch (...)
{
throw std::runtime_error("missing or malformed Row elements");
}
}
void readValuesElement(const NodePtr lookupTable2DNode, LookupTable2D& table)
{
try
{
NodePtr valuesNode = lookupTable2DNode->first_node("Values");
if (valuesNode)
{
return readRowElements(valuesNode, table);
}
}
catch (std::runtime_error ex)
{
throw std::runtime_error("reading <Values> element: " + std::string(ex.what()));
}
catch (...)
{
throw std::runtime_error("missing or malformed <Values> element");
}
}
std::unique_ptr<LookupTable2D> readInterpolationMethod(const NodePtr lookupTable2DNode)
{
auto* pDescriptionAttribute = lookupTable2DNode->first_attribute("method");
if (!pDescriptionAttribute) throw std::runtime_error("missing \"method\" attribute");
std::string interpolationMethod = pDescriptionAttribute->value();
if (interpolationMethod == "bilinear")
{
return std::make_unique<BilinearInterpolation>();
}
throw std::runtime_error("unrecognised interpolation method (" + interpolationMethod + ")");
return nullptr;
}
std::unique_ptr<LookupTable2D> readLookupTable2DElement(const XMLDoc& doc)
{
try
{
NodePtr lookupTable2DNode = doc.first_node("LookupTable2D");
if (lookupTable2DNode)
{
std::string_view tableDescription = lookupTable2DNode->first_attribute("description")->value();
std::unique_ptr<LookupTable2D> pTable = readInterpolationMethod(lookupTable2DNode);
readColumnHeaderElement(lookupTable2DNode, *pTable);
readRowHeaderElement(lookupTable2DNode, *pTable);
readValuesElement(lookupTable2DNode, *pTable);
return pTable;
}
}
catch (std::runtime_error ex)
{
throw std::runtime_error("reading <LookupTable2D> element: " + std::string(ex.what()));
}
catch (...)
{
throw std::runtime_error("missing or malformed <LookupTable2D> element");
}
return nullptr;
}
std::unique_ptr<LookupTable2D> load(const std::string& filename)
{
try
{
rapidxml::file<> xmlFile(filename.c_str());
rapidxml::xml_document<> doc;
doc.parse<0>(xmlFile.data());
return readLookupTable2DElement(doc);
}
catch (std::runtime_error ex)
{
std::cerr << "reading '" + filename + "': " + std::string(ex.what()) << std::flush;
}
catch (...)
{
std::cerr << "missing or malformed input file: '" + filename + "'" << std::flush;
}
std::exit(EXIT_FAILURE);
return nullptr;
}
}
}
|
[
"david.mccabe082@gmail.com"
] |
david.mccabe082@gmail.com
|
87fc7a4052acf8ac7dfdcb230baeff4675d7257f
|
325f4a6ce8aa09a019cae883c0db967b615da5db
|
/SDK/PUBG_DmgTypeExplosion_Grenade_classes.hpp
|
e71e87a72f7681320e973d8b8fb8f8a92dbc0b05
|
[] |
no_license
|
Rioo-may/PUBG-SDK
|
1c9e18b1dc0f893f5e88d5c2f631651ada7e63a4
|
fa64ffdc5924e5f3222a30b051daa3a5b3a86fbf
|
refs/heads/master
| 2023-01-07T22:57:11.560093
| 2020-11-11T05:49:47
| 2020-11-11T05:49:47
| 311,240,310
| 0
| 0
| null | 2020-11-11T05:51:42
| 2020-11-09T06:09:27
|
C++
|
UTF-8
|
C++
| false
| false
| 696
|
hpp
|
#pragma once
// PlayerUnknown's Battlegrounds (2.5.39.19) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace Classes
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass DmgTypeExplosion_Grenade.DmgTypeExplosion_Grenade_C
// 0x0000 (0x0090 - 0x0090)
class UDmgTypeExplosion_Grenade_C : public UTslDamageType
{
public:
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("BlueprintGeneratedClass DmgTypeExplosion_Grenade.DmgTypeExplosion_Grenade_C");
return ptr;
}
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
|
[
"pubgsdk@gmail.com"
] |
pubgsdk@gmail.com
|
86b6a9d7086cb79c0c95107f5d4364678f6cca9e
|
d2bb8b920f5d1d23f3db2d1256d1fd6213940014
|
/engine/UnitTest.Core/src/core/reflection/ReflectionTest.cpp
|
ef0c683972572a5a19df02708ef6a43515d1f152
|
[
"MIT"
] |
permissive
|
ZieIony/Ghurund
|
726672d56838d18b6dd675f304feee1d95a296bd
|
0ce83cabd91f7ac71286dcd8e12d486bed2d75cf
|
refs/heads/master
| 2023-08-17T08:14:19.548027
| 2022-02-12T16:33:32
| 2022-02-12T16:34:54
| 124,959,579
| 91
| 9
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,368
|
cpp
|
#include "pch.h"
#include "CppUnitTest.h"
#include "TestUtils.h"
#include "TestClass.h"
#include "MemoryGuard.h"
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
namespace Microsoft::VisualStudio::CppUnitTestFramework {
template<> static std::wstring ToString<Ghurund::Core::AString>(const Ghurund::Core::AString& t) {
return convertText<char, wchar_t>(t).Data;
}
}
namespace UnitTest {
TEST_CLASS(ReflectionTest) {
public:
TEST_METHOD(readOnlyProperty_uint32) {
MemoryGuard guard;
{
UnitTest::TestClass testObj;
size_t index = testObj.Type.Properties.find([](const BaseProperty* obj) { return obj->Name == "val"; });
auto valProperty = (ReadOnlyProperty<UnitTest::TestClass, uint32_t>*)testObj.Type.Properties[index];
testObj.val = 5u;
uint32_t val = valProperty->get(testObj);
Assert::AreEqual(5u, val);
}
}
TEST_METHOD(property_charPointer) {
MemoryGuard guard;
{
UnitTest::TestClass testObj;
size_t index = testObj.Type.Properties.find([](const BaseProperty* obj) { return obj->Name == "text"; });
auto textProperty = (Property<UnitTest::TestClass, const char*>*)testObj.Type.Properties[index];
testObj.setText("lemon");
const char* text = textProperty->get(testObj);
Assert::AreEqual("lemon", text);
textProperty->set(testObj, "apple");
Assert::AreEqual("apple", testObj.getText());
}
}
TEST_METHOD(writeOnlyProperty_float) {
MemoryGuard guard;
{
UnitTest::TestClass testObj;
size_t index = testObj.Type.Properties.find([](const BaseProperty* obj) { return obj->Name == "progress"; });
auto progressProperty = (WriteOnlyProperty<UnitTest::TestClass, float>*)testObj.Type.Properties[index];
testObj.progress = 0.5f;
progressProperty->set(testObj, 0.3f);
Assert::AreEqual(0.3f, testObj.progress);
}
}
TEST_METHOD(findPropertyByType) {
MemoryGuard guard;
{
UnitTest::TestClass testObj;
size_t progressIndex = testObj.Type.Properties.find([](const BaseProperty* obj) { return obj->Name == "progress"; });
size_t floatIndex = testObj.Type.Properties.find([](const BaseProperty* obj) { return obj->Type == getType<float>(); });
Assert::AreEqual(progressIndex, floatIndex);
Assert::AreNotEqual(testObj.Type.Properties.Size, floatIndex);
}
}
TEST_METHOD(templateProperty) {
MemoryGuard guard;
{
UnitTest::TestClass testObj;
size_t observableIndex = testObj.Type.Properties.find([](const BaseProperty* obj) { return obj->Type.Name.startsWith("Observable"); });
auto observableProperty = testObj.Type.Properties[observableIndex];
observableProperty->getRaw(&testObj, [&](void* val) {
Assert::IsNotNull(val);
Object* observable = (Object*)val;
size_t valueIndex = observable->Type.Properties.find([](const BaseProperty* obj) { return obj->Name == "Value"; });
auto valueProperty = observable->Type.Properties[valueIndex];
Ghurund::Core::AString value;
valueProperty->getRaw(val, [&](void* val) {
value = *(Ghurund::Core::AString*)val;
});
Assert::AreEqual(testObj.name.Value, value);
});
}
}
TEST_METHOD(templateMethod) {
MemoryGuard guard;
{
UnitTest::TestClass testObj;
size_t observableIndex = testObj.Type.Properties.find([](const BaseProperty* obj) { return obj->Type.Name.startsWith("Observable"); });
auto observableProperty = testObj.Type.Properties[observableIndex];
Object* observable = nullptr;
observableProperty->getRaw(&testObj, [&](void* val) { observable = (Object*)val; });
Assert::IsNotNull(observable);
size_t addIndex = observable->Type.Methods.find([](const BaseMethod* obj) { return obj->Name == "add"; });
auto addMethod = observable->Type.Methods[addIndex];
//addMethod->invoke(
}
}
};
}
|
[
"niewartotupisac@gmail.com"
] |
niewartotupisac@gmail.com
|
7c655be6ea435de4b5470c787ccc41b9c615aeb6
|
56690e0ced0702fed775e6a1cc5b241b33167222
|
/Contest6/bai9/main.cpp
|
b70371de4e6cec4693e345774cfb7e4e72bffba8
|
[] |
no_license
|
lanhuong1999/Data-Structures-and-Algorithms
|
251b540f631e62055d50f3530c7a0dc27fe7527a
|
021c06782baf53dc0f24d45f628157cf0720c4f4
|
refs/heads/master
| 2021-05-20T08:53:49.852380
| 2020-08-19T04:08:29
| 2020-08-19T04:08:29
| 252,207,967
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 485
|
cpp
|
#include <bits/stdc++.h>
#define maxn 105
using namespace std;
void solve(int a[], int n, int k){
int res=0;
for(int i=0;i<n-1;i++){
if(a[i]>k) break;
for(int j=i+1;j<n;j++)
if(a[j]+a[i]==k) res++;
}
cout<<res<<endl;
}
int main()
{
int t; cin>>t;
while(t--){
int n,k, a[maxn];
cin>>n>>k;
for(int i=0;i<n;i++) cin>>a[i];
sort(a,a+n);
solve(a,n,k);
}
return 0;
}
|
[
"noreply@github.com"
] |
lanhuong1999.noreply@github.com
|
a2a9445a220870aed53bb6e6fdc691ee80ecf2f4
|
bfd8933c9605067202e1fbe4dbd38e9be7d319eb
|
/Lib/Chip/Unknown/Nuvoton/NUC100_Series/GPA_BITS.hpp
|
382147334cbb7eba48a42c740de97eab9ba3b0e9
|
[
"Apache-2.0"
] |
permissive
|
gitter-badger/Kvasir-1
|
91968c6c2bfae38a33e08fafb87de399e450a13c
|
a9ea942f54b764e27dbab9c74e5f0f97390a778e
|
refs/heads/master
| 2020-12-24T18:23:36.275985
| 2016-02-24T22:06:57
| 2016-02-24T22:06:57
| 52,541,357
| 0
| 0
| null | 2016-02-25T16:54:18
| 2016-02-25T16:54:18
| null |
UTF-8
|
C++
| false
| false
| 9,419
|
hpp
|
#pragma once
#include "Register/Utility.hpp"
namespace Kvasir {
//Registers group
namespace Nonedout0{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x50004200,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
namespace Nonedout1{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x50004204,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
namespace Nonedout2{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x50004208,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
namespace Nonedout3{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x5000420c,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
namespace Nonedout4{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x50004210,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
namespace Nonedout5{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x50004214,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
namespace Nonedout6{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x50004218,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
namespace Nonedout7{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x5000421c,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
namespace Nonedout8{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x50004220,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
namespace Nonedout9{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x50004224,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
namespace Nonedout10{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x50004228,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
namespace Nonedout11{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x5000422c,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
namespace Nonedout12{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x50004230,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
namespace Nonedout13{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x50004234,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
namespace Nonedout14{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x50004238,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
namespace Nonedout15{ ///<GPIO Port Pin I/O Bit Output Control
using Addr = Register::Address<0x5000423c,0xfffffffe,0,unsigned>;
///GPIOxx I/O Pin Bit Output Control
Set this bit can control one GPIO pin output value
1 = Set corresponding GPIO bit to high
0 = Set corresponding GPIO bit to low
For example: write GPIOx0_DOUT will reflect the written value to bit GPIOx_DOUT[0], read GPIOx0_DOUT will return the valur of GPIOx_PIN[0].
constexpr Register::FieldLocation<Addr,Register::maskFromRange(0,0),Register::ReadWriteAccess,unsigned> dout{};
}
}
|
[
"holmes.odin@gmail.com"
] |
holmes.odin@gmail.com
|
d8d45cff54de65a962d56e31b667719be75497f9
|
76e5e852357b3c3c84fae625b16f7337171154b4
|
/test/MockTIOTreeItem.h
|
e55be5801634a9882afadc1c6f1a479c6acb440f
|
[] |
no_license
|
tio-browse/tio-browse
|
2586c086956a03a9b0e665f5d8474df5e736a42b
|
0c29a93c0fd6814c5d6f12fc71e6ffa03bcbf3b1
|
refs/heads/master
| 2023-03-01T01:12:28.067291
| 2020-08-06T10:23:06
| 2020-08-06T10:23:06
| 239,782,281
| 2
| 3
| null | 2021-02-11T13:40:12
| 2020-02-11T14:30:17
|
C++
|
UTF-8
|
C++
| false
| false
| 1,018
|
h
|
//
// test/MockTIOTreeItem.h
//
// (c) British Crown Owned Copyright 2019/AWE
//
// This file is part of TIO browse
// Released under the BSD 3-clause license.
// For more details see license.txt
//
#ifndef TEST_MOCKTIOTREEITEM_H_
#define TEST_MOCKTIOTREEITEM_H_
#include <typhonio.h>
#include <string>
#include "TIOTreeItem.h"
class MockTIOTreeItem : public TIOTreeItem {
public:
MockTIOTreeItem(std::string itemName, TIO_File_t fileID,
TIO_Object_t objectID)
: TIOTreeItem(itemName), m_fileID(fileID), m_meshID(TIO_NULL) {
m_objectID = objectID;
}
MockTIOTreeItem(std::string itemName, TIO_File_t fileID, TIO_Object_t meshID,
TIO_Object_t objectID)
: TIOTreeItem(itemName), m_fileID(fileID), m_meshID(meshID) {
m_objectID = objectID;
}
TIO_File_t getFileID() override { return m_fileID; }
TIO_Object_t getMeshID() override { return m_meshID; }
private:
TIO_File_t m_fileID;
TIO_Object_t m_meshID;
};
#endif // TEST_MOCKTIOTREEITEM_H_
|
[
"benjaminjeliot@gmail.com"
] |
benjaminjeliot@gmail.com
|
c0609b02c29363e1d0f18451cb176e99909dd075
|
2156771a813df86af40ee0c7cbc6341b7d813c2c
|
/算法笔记/牛客网考研复试习题/球半径与球体积.cpp
|
5c6da2df1050202b9282c25db26dcc18943d636e
|
[] |
no_license
|
ALILIYES/algorithm-note
|
fd643088a48a3b4c35cababcbf104d6a4d49992a
|
613f908986c422860edd105b5b27bc20763a2439
|
refs/heads/main
| 2023-07-08T06:05:46.436280
| 2021-08-10T01:19:59
| 2021-08-10T01:19:59
| 326,143,316
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 351
|
cpp
|
#include<cstdio>
#include<math.h>
#include<algorithm>
#include<iostream>
using namespace std;
int main(){
double x0,y0,z0,x1,y1,z1;
while(cin>>x0>>y0>>z0>>x1>>y1>>z1){
double d = sqrt((x1-x0)*(x1-x0)+(y1-y0)*(y1-y0)+(z1-z0)*(z1-z0));
double t = (4/3.0)*acos(-1)*d*d*d;
printf("%.3lf %.3lf",d,t);
}
}
|
[
"1357918777@qq.com"
] |
1357918777@qq.com
|
30d41481f078ff1010d7ae4622e257cb551a1f17
|
5c4331a9981faf34a386ca62ccfe049946d78289
|
/src/compiler-dispatcher/compiler-dispatcher-tracer.cc
|
0370d8e9958d57e6bd968ae4d84a41a22cb1e3d1
|
[
"BSD-3-Clause",
"SunPro",
"bzip2-1.0.6"
] |
permissive
|
stefb965/v8
|
391c624aa9283e8b7ca256d4b9b33c9a23288e44
|
679b31c21425ecdd86c40a8a02ac131b72f7bc6b
|
refs/heads/master
| 2021-01-13T17:20:28.139535
| 2016-12-21T15:14:16
| 2016-12-21T15:14:16
| 77,066,477
| 0
| 0
|
NOASSERTION
| 2019-05-11T23:58:31
| 2016-12-21T16:09:34
|
C++
|
UTF-8
|
C++
| false
| false
| 5,839
|
cc
|
// Copyright 2016 the V8 project 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 "src/compiler-dispatcher/compiler-dispatcher-tracer.h"
#include "src/isolate.h"
namespace v8 {
namespace internal {
namespace {
double MonotonicallyIncreasingTimeInMs() {
return V8::GetCurrentPlatform()->MonotonicallyIncreasingTime() *
static_cast<double>(base::Time::kMillisecondsPerSecond);
}
const double kEstimatedRuntimeWithoutData = 1.0;
} // namespace
CompilerDispatcherTracer::Scope::Scope(CompilerDispatcherTracer* tracer,
ScopeID scope_id, size_t num)
: tracer_(tracer), scope_id_(scope_id), num_(num) {
start_time_ = MonotonicallyIncreasingTimeInMs();
// TODO(cbruni): remove once we fully moved to a trace-based system.
if (V8_UNLIKELY(FLAG_runtime_stats)) {
RuntimeCallStats::Enter(tracer_->runtime_call_stats_, &timer_,
&RuntimeCallStats::CompilerDispatcher);
}
}
CompilerDispatcherTracer::Scope::~Scope() {
double elapsed = MonotonicallyIncreasingTimeInMs() - start_time_;
switch (scope_id_) {
case ScopeID::kPrepareToParse:
tracer_->RecordPrepareToParse(elapsed);
break;
case ScopeID::kParse:
tracer_->RecordParse(elapsed, num_);
break;
case ScopeID::kFinalizeParsing:
tracer_->RecordFinalizeParsing(elapsed);
break;
case ScopeID::kPrepareToCompile:
tracer_->RecordPrepareToCompile(elapsed);
break;
case ScopeID::kCompile:
tracer_->RecordCompile(elapsed, num_);
break;
case ScopeID::kFinalizeCompiling:
tracer_->RecordFinalizeCompiling(elapsed);
break;
}
// TODO(cbruni): remove once we fully moved to a trace-based system.
if (V8_UNLIKELY(FLAG_runtime_stats)) {
RuntimeCallStats::Leave(tracer_->runtime_call_stats_, &timer_);
}
}
// static
const char* CompilerDispatcherTracer::Scope::Name(ScopeID scope_id) {
switch (scope_id) {
case ScopeID::kPrepareToParse:
return "V8.BackgroundCompile_PrepareToParse";
case ScopeID::kParse:
return "V8.BackgroundCompile_Parse";
case ScopeID::kFinalizeParsing:
return "V8.BackgroundCompile_FinalizeParsing";
case ScopeID::kPrepareToCompile:
return "V8.BackgroundCompile_PrepareToCompile";
case ScopeID::kCompile:
return "V8.BackgroundCompile_Compile";
case ScopeID::kFinalizeCompiling:
return "V8.BackgroundCompile_FinalizeCompiling";
}
UNREACHABLE();
return nullptr;
}
CompilerDispatcherTracer::CompilerDispatcherTracer(Isolate* isolate)
: runtime_call_stats_(nullptr) {
// isolate might be nullptr during unittests.
if (isolate) {
runtime_call_stats_ = isolate->counters()->runtime_call_stats();
}
}
CompilerDispatcherTracer::~CompilerDispatcherTracer() {}
void CompilerDispatcherTracer::RecordPrepareToParse(double duration_ms) {
base::LockGuard<base::Mutex> lock(&mutex_);
prepare_parse_events_.Push(duration_ms);
}
void CompilerDispatcherTracer::RecordParse(double duration_ms,
size_t source_length) {
base::LockGuard<base::Mutex> lock(&mutex_);
parse_events_.Push(std::make_pair(source_length, duration_ms));
}
void CompilerDispatcherTracer::RecordFinalizeParsing(double duration_ms) {
base::LockGuard<base::Mutex> lock(&mutex_);
finalize_parsing_events_.Push(duration_ms);
}
void CompilerDispatcherTracer::RecordPrepareToCompile(double duration_ms) {
base::LockGuard<base::Mutex> lock(&mutex_);
prepare_compile_events_.Push(duration_ms);
}
void CompilerDispatcherTracer::RecordCompile(double duration_ms,
size_t ast_size_in_bytes) {
base::LockGuard<base::Mutex> lock(&mutex_);
compile_events_.Push(std::make_pair(ast_size_in_bytes, duration_ms));
}
void CompilerDispatcherTracer::RecordFinalizeCompiling(double duration_ms) {
base::LockGuard<base::Mutex> lock(&mutex_);
finalize_compiling_events_.Push(duration_ms);
}
double CompilerDispatcherTracer::EstimatePrepareToParseInMs() const {
base::LockGuard<base::Mutex> lock(&mutex_);
return Average(prepare_parse_events_);
}
double CompilerDispatcherTracer::EstimateParseInMs(size_t source_length) const {
base::LockGuard<base::Mutex> lock(&mutex_);
return Estimate(parse_events_, source_length);
}
double CompilerDispatcherTracer::EstimateFinalizeParsingInMs() const {
base::LockGuard<base::Mutex> lock(&mutex_);
return Average(finalize_parsing_events_);
}
double CompilerDispatcherTracer::EstimatePrepareToCompileInMs() const {
base::LockGuard<base::Mutex> lock(&mutex_);
return Average(prepare_compile_events_);
}
double CompilerDispatcherTracer::EstimateCompileInMs(
size_t ast_size_in_bytes) const {
base::LockGuard<base::Mutex> lock(&mutex_);
return Estimate(compile_events_, ast_size_in_bytes);
}
double CompilerDispatcherTracer::EstimateFinalizeCompilingInMs() const {
base::LockGuard<base::Mutex> lock(&mutex_);
return Average(finalize_compiling_events_);
}
double CompilerDispatcherTracer::Average(
const base::RingBuffer<double>& buffer) {
if (buffer.Count() == 0) return 0.0;
double sum = buffer.Sum([](double a, double b) { return a + b; }, 0.0);
return sum / buffer.Count();
}
double CompilerDispatcherTracer::Estimate(
const base::RingBuffer<std::pair<size_t, double>>& buffer, size_t num) {
if (buffer.Count() == 0) return kEstimatedRuntimeWithoutData;
std::pair<size_t, double> sum = buffer.Sum(
[](std::pair<size_t, double> a, std::pair<size_t, double> b) {
return std::make_pair(a.first + b.first, a.second + b.second);
},
std::make_pair(0, 0.0));
return num * (sum.second / sum.first);
}
} // namespace internal
} // namespace v8
|
[
"commit-bot@chromium.org"
] |
commit-bot@chromium.org
|
75bb1245109903d7be32f99b6fced8784a872a7f
|
2f4ecef9bb43a9f8468ddd08842124fb64aa7035
|
/Source/Engine/Engine/Effect/InputLayout.h
|
507f7a8926d7000f81910ac90d3ffbd09a6433dc
|
[] |
no_license
|
sandcastle-studios/GameEngine
|
f745849a087b488d1302666190679253daa3ea9b
|
4feee60bfe7ab414346e5453cf593b521ae6e605
|
refs/heads/master
| 2020-02-26T15:32:50.033865
| 2016-10-01T18:49:11
| 2016-10-01T18:49:11
| 68,903,862
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 578
|
h
|
#pragma once
#include <d3d11.h>
namespace ENGINE_NAMESPACE
{
class InputLayout
{
public:
InputLayout();
~InputLayout();
void Add(const char *aSemanticName, const int aSemanticIndex, const DXGI_FORMAT aFormat, int aInputSlot = 0);
void AddPerInstance(const char *aSemanticName, const int aSemanticIndex, const DXGI_FORMAT aFormat, int aInputSlot = 0);
const D3D11_INPUT_ELEMENT_DESC *GetLayoutLocation() const;
int GetLayoutCount() const;
private:
std::vector<D3D11_INPUT_ELEMENT_DESC> myDescription;
int myPerVertexCount;
int myPerInstanceCount;
};
}
|
[
"erik.paldanius@gmail.com"
] |
erik.paldanius@gmail.com
|
d450c8b91d82754dcfe7b642a439caa005103811
|
01915a26db8724fe10fb35a5e0fa2cffb6c00fea
|
/Account.h
|
2f729567362556efed71a864f64a03b74c423e35
|
[] |
no_license
|
tgomez22/NetWorthCalculator
|
abcfb3440b7a6e1ddbcc9445586f9a7b7238af75
|
93667e44d9621f7a54861197dee6aef5e3c2bb21
|
refs/heads/master
| 2022-06-20T12:48:40.800060
| 2020-05-08T21:17:27
| 2020-05-08T21:17:27
| 261,633,985
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 436
|
h
|
//
// Created by magos-gomez on 5/5/20.
//
#ifndef NETWORTHCALCULATOR_ACCOUNT_H
#define NETWORTHCALCULATOR_ACCOUNT_H
#include "Address.h"
#include "Node.h"
class Account : public Address {
public:
Account();
Account(const Account & toCopy);
~Account();
private:
float netWorth;
float assetWorth;
float liability;
Node * root;
};
#endif //NETWORTHCALCULATOR_ACCOUNT_H
|
[
"gomez22@pdx.edu"
] |
gomez22@pdx.edu
|
9f7d49338544d3d3c7505f9845614d5d48053fa5
|
45364deefe009a0df9e745a4dd4b680dcedea42b
|
/SDK/FSD_Renderer_structs.hpp
|
1c7c09efb260d770ede7f513dec242930c456d72
|
[] |
no_license
|
RussellJerome/DeepRockGalacticSDK
|
5ae9b59c7324f2a97035f28545f92773526ed99e
|
f13d9d8879a645c3de89ad7dc6756f4a7a94607e
|
refs/heads/master
| 2022-11-26T17:55:08.185666
| 2020-07-26T21:39:30
| 2020-07-26T21:39:30
| 277,796,048
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,381
|
hpp
|
#pragma once
// DeepRockGalactic SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "FSD_Basic.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Script Structs
//---------------------------------------------------------------------------
// ScriptStruct Renderer.LightPropagationVolumeSettings
// 0x0040
struct FLightPropagationVolumeSettings
{
unsigned char bOverride_LPVIntensity : 1; // 0x0000(0x0001) (Edit, BlueprintVisible)
unsigned char bOverride_LPVDirectionalOcclusionIntensity : 1; // 0x0000(0x0001) (Edit, BlueprintVisible)
unsigned char bOverride_LPVDirectionalOcclusionRadius : 1; // 0x0000(0x0001) (Edit, BlueprintVisible)
unsigned char bOverride_LPVDiffuseOcclusionExponent : 1; // 0x0000(0x0001) (Edit, BlueprintVisible)
unsigned char bOverride_LPVSpecularOcclusionExponent : 1; // 0x0000(0x0001) (Edit, BlueprintVisible)
unsigned char bOverride_LPVDiffuseOcclusionIntensity : 1; // 0x0000(0x0001) (Edit, BlueprintVisible)
unsigned char bOverride_LPVSpecularOcclusionIntensity : 1; // 0x0000(0x0001) (Edit, BlueprintVisible)
unsigned char bOverride_LPVSize : 1; // 0x0000(0x0001) (Edit, BlueprintVisible)
unsigned char bOverride_LPVSecondaryOcclusionIntensity : 1; // 0x0001(0x0001) (Edit, BlueprintVisible)
unsigned char bOverride_LPVSecondaryBounceIntensity : 1; // 0x0001(0x0001) (Edit, BlueprintVisible)
unsigned char bOverride_LPVGeometryVolumeBias : 1; // 0x0001(0x0001) (Edit, BlueprintVisible)
unsigned char bOverride_LPVVplInjectionBias : 1; // 0x0001(0x0001) (Edit, BlueprintVisible)
unsigned char bOverride_LPVEmissiveInjectionIntensity : 1; // 0x0001(0x0001) (Edit, BlueprintVisible)
unsigned char UnknownData00[0x2]; // 0x0002(0x0002) MISSED OFFSET
float LPVIntensity; // 0x0004(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData)
float LPVVplInjectionBias; // 0x0008(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData)
float LPVSize; // 0x000C(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData)
float LPVSecondaryOcclusionIntensity; // 0x0010(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData)
float LPVSecondaryBounceIntensity; // 0x0014(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData)
float LPVGeometryVolumeBias; // 0x0018(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData)
float LPVEmissiveInjectionIntensity; // 0x001C(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData)
float LPVDirectionalOcclusionIntensity; // 0x0020(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData)
float LPVDirectionalOcclusionRadius; // 0x0024(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData)
float LPVDiffuseOcclusionExponent; // 0x0028(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData)
float LPVSpecularOcclusionExponent; // 0x002C(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData)
float LPVDiffuseOcclusionIntensity; // 0x0030(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData)
float LPVSpecularOcclusionIntensity; // 0x0034(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData)
float LPVFadeRange; // 0x0038(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData)
float LPVDirectionalOcclusionFadeRange; // 0x003C(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData)
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
|
[
"darkmanvoo@gmail.com"
] |
darkmanvoo@gmail.com
|
62ced8f4eaebc5745424dd8a3238bc93566d22a4
|
b120311dca73589b1988fb24c1e91cc2101a6b56
|
/modules/ui/include/lagrange/ui/AABB.h
|
ef03803762ec899f8c6d23aa3fc75c00be17b4b4
|
[
"Apache-2.0",
"MIT",
"LicenseRef-scancode-public-domain",
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
quadmotor/lagrange
|
d4b176e97f6acc044685f2b15e77453a09ab3489
|
f56e7d5b27dbfe4ef6f208f6b3ad458dda928a8a
|
refs/heads/main
| 2023-03-14T07:43:08.731648
| 2021-03-02T21:39:23
| 2021-03-02T21:39:23
| 344,888,062
| 1
| 0
|
Apache-2.0
| 2021-03-05T17:41:25
| 2021-03-05T17:41:24
| null |
UTF-8
|
C++
| false
| false
| 2,004
|
h
|
/*
* Copyright 2020 Adobe. All rights reserved.
* This file is licensed 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 REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
#pragma once
#include <lagrange/ui/utils/math.h>
#include <array>
namespace lagrange {
namespace ui {
class Frustum;
class AABB : public Eigen::AlignedBox3f {
public:
using Super = Eigen::AlignedBox3f;
using Super::Super;
AABB() = default;
AABB(Eigen::AlignedBox3f box) : Super(std::move(box)) { }
/// Normalizes point to [0.0f,1.0f]^3 in AABB's bounds
template <typename Derived>
Eigen::Vector3f normalize_point(const Eigen::MatrixBase<Derived> &pt) const
{
const auto d = diagonal();
return Eigen::Vector3f((float(pt.x()) - min().x()) / d.x(),
(float(pt.y()) - min().y()) / d.y(),
(float(pt.z()) - min().z()) / d.z());
}
/// Overload for 2D mesh
template <typename Scalar>
Eigen::Vector3f normalize_point(const Eigen::Matrix<Scalar, 2, 1> &pt) const
{
const auto d = diagonal();
return Eigen::Vector3f(
(float(pt.x()) - min().x()) / d.x(), (float(pt.y()) - min().y()) / d.y(), 0);
}
Eigen::Affine3f get_cube_transform() const;
AABB transformed(const Eigen::Affine3f &transform) const;
bool intersects_ray(Eigen::Vector3f origin,
Eigen::Vector3f dir,
float *tmin_out = nullptr,
float *tmax_out = nullptr) const;
bool intersects_frustum(const Frustum &f) const;
};
} // namespace ui
} // namespace lagrange
|
[
"jedumas@adobe.com"
] |
jedumas@adobe.com
|
b15b699f75504ad3cf57d6eb2a38e8eb64b9dea2
|
f7fed2102bfcd147a8f3a163b891e88851821085
|
/subgraphs256/subgraphs.cpp
|
d32dfb1f883b3502df21323f6f9d2121658da41c
|
[
"MIT"
] |
permissive
|
RenoirTan/dunjudge.me
|
532a139da6a1100303e44ea415bb9201f7562d4d
|
0098cfd45609e4ac50aac0b2c943b1afb6aff818
|
refs/heads/main
| 2023-05-13T13:57:11.794367
| 2021-06-03T15:26:02
| 2021-06-03T15:26:02
| 373,551,173
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,102
|
cpp
|
#include <bits/stdc++.h>
using namespace std;
int subgraphs(vector<vector<int>> &matrix, int nodes)
{
int total = 0;
if (nodes <= 1)
return nodes;
bool visited[nodes];
fill(visited, visited+nodes, false);
for (int node = 0; node < nodes; node++) {
if (!visited[node]) {
total++;
queue<int> unvisited;
unvisited.emplace(node);
while (!unvisited.empty()) {
int current = unvisited.front(); unvisited.pop();
visited[current] = true;
for (auto &adjacent: matrix[current]) {
if (!visited[adjacent]) {
unvisited.emplace(adjacent);
}
}
}
}
}
return total;
}
int main()
{
int nodes, edges;
cin >> nodes >> edges;
vector<vector<int>> matrix(nodes);
for (int i = 0; i < edges; i++) {
int a, b;
cin >> a >> b;
matrix.at(a).push_back(b);
matrix.at(b).push_back(a);
}
cout << subgraphs(matrix, nodes);
return 0;
}
|
[
"renoirtan2005@gmail.com"
] |
renoirtan2005@gmail.com
|
985087599d3de38086761f364c0b2a875f79cc33
|
6aba3d9e4a5401b5387548475d0ca74794e73c69
|
/GROMACS/nonbonded_benchmark/gromacs_source_code/src/gromacs/trajectoryanalysis/tests/trajectory.cpp
|
2124ebe165e608450f5ea0010a37aff064540b8f
|
[
"LicenseRef-scancode-free-unknown",
"MIT",
"LGPL-2.1-only",
"LGPL-2.0-or-later",
"LicenseRef-scancode-sun-rpc",
"LGPL-2.1-or-later",
"SunPro",
"GPL-1.0-or-later",
"BSD-2-Clause-Views",
"GPL-2.0-only",
"BSL-1.0",
"Apache-2.0",
"BSD-3-Clause",
"Zlib",
"BSD-2-Clause"
] |
permissive
|
rvhonorato/bioexcel-exascale-co-design-benchmarks
|
a47b2608ad796329247a671ca95c7b487be213ca
|
41bfd28e64a65f7d08a4195bdfd0024646664351
|
refs/heads/master
| 2020-06-18T05:56:43.151669
| 2019-07-10T15:17:45
| 2019-07-10T15:17:45
| 196,187,655
| 0
| 0
|
MIT
| 2019-07-10T10:50:25
| 2019-07-10T10:50:24
| null |
UTF-8
|
C++
| false
| false
| 4,107
|
cpp
|
/*
* This file is part of the GROMACS molecular simulation package.
*
* Copyright (c) 2016, by the GROMACS development team, led by
* Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
* and including many others, as listed in the AUTHORS file in the
* top-level source directory and at http://www.gromacs.org.
*
* GROMACS is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* GROMACS 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with GROMACS; if not, see
* http://www.gnu.org/licenses, or write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* If you want to redistribute modifications to GROMACS, please
* consider that scientific software is very special. Version
* control is crucial - bugs must be traceable. We will be happy to
* consider code for inclusion in the official distribution, but
* derived work must not be called official GROMACS. Details are found
* in the README & COPYING files - if they are missing, get the
* official version at http://www.gromacs.org.
*
* To help us fund GROMACS development, we humbly ask that you cite
* the research papers on the package. Check out http://www.gromacs.org.
*/
/*! \internal \file
* \brief
* Tests for functionality of the "trajectory" trajectory analysis module.
*
* Line coverage for the module code is good, but due to missing input data
* with velocities or forces, the output of these quantities is not really
* tested. But the values are only computed in the selection engine, and
* at least the low-level computation is tested there.
*
* \author Teemu Murtola <teemu.murtola@gmail.com>
* \ingroup module_trajectoryanalysis
*/
#include "gmxpre.h"
#include "gromacs/trajectoryanalysis/modules/trajectory.h"
#include <gtest/gtest.h>
#include "testutils/cmdlinetest.h"
#include "testutils/textblockmatchers.h"
#include "moduletest.h"
namespace
{
using gmx::test::CommandLine;
using gmx::test::NoTextMatch;
/********************************************************************
* Tests for gmx::analysismodules::Trajectory.
*/
//! Test fixture for the select analysis module.
typedef gmx::test::TrajectoryAnalysisModuleTestFixture<gmx::analysismodules::TrajectoryInfo>
TrajectoryModuleTest;
TEST_F(TrajectoryModuleTest, BasicTest)
{
const char *const cmdline[] = {
"trajectory",
"-select", "resnr 1", "resnr 3"
};
setTopology("simple.gro");
setTrajectory("simple.gro");
setOutputFile("-ox", "coord.xvg", NoTextMatch());
includeDataset("x");
runTest(CommandLine(cmdline));
}
TEST_F(TrajectoryModuleTest, PlotsXOnly)
{
const char *const cmdline[] = {
"trajectory",
"-select", "resnr 1", "resnr 3",
"-x"
};
setTopology("simple.gro");
setTrajectory("simple.gro");
setOutputFile("-ox", "coord.xvg", NoTextMatch());
includeDataset("x");
runTest(CommandLine(cmdline));
}
TEST_F(TrajectoryModuleTest, HandlesNoVelocities)
{
const char *const cmdline[] = {
"trajectory",
"-select", "resnr 1", "resnr 3",
};
setTopology("simple.gro");
setTrajectory("simple.gro");
setOutputFile("-ov", "vel.xvg", NoTextMatch());
includeDataset("v");
runTest(CommandLine(cmdline));
}
TEST_F(TrajectoryModuleTest, HandlesNoForces)
{
const char *const cmdline[] = {
"trajectory",
"-select", "resnr 1", "resnr 3",
};
setTopology("simple.gro");
setTrajectory("simple.gro");
setOutputFile("-of", "force.xvg", NoTextMatch());
includeDataset("f");
runTest(CommandLine(cmdline));
}
} // namespace
|
[
"mark.j.abraham@gmail.com"
] |
mark.j.abraham@gmail.com
|
0da3be5d6027061fed84c5c6c5c10cf47a7c6958
|
19b161d59f915f2723675aed0e9e6e67f20b786e
|
/PDFNet/PDFNet.framework/C_CPP_Headers/Impl/Screen.inl
|
c65aa0401a1091afedd0d8d834685d6c9398effa
|
[] |
no_license
|
torhector2/test-lfs
|
35aebfc5e06de13443f62bd80d26e6e5c7a8bc78
|
1a6026eb263c9263619c6c7986038ff9a7d63602
|
refs/heads/master
| 2020-09-08T00:51:27.406836
| 2019-11-11T11:35:33
| 2019-11-11T11:35:33
| 220,962,012
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 129
|
inl
|
version https://git-lfs.github.com/spec/v1
oid sha256:c04391cce3cf4fa434a48f692f4ab371f67527b563961d0f37f3ea1bb5a0cafd
size 5762
|
[
"torhector2@gmail.com"
] |
torhector2@gmail.com
|
634883f448825e6e729858a7033f586c3b86be4c
|
3bfe741bca4ccb928ab03958fef677662b642a32
|
/include/RE/BSAudio/BSSoundHandle.h
|
f307eec8e006c97b4a4e16d8f69444e1df33e3f2
|
[
"MIT"
] |
permissive
|
Slaynot/CommonLibSSE
|
9865fc7d7e3167dd72193ef3828ac7db54858cc5
|
6b3fd268327fb630139d2a183cbd5aa5669cfc5f
|
refs/heads/master
| 2023-08-19T00:32:11.523120
| 2021-10-05T21:02:33
| 2021-10-05T21:02:33
| 293,022,195
| 0
| 1
|
MIT
| 2021-10-05T19:52:10
| 2020-09-05T07:02:12
|
C++
|
UTF-8
|
C++
| false
| false
| 890
|
h
|
#pragma once
#include "RE/NetImmerse/NiPoint3.h"
namespace RE
{
class NiAVObject;
struct BSSoundHandle
{
public:
enum : std::uint32_t
{
kInvalidID = static_cast<std::uint32_t>(-1)
};
enum class AssumedState
{
kInitialized = 0,
kPlaying = 1,
kStopped = 2,
kPaused = 3
};
enum class LoopType
{
kNone = 0,
kWholeFile = 1,
kEnvFast = 2,
kEnvSlow = 3
};
BSSoundHandle();
~BSSoundHandle() = default;
bool IsValid() const;
bool SetPosition(NiPoint3 a_pos);
void SetObjectToFollow(NiAVObject* a_node);
bool Stop();
bool Play();
// members
std::uint32_t soundID; // 00
bool assumeSuccess; // 04
std::uint8_t pad05; // 05
std::uint16_t pad06; // 06
stl::enumeration<AssumedState, std::uint32_t> state; // 08
};
static_assert(sizeof(BSSoundHandle) == 0xC);
}
|
[
"ryan__mckenzie@hotmail.com"
] |
ryan__mckenzie@hotmail.com
|
9db3817aa78bb5c89d4b6f6bc6edca398ce91206
|
792613dcd7b53b4e3d40bfdebcef784dbe10b84b
|
/Source/CProjectDemo/Private/CProjectDemoGameMode.cpp
|
a9a0f6f82e834887b4f71f0368324270b26bea53
|
[] |
no_license
|
Inchapter/UE4-Tutorial
|
e679c638bf2800e6c69d9aba795617edcb944c5d
|
4b5b5373e4fdb30fbe7ff5c2893fbd97f456f145
|
refs/heads/master
| 2020-06-09T14:03:45.528115
| 2019-06-25T06:12:53
| 2019-06-25T06:12:53
| 193,448,858
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,219
|
cpp
|
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#include "CProjectDemoGameMode.h"
#include "CProjectDemoCharacter.h"
#include "UObject/ConstructorHelpers.h"
#include "GameFramework/HUD.h"
#include "Blueprint/UserWidget.h"
ACProjectDemoGameMode::ACProjectDemoGameMode()
{
// set default pawn class to our Blueprinted character
static ConstructorHelpers::FClassFinder<APawn> PlayerPawnBPClass(TEXT("/Game/ThirdPersonCPP/Blueprints/ThirdPersonCharacter"));
if (PlayerPawnBPClass.Class != NULL)
{
DefaultPawnClass = PlayerPawnBPClass.Class;
}
static ConstructorHelpers::FClassFinder<AHUD> PlayerHUDBPClass(TEXT("/Game/CrossHUD"));
if (PlayerHUDBPClass.Class != NULL)
{
HUDClass = PlayerHUDBPClass.Class;
}
}
void ACProjectDemoGameMode::BeginPlay()
{
Super::BeginPlay();
ChangeMenuWidget(StartingWidgetClass);
}
void ACProjectDemoGameMode::ChangeMenuWidget(TSubclassOf<UUserWidget> NewWidgetClass)
{
if (CurrentWidget != nullptr)
{
CurrentWidget->RemoveFromViewport();
CurrentWidget = nullptr;
}
if (NewWidgetClass != nullptr)
{
CurrentWidget = CreateWidget<UUserWidget>(GetWorld(), NewWidgetClass);
if (CurrentWidget != nullptr)
{
CurrentWidget->AddToViewport();
}
}
}
|
[
"843452214@qq.com"
] |
843452214@qq.com
|
1b8ebf09227cb813e0c29f3b951c53898e627c39
|
eac07e0f1c5fcb8688b6dd27aea9e84f6877b492
|
/studentsrequestdialog.h
|
09b1ffdea37bdb27cb6a80ebaf8f309225115333
|
[] |
no_license
|
AliRn76/Student-Portal
|
cde6f84faf17d55713b52776291154e737fa943a
|
4bad9cdb565dc79f29587e8696149c88a4500adb
|
refs/heads/master
| 2022-04-21T22:48:02.264695
| 2020-04-23T21:46:11
| 2020-04-23T21:46:11
| 187,212,360
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 377
|
h
|
#ifndef STUDENTSREQUESTDIALOG_H
#define STUDENTSREQUESTDIALOG_H
#include <QDialog>
namespace Ui {
class StudentsRequestDialog;
}
class StudentsRequestDialog : public QDialog
{
Q_OBJECT
public:
explicit StudentsRequestDialog(QWidget *parent = nullptr);
~StudentsRequestDialog();
private:
Ui::StudentsRequestDialog *ui;
};
#endif // STUDENTSREQUESTDIALOG_H
|
[
"alirn76@yahoo.com"
] |
alirn76@yahoo.com
|
8b90e5694ae242cd93b44a3b35ed62b8886fd7e1
|
cb0db151590f1dcf2fcc0d4931d27ed914f1fe7d
|
/plugins/chain_plugin/include/oac/chain_plugin/chain_plugin.hpp
|
f35957de3cfddd475a6b98573ec4298d85bb8452
|
[
"MIT"
] |
permissive
|
ajunlonglive/openaichain
|
ea1302216705b9f136f3181fc948b250306d866b
|
14f144afa1bb4db5e4bf75a5ad836f4e408cfc95
|
refs/heads/master
| 2023-03-18T11:33:48.928739
| 2018-06-13T09:41:29
| 2018-06-13T09:41:29
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 15,044
|
hpp
|
/**
* @file
* @copyright defined in oac/LICENSE.txt
*/
#pragma once
#include <appbase/application.hpp>
#include <oac/chain/asset.hpp>
#include <oac/chain/authority.hpp>
#include <oac/chain/account_object.hpp>
#include <oac/chain/block.hpp>
#include <oac/chain/controller.hpp>
#include <oac/chain/contract_table_objects.hpp>
#include <oac/chain/resource_limits.hpp>
#include <oac/chain/transaction.hpp>
#include <oac/chain/abi_serializer.hpp>
#include <oac/chain/plugin_interface.hpp>
#include <boost/container/flat_set.hpp>
#include <fc/static_variant.hpp>
namespace fc { class variant; }
namespace oac {
using chain::controller;
using std::unique_ptr;
using namespace appbase;
using chain::name;
using chain::uint128_t;
using chain::public_key_type;
using fc::optional;
using boost::container::flat_set;
using chain::asset;
using chain::authority;
using chain::account_name;
using chain::abi_def;
using chain::abi_serializer;
namespace chain_apis {
struct empty{};
struct permission {
name perm_name;
name parent;
authority required_auth;
};
template<typename>
struct resolver_factory;
template<typename Type>
Type convert_to_type(const string& str, const string& desc) {
try {
return fc::variant(str).as<Type>();
} FC_RETHROW_EXCEPTIONS(warn, "Could not convert ${desc} string '${str}' to key type.", ("desc", desc)("str",str) )
}
template<>
uint64_t convert_to_type(const string& str, const string& desc);
class read_only {
const controller& db;
public:
static const string KEYi64;
read_only(const controller& db)
: db(db) {}
using get_info_params = empty;
struct get_info_results {
string server_version;
chain::chain_id_type chain_id;
uint32_t head_block_num = 0;
uint32_t last_irreversible_block_num = 0;
chain::block_id_type last_irreversible_block_id;
chain::block_id_type head_block_id;
fc::time_point_sec head_block_time;
account_name head_block_producer;
uint64_t virtual_block_cpu_limit = 0;
uint64_t virtual_block_net_limit = 0;
uint64_t block_cpu_limit = 0;
uint64_t block_net_limit = 0;
//string recent_slots;
//double participation_rate = 0;
};
get_info_results get_info(const get_info_params&) const;
struct producer_info {
name producer_name;
};
using account_resource_limit = chain::resource_limits::account_resource_limit;
struct get_account_results {
name account_name;
bool privileged = false;
fc::time_point last_code_update;
fc::time_point created;
int64_t ram_quota = 0;
int64_t net_weight = 0;
int64_t cpu_weight = 0;
account_resource_limit net_limit;
account_resource_limit cpu_limit;
int64_t ram_usage = 0;
vector<permission> permissions;
fc::variant total_resources;
fc::variant self_delegated_bandwidth;
fc::variant voter_info;
};
struct get_account_params {
name account_name;
};
get_account_results get_account( const get_account_params& params )const;
struct get_code_results {
name account_name;
string wast;
string wasm;
fc::sha256 code_hash;
optional<abi_def> abi;
};
struct get_code_params {
name account_name;
bool code_as_wasm = false;
};
struct get_abi_results {
name account_name;
optional<abi_def> abi;
};
struct get_abi_params {
name account_name;
};
get_code_results get_code( const get_code_params& params )const;
get_abi_results get_abi( const get_abi_params& params )const;
struct abi_json_to_bin_params {
name code;
name action;
fc::variant args;
};
struct abi_json_to_bin_result {
vector<char> binargs;
};
abi_json_to_bin_result abi_json_to_bin( const abi_json_to_bin_params& params )const;
struct abi_bin_to_json_params {
name code;
name action;
vector<char> binargs;
};
struct abi_bin_to_json_result {
fc::variant args;
};
abi_bin_to_json_result abi_bin_to_json( const abi_bin_to_json_params& params )const;
struct get_required_keys_params {
fc::variant transaction;
flat_set<public_key_type> available_keys;
};
struct get_required_keys_result {
flat_set<public_key_type> required_keys;
};
get_required_keys_result get_required_keys( const get_required_keys_params& params)const;
struct get_block_params {
string block_num_or_id;
};
fc::variant get_block(const get_block_params& params) const;
struct get_block_header_state_params {
string block_num_or_id;
};
fc::variant get_block_header_state(const get_block_header_state_params& params) const;
struct get_table_rows_params {
bool json = false;
name code;
string scope;
name table;
// string table_type;
string table_key;
string lower_bound;
string upper_bound;
uint32_t limit = 10;
};
struct get_table_rows_result {
vector<fc::variant> rows; ///< one row per item, either encoded as hex String or JSON object
bool more = false; ///< true if last element in data is not the end and sizeof data() < limit
};
get_table_rows_result get_table_rows( const get_table_rows_params& params )const;
struct get_currency_balance_params {
name code;
name account;
optional<string> symbol;
};
vector<asset> get_currency_balance( const get_currency_balance_params& params )const;
struct get_currency_stats_params {
name code;
string symbol;
};
struct get_currency_stats_result {
asset supply;
asset max_supply;
account_name issuer;
};
fc::variant get_currency_stats( const get_currency_stats_params& params )const;
struct get_producers_params {
bool json = false;
string lower_bound;
uint32_t limit = 50;
};
struct get_producers_result {
vector<fc::variant> rows; ///< one row per item, either encoded as hex string or JSON object
double total_producer_vote_weight;
string more; ///< fill lower_bound with this value to fetch more rows
};
get_producers_result get_producers( const get_producers_params& params )const;
static void copy_inline_row(const chain::key_value_object& obj, vector<char>& data) {
data.resize( obj.value.size() );
memcpy( data.data(), obj.value.data(), obj.value.size() );
}
template<typename IndexType, typename Scope, typename Function>
void walk_table(const name& code, const name& scope, const name& table, Function f) const
{
const auto& d = db.db();
const auto* t_id = d.find<chain::table_id_object, chain::by_code_scope_table>(boost::make_tuple(code, scope, table));
if (t_id != nullptr) {
const auto &idx = d.get_index<IndexType, Scope>();
decltype(t_id->id) next_tid(t_id->id._id + 1);
auto lower = idx.lower_bound(boost::make_tuple(t_id->id));
auto upper = idx.lower_bound(boost::make_tuple(next_tid));
for (auto itr = lower; itr != upper; ++itr) {
if (!f(*itr)) {
break;
}
}
}
}
template <typename IndexType, typename Scope>
read_only::get_table_rows_result get_table_rows_ex( const read_only::get_table_rows_params& p, const abi_def& abi )const {
read_only::get_table_rows_result result;
const auto& d = db.db();
uint64_t scope = convert_to_type<uint64_t>(p.scope, "scope");
abi_serializer abis;
abis.set_abi(abi);
const auto* t_id = d.find<chain::table_id_object, chain::by_code_scope_table>(boost::make_tuple(p.code, scope, p.table));
if (t_id != nullptr) {
const auto &idx = d.get_index<IndexType, Scope>();
decltype(t_id->id) next_tid(t_id->id._id + 1);
auto lower = idx.lower_bound(boost::make_tuple(t_id->id));
auto upper = idx.lower_bound(boost::make_tuple(next_tid));
if (p.lower_bound.size()) {
auto lv = convert_to_type<typename IndexType::value_type::key_type>(p.lower_bound, "lower_bound");
lower = idx.lower_bound(boost::make_tuple(t_id->id, lv));
}
if (p.upper_bound.size()) {
auto uv = convert_to_type<typename IndexType::value_type::key_type>(p.upper_bound, "upper_bound");
upper = idx.lower_bound(boost::make_tuple(t_id->id, uv));
}
vector<char> data;
auto end = fc::time_point::now() + fc::microseconds(1000 * 10); /// 10ms max time
unsigned int count = 0;
auto itr = lower;
for (itr = lower; itr != upper; ++itr) {
copy_inline_row(*itr, data);
if (p.json) {
result.rows.emplace_back(abis.binary_to_variant(abis.get_table_type(p.table), data));
} else {
result.rows.emplace_back(fc::variant(data));
}
if (++count == p.limit || fc::time_point::now() > end) {
break;
}
}
if (itr != upper) {
result.more = true;
}
}
return result;
}
friend struct resolver_factory<read_only>;
};
class read_write {
controller& db;
public:
read_write(controller& db) : db(db) {}
using push_block_params = chain::signed_block;
using push_block_results = empty;
void push_block(const push_block_params& params, chain::plugin_interface::next_function<push_block_results> next);
using push_transaction_params = fc::variant_object;
struct push_transaction_results {
chain::transaction_id_type transaction_id;
fc::variant processed;
};
void push_transaction(const push_transaction_params& params, chain::plugin_interface::next_function<push_transaction_results> next);
using push_transactions_params = vector<push_transaction_params>;
using push_transactions_results = vector<push_transaction_results>;
void push_transactions(const push_transactions_params& params, chain::plugin_interface::next_function<push_transactions_results> next);
friend resolver_factory<read_write>;
};
} // namespace chain_apis
class chain_plugin : public plugin<chain_plugin> {
public:
APPBASE_PLUGIN_REQUIRES()
chain_plugin();
virtual ~chain_plugin();
virtual void set_program_options(options_description& cli, options_description& cfg) override;
void plugin_initialize(const variables_map& options);
void plugin_startup();
void plugin_shutdown();
chain_apis::read_only get_read_only_api() const { return chain_apis::read_only(chain()); }
chain_apis::read_write get_read_write_api();
void accept_block( const chain::signed_block_ptr& block );
void accept_transaction(const chain::packed_transaction& trx, chain::plugin_interface::next_function<chain::transaction_trace_ptr> next);
bool block_is_on_preferred_chain(const chain::block_id_type& block_id);
bool recover_reversible_blocks( const fc::path& db_dir,
uint32_t cache_size,
optional<fc::path> new_db_dir = optional<fc::path>(),
uint32_t truncate_at_block = 0
)const;
// Only call this in plugin_initialize() to modify controller constructor configuration
controller::config& chain_config();
// Only call this after plugin_startup()!
controller& chain();
// Only call this after plugin_startup()!
const controller& chain() const;
chain::chain_id_type get_chain_id() const;
private:
unique_ptr<class chain_plugin_impl> my;
};
}
FC_REFLECT( oac::chain_apis::permission, (perm_name)(parent)(required_auth) )
FC_REFLECT(oac::chain_apis::empty, )
FC_REFLECT(oac::chain_apis::read_only::get_info_results,
(server_version)(chain_id)(head_block_num)(last_irreversible_block_num)(last_irreversible_block_id)(head_block_id)(head_block_time)(head_block_producer)(virtual_block_cpu_limit)(virtual_block_net_limit)(block_cpu_limit)(block_net_limit) )
FC_REFLECT(oac::chain_apis::read_only::get_block_params, (block_num_or_id))
FC_REFLECT(oac::chain_apis::read_only::get_block_header_state_params, (block_num_or_id))
FC_REFLECT( oac::chain_apis::read_write::push_transaction_results, (transaction_id)(processed) )
FC_REFLECT( oac::chain_apis::read_only::get_table_rows_params, (json)(code)(scope)(table)(table_key)(lower_bound)(upper_bound)(limit) )
FC_REFLECT( oac::chain_apis::read_only::get_table_rows_result, (rows)(more) );
FC_REFLECT( oac::chain_apis::read_only::get_currency_balance_params, (code)(account)(symbol));
FC_REFLECT( oac::chain_apis::read_only::get_currency_stats_params, (code)(symbol));
FC_REFLECT( oac::chain_apis::read_only::get_currency_stats_result, (supply)(max_supply)(issuer));
FC_REFLECT( oac::chain_apis::read_only::get_producers_params, (json)(lower_bound)(limit) )
FC_REFLECT( oac::chain_apis::read_only::get_producers_result, (rows)(total_producer_vote_weight)(more) );
FC_REFLECT( oac::chain_apis::read_only::get_account_results, (account_name)(privileged)(last_code_update)(created)(ram_quota)(net_weight)(cpu_weight)(net_limit)(cpu_limit)(ram_usage)(permissions)(total_resources)(self_delegated_bandwidth)(voter_info) )
FC_REFLECT( oac::chain_apis::read_only::get_code_results, (account_name)(code_hash)(wast)(wasm)(abi) )
FC_REFLECT( oac::chain_apis::read_only::get_abi_results, (account_name)(abi) )
FC_REFLECT( oac::chain_apis::read_only::get_account_params, (account_name) )
FC_REFLECT( oac::chain_apis::read_only::get_code_params, (account_name)(code_as_wasm) )
FC_REFLECT( oac::chain_apis::read_only::get_abi_params, (account_name) )
FC_REFLECT( oac::chain_apis::read_only::producer_info, (producer_name) )
FC_REFLECT( oac::chain_apis::read_only::abi_json_to_bin_params, (code)(action)(args) )
FC_REFLECT( oac::chain_apis::read_only::abi_json_to_bin_result, (binargs) )
FC_REFLECT( oac::chain_apis::read_only::abi_bin_to_json_params, (code)(action)(binargs) )
FC_REFLECT( oac::chain_apis::read_only::abi_bin_to_json_result, (args) )
FC_REFLECT( oac::chain_apis::read_only::get_required_keys_params, (transaction)(available_keys) )
FC_REFLECT( oac::chain_apis::read_only::get_required_keys_result, (required_keys) )
|
[
"40119822+openaichain@users.noreply.github.com"
] |
40119822+openaichain@users.noreply.github.com
|
2e2edaea5e02c5dd5067259acdd6d57b8928b39a
|
8c0ce0f8a28e2a738bf6248e010fb9e9be55ad01
|
/PAT-Test/basic/temp.cpp
|
aafb4a194d9d94bf5e88d6749893d9be8ba24937
|
[
"MIT"
] |
permissive
|
niuyi1017/algorithm-demos
|
ff0295a21e22454c8efe43e95fba84c1fd27f33e
|
298ef237a13e3f80a03f7780a3cbd52fb1cdac09
|
refs/heads/master
| 2020-03-29T21:48:37.048323
| 2019-09-08T11:34:23
| 2019-09-08T11:34:23
| 150,388,748
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 161
|
cpp
|
#include<iostream>
using namespace std;
main(int argc, char const *argv[])
{
float x = 3.1415;
x = (int)(x*100+0.5)/100.0;
cout<<x;
return 0;
}
|
[
"1096196462@qq.com"
] |
1096196462@qq.com
|
0bad02d16cdf614cd189a78583eb24645fe5aaed
|
799516a742541b63a43db4f94a89e1e50bc629b0
|
/acm.nyist.net/0048.cpp
|
b8b0ffb3c6fe51980b9268edfdd93f41ebc40f93
|
[] |
no_license
|
webturing/ACM
|
2e940a72d90c0f3f45d1758d8d46c765ac47f689
|
aab803107af653e18ea4f049ac642fefa420acc7
|
refs/heads/master
| 2021-01-23T04:19:09.859541
| 2017-06-12T14:27:13
| 2017-06-12T14:27:13
| 92,923,789
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 424
|
cpp
|
#include <iostream>
#include <iterator>
#include <vector>
#include <algorithm>
#include <set>
using namespace std;
int main() {
set<int> s;
for (int n; cin >> n;) {
s.clear();
for (int t; n-- && cin >> t; s.insert(t));
cout << s.size() << endl;
for (set<int>::iterator it = s.begin(); it != s.end(); ++it)
cout << *it << " ";
cout << endl;
}
return 0;
}
|
[
"zj@ahstu.cc"
] |
zj@ahstu.cc
|
91eafca96c1d65408d9d6da1022d159436716e66
|
668e65ea7c9c1903bcce3e007d2582cc9b456903
|
/Samples/Sample-CriticalSection/Sample-CriticalSection.cpp
|
4def0d38839a4edb06f3a0e9cdb3385ac585f9dd
|
[] |
no_license
|
rusamentiaga/LibAC
|
444aaf337607f2494113e90d2fcddd11e8bc0ded
|
a6b53c32de076c4a59526da4912fcc715a22d9ed
|
refs/heads/master
| 2021-01-01T05:40:06.920682
| 2015-09-28T08:04:50
| 2015-09-28T08:04:50
| 42,655,379
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,317
|
cpp
|
#include "stdafx.h"
#include "../../Src/CriticalSection.h"
#include "../../Src/ScopedCriticalSection.h"
#include "../../Src/Thread.h"
class SharedData
{
protected:
int m_x;
AC::CriticalSection m_cs;
public:
SharedData()
: m_x(0) {}
void Inc()
{
AC::ScopedCriticalSection ScopedCritSec(m_cs);
m_x++;
}
void Dec()
{
AC::ScopedCriticalSection ScopedCritSec(m_cs);
m_x--;
}
int Get()
{
int x;
{
AC::ScopedCriticalSection ScopedCritSec(m_cs);
x = m_x;
}
return x;
}
};
class DataAccessTask : public AC::Runnable
{
private:
DataAccessTask(const DataAccessTask& objectSrc);
void operator=(const DataAccessTask& objectSrc);
protected:
SharedData& m_Data;
public:
DataAccessTask(SharedData& d) : m_Data(d) {}
void Run()
{
m_Data.Inc();
m_Data.Dec();
printf("El valor de la variable compartida es %d\n", m_Data.Get());
}
};
int _tmain(int argc, _TCHAR* argv[])
{
UNREFERENCED_PARAMETER(argc);
UNREFERENCED_PARAMETER(argv);
try
{
SharedData Data;
AC::Thread AccessThread1(new DataAccessTask(Data));
AC::Thread AccessThread2(new DataAccessTask(Data));
AccessThread1.Start();
AccessThread2.Start();
AccessThread1.Wait();
AccessThread2.Wait();
}
catch(std::exception& ex)
{
fprintf(stderr, "Error: %s\n", ex.what());
}
return 0;
}
|
[
"rusamentiaga@uniovi.es"
] |
rusamentiaga@uniovi.es
|
58be16022eb37306a63c42101cb386c08d0ba476
|
d2566520060aa4e0dc9ee53cca3cfe8b0bc09cb9
|
/src/PDE/ConfigureTransport.cpp
|
6661396f12134dd2723b3411e368bec2b32b9d21
|
[
"BSD-2-Clause"
] |
permissive
|
supermangithu/quinoa
|
f4a452de8ff1011a89dec1365a32730299ceecc1
|
2dd7ead9592b43a06fa25fec2f7fa7687f6169bf
|
refs/heads/master
| 2023-04-13T14:42:02.394865
| 2020-09-12T13:35:33
| 2020-09-12T13:35:33
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,509
|
cpp
|
// *****************************************************************************
/*!
\file src/PDE/ConfigureTransport.cpp
\copyright 2012-2015 J. Bakosi,
2016-2018 Los Alamos National Security, LLC.,
2019-2020 Triad National Security, LLC.
All rights reserved. See the LICENSE file for details.
\brief Register and compile configuration on the transport PDE
\details Register and compile configuration on the transport PDE.
*/
// *****************************************************************************
#include <set>
#include <map>
#include <vector>
#include <string>
#include <brigand/algorithms/for_each.hpp>
#include "Tags.hpp"
#include "CartesianProduct.hpp"
#include "PDEFactory.hpp"
#include "Inciter/Options/PDE.hpp"
#include "ContainerUtil.hpp"
#include "ConfigureTransport.hpp"
#include "Transport/Physics/CG.hpp"
#include "Transport/Physics/DG.hpp"
#include "Transport/CGTransport.hpp"
#include "Transport/DGTransport.hpp"
#include "Transport/Problem.hpp"
namespace inciter {
void
registerTransport( CGFactory& cf,
DGFactory& df,
std::set< ctr::PDEType >& cgt,
std::set< ctr::PDEType >& dgt )
// *****************************************************************************
// Register transport PDE into PDE factory
//! \param[in,out] cf Continuous Galerkin PDE factory to register to
//! \param[in,out] df Discontinuous Galerkin PDE factory to register to
//! \param[in,out] cgt Counters for equation types registered into CG factory
//! \param[in,out] dgt Counters for equation types registered into DG factory
// *****************************************************************************
{
// Construct vector of vectors for all possible policies
using CGTransportPolicies =
tk::cartesian_product< cg::TransportPhysics, TransportProblems >;
// Register PDEs for all combinations of policies
brigand::for_each< CGTransportPolicies >(
registerCG< cg::Transport >( cf, cgt, ctr::PDEType::TRANSPORT ) );
// Construct vector of vectors for all possible policies
using DGTransportPolicies =
tk::cartesian_product< dg::TransportPhysics, TransportProblems >;
// Register PDEs for all combinations of policies
brigand::for_each< DGTransportPolicies >(
registerDG< dg::Transport >( df, dgt, ctr::PDEType::TRANSPORT ) );
}
std::vector< std::pair< std::string, std::string > >
infoTransport( std::map< ctr::PDEType, tk::ctr::ncomp_t >& cnt )
// *****************************************************************************
// Return information on the transport PDE
//! \param[inout] cnt std::map of counters for all PDE types
//! \return vector of string pairs describing the PDE configuration
// *****************************************************************************
{
using tag::param;
using tag::transport;
using tk::parameters;
auto c = ++cnt[ ctr::PDEType::TRANSPORT ]; // count eqs
--c; // used to index vectors starting with 0
std::vector< std::pair< std::string, std::string > > nfo;
nfo.emplace_back( ctr::PDE().name( ctr::PDEType::TRANSPORT ), "" );
nfo.emplace_back( "dependent variable", std::string( 1,
g_inputdeck.get< param, transport, tag::depvar >()[c] ) );
nfo.emplace_back( "problem", ctr::Problem().name(
g_inputdeck.get< param, transport, tag::problem >()[c] ) );
nfo.emplace_back( "start offset in unknowns array", std::to_string(
g_inputdeck.get< tag::component >().offset< transport >(c) ) );
auto ncomp = g_inputdeck.get< tag::component >().get< transport >()[c];
nfo.emplace_back( "number of components", std::to_string( ncomp ) );
const auto& diff =
g_inputdeck.get< param, transport, tag::diffusivity >();
if (diff.size() > c)
nfo.emplace_back( "coeff diffusivity [" + std::to_string( ncomp ) + "]",
parameters( diff[c] ) );
const auto& u0 = g_inputdeck.get< param, transport, tag::u0 >();
if (u0.size() > c)
nfo.emplace_back( "coeff u0 [" + std::to_string( ncomp ) + "]",
parameters( u0[c] ) );
const auto& lambda =
g_inputdeck.get< param, transport, tag::lambda >();
if (lambda.size() > c)
nfo.emplace_back( "coeff lambda [" + std::to_string( ncomp ) + "]",
parameters( lambda[c] ) );
const auto& bcdir =
g_inputdeck.get< param, transport, tag::bc, tag::bcdir >();
if (bcdir.size() > c)
nfo.emplace_back( "Dirichlet boundary [" + std::to_string( ncomp ) + "]",
parameters( bcdir[c] ) );
const auto& bcsym =
g_inputdeck.get< param, transport, tag::bc, tag::bcsym >();
if (bcsym.size() > c)
nfo.emplace_back( "Symmetry boundary [" + std::to_string( ncomp ) + "]",
parameters( bcsym[c] ) );
const auto& bcinlet =
g_inputdeck.get< param, transport, tag::bc, tag::bcinlet >();
if (bcinlet.size() > c)
nfo.emplace_back( "Inlet boundary [" + std::to_string( ncomp ) + "]",
parameters( bcinlet[c] ) );
const auto& bcoutlet =
g_inputdeck.get< param, transport, tag::bc, tag::bcoutlet >();
if (bcoutlet.size() > c)
nfo.emplace_back( "Outlet boundary [" + std::to_string( ncomp ) + "]",
parameters( bcoutlet[c] ) );
const auto& bcextrapolate =
g_inputdeck.get< param, transport, tag::bc, tag::bcextrapolate >();
if (bcextrapolate.size() > c)
nfo.emplace_back( "Symmetry boundary [" + std::to_string( ncomp ) + "]",
parameters( bcextrapolate[c] ) );
return nfo;
}
} // inciter::
|
[
"jbakosi@lanl.gov"
] |
jbakosi@lanl.gov
|
3ce101d04a5d84a8ed310cde191ba9ce60a39871
|
46e7b27f95cb19a89222defbd2dcc6357d902de9
|
/application/1.1/server/bin-src/get-logical-drives/get-logical-drives.cpp
|
cb2cb84fb1accb1d43e2a83f5f914460ad176e22
|
[] |
no_license
|
LJR-LJQ/Miaodeli
|
77a30735a655d6183b25c030cae75ee291d8ac18
|
eb6a50aec786c36cc3c04177316ec9cbb8ea8049
|
refs/heads/master
| 2020-05-05T03:13:07.697206
| 2013-07-02T05:30:52
| 2013-07-02T05:30:52
| 10,667,356
| 1
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 439
|
cpp
|
#define UNICODE
#define _UNICODE
#include <windows.h>
#include <tchar.h>
#include <stdio.h>
DWORD bitOf(DWORD value, int i);
int main() {
DWORD v = GetLogicalDrives();
if (0 == v) {
// 获取失败
return 0;
}
for (int i = 0, len = sizeof(DWORD) * 8; i < len; ++i) {
if (0 != bitOf(v, i)) {
printf("%c\n",i+65);
}
}
return 0;
}
DWORD bitOf(DWORD value, int i) {
return value & (1 << i);
}
|
[
"jianru.lin@gmail.com"
] |
jianru.lin@gmail.com
|
f09d960b3c57b6743fd2bde86216ce8886047b6f
|
3f321619d7f900b79810e0b5e3722b405b099c72
|
/cpp/main.cpp
|
79b9d78107bfcb0d762ed67e6f3f4534cfa9116c
|
[] |
no_license
|
mina20/cppLinux
|
a1c1b3dfd78a3edc69e08d50c532b9325a9b4110
|
d0b4e950d962315b36f3202920ddda37ac744911
|
refs/heads/master
| 2020-12-02T22:47:50.704032
| 2017-07-04T06:42:28
| 2017-07-04T06:42:28
| 96,184,034
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 157
|
cpp
|
int main(void)
{
Complex x(1.0, 1.0);
Complex y(2.0, 0.5);
cout << "Original y= "<< y << endl;
cout << "Conjugated y= "<< y << endl;
return 0;
}
|
[
"sameena@mtl205.cms.unipune.ernet.in"
] |
sameena@mtl205.cms.unipune.ernet.in
|
d3afa9732232aeb1541ddf7ea395fc7e4af4e643
|
44d661eced71ab6948d9a7ced5eab259dd8065b8
|
/fh2client/src/fheroes2/gui/button.cpp
|
1c38d9dfffd8972daa7a2da53583ad44f70a44c4
|
[] |
no_license
|
RomanHuryk/free-heroes
|
bf4e67995296ea646bbe69bfd15d605a26f626a5
|
e8c2fdafa38a011790345d2fef1cc821384df521
|
refs/heads/master
| 2020-03-27T14:26:32.862986
| 2014-05-16T12:13:27
| 2014-05-16T12:13:27
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 7,051
|
cpp
|
/***************************************************************************
* Copyright (C) 2009 by Andrey Afletdinov <fheroes2@gmail.com> *
* *
* Part of the Free Heroes2 Engine: *
* http://sourceforge.net/projects/fheroes2 *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include "agg.h"
#include "cursor.h"
#include "settings.h"
#include "dialog.h"
#include "button.h"
enum { BTN_PRESSED = 0x0080, BTN_DISABLE = 0x0008 };
Button::Button() : flags(0)
{
}
Button::Button(s16 ox, s16 oy, ICN::icn_t icn, u16 index1, u16 index2) : flags(0)
{
SetPos(ox, oy);
sf1.Set(AGG::GetICN(icn, index1), true);
sf2.Set(AGG::GetICN(icn, index2), true);
SetSize(sf1.w(), sf1.h());
}
bool Button::isEnable(void) const
{
return ! isDisable();
}
bool Button::isDisable(void) const
{
return flags & BTN_DISABLE;
}
bool Button::isPressed(void) const
{
return flags & BTN_PRESSED;
}
bool Button::isReleased(void) const
{
return ! isPressed();
}
void Button::SetPos(s16 ox, s16 oy)
{
x = ox;
y = oy;
}
void Button::SetSize(u16 ow, u16 oh)
{
w = ow;
h = oh;
}
void Button::SetPos(const Point & pos)
{
SetPos(pos.x, pos.y);
}
void Button::SetSprite(ICN::icn_t icn, u16 index1, u16 index2)
{
sf1.Set(AGG::GetICN(icn, index1), true);
sf2.Set(AGG::GetICN(icn, index2), true);
SetSize(sf1.w(), sf1.h());
}
void Button::SetSprite(const Surface & s1, const Surface & s2)
{
sf1.Set(s1, true);
sf2.Set(s2, true);
SetSize(sf1.w(), sf1.h());
}
void Button::SetDisable(bool f)
{
if(f)
flags |= (BTN_DISABLE | BTN_PRESSED);
else
flags &= ~(BTN_DISABLE | BTN_PRESSED);
}
void Button::Press(void)
{
if(isEnable() && isReleased())
flags |= BTN_PRESSED;
}
void Button::Release(void)
{
if(isEnable() && isPressed())
flags &= ~BTN_PRESSED;
}
void Button::PressDraw(void)
{
if(isEnable() && isReleased())
{
Press();
Draw();
Display::Get().Flip();
}
}
void Button::ReleaseDraw(void)
{
if(isEnable() && isPressed())
{
Release();
Draw();
Display::Get().Flip();
}
}
void Button::Draw(void)
{
bool localcursor = false;
Cursor & cursor = Cursor::Get();
if((*this & cursor.GetArea()) && cursor.isVisible())
{
cursor.Hide();
localcursor = true;
}
if(isPressed())
sf2.Blit(x, y, Display::Get());
else
sf1.Blit(x, y, Display::Get());
if(localcursor) cursor.Show();
}
ButtonGroups::ButtonGroups(const Rect & pos, u16 btns) : button1(NULL), button2(NULL), result1(Dialog::ZERO), result2(Dialog::ZERO), buttons(btns)
{
Point pt;
const ICN::icn_t system = Settings::Get().ExtGameEvilInterface() ? ICN::SYSTEME : ICN::SYSTEM;
switch(buttons)
{
case Dialog::YES|Dialog::NO:
pt.x = pos.x;
pt.y = pos.y + pos.h - AGG::GetICN(system, 5).h();
button1 = new Button(pt.x, pt.y, system, 5, 6);
result1 = Dialog::YES;
pt.x = pos.x + pos.w - AGG::GetICN(system, 7).w();
pt.y = pos.y + pos.h - AGG::GetICN(system, 7).h();
button2 = new Button(pt.x, pt.y, system, 7, 8);
result2 = Dialog::NO;
break;
case Dialog::OK|Dialog::CANCEL:
pt.x = pos.x;
pt.y = pos.y + pos.h - AGG::GetICN(system, 1).h();
button1 = new Button(pt.x, pt.y, system, 1, 2);
result1 = Dialog::OK;
pt.x = pos.x + pos.w - AGG::GetICN(system, 3).w();
pt.y = pos.y + pos.h - AGG::GetICN(system, 3).h();
button2 = new Button(pt.x, pt.y, system, 3, 4);
result2 = Dialog::CANCEL;
break;
case Dialog::OK:
pt.x = pos.x + (pos.w - AGG::GetICN(system, 1).w()) / 2;
pt.y = pos.y + pos.h - AGG::GetICN(system, 1).h();
button1 = new Button(pt.x, pt.y, system, 1, 2);
result1 = Dialog::OK;
break;
case Dialog::CANCEL:
pt.x = pos.x + (pos.w - AGG::GetICN(system, 3).w()) / 2;
pt.y = pos.y + pos.h - AGG::GetICN(system, 3).h();
button2 = new Button(pt.x, pt.y, system, 3, 4);
result2 = Dialog::CANCEL;
break;
default:
break;
}
}
ButtonGroups::~ButtonGroups()
{
if(button1) delete button1;
if(button2) delete button2;
}
void ButtonGroups::Draw(void)
{
if(button1) (*button1).Draw();
if(button2) (*button2).Draw();
}
u16 ButtonGroups::QueueEventProcessing(void)
{
LocalEvent & le = LocalEvent::Get();
if(button1 && button1->isEnable()) le.MousePressLeft(*button1) ? button1->PressDraw() : button1->ReleaseDraw();
if(button2 && button2->isEnable()) le.MousePressLeft(*button2) ? button2->PressDraw() : button2->ReleaseDraw();
if(button1 && button1->isEnable() && le.MouseClickLeft(*button1)) return result1;
if(button2 && button2->isEnable() && le.MouseClickLeft(*button2)) return result2;
if(button1 && button2)
{
if(buttons == (Dialog::YES|Dialog::NO) ||
buttons == (Dialog::OK|Dialog::CANCEL))
{
if(Game::HotKeyPress(Game::EVENT_DEFAULT_READY)) return result1;
if(Game::HotKeyPress(Game::EVENT_DEFAULT_EXIT)) return result2;
}
if(Game::HotKeyPress(Game::EVENT_DEFAULT_LEFT)) return result1;
else
if(Game::HotKeyPress(Game::EVENT_DEFAULT_RIGHT)) return result2;
}
else
// one button
{
if(HotKeyCloseWindow) return buttons;
}
return Dialog::ZERO;
}
void ButtonGroups::DisableButton1(bool f)
{
if(button1)
{
if(f)
{
button1->Press();
button1->SetDisable(true);
}
else
{
button1->Release();
button1->SetDisable(false);
}
}
}
void ButtonGroups::DisableButton2(bool f)
{
if(button2)
{
if(f)
{
button2->Press();
button2->SetDisable(true);
}
else
{
button2->Release();
button2->SetDisable(false);
}
}
}
|
[
"afletdinov@7cb044a8-4f03-41c8-82e0-fd9d2f03d584"
] |
afletdinov@7cb044a8-4f03-41c8-82e0-fd9d2f03d584
|
575cd7f3bb6b7727a1357c2132ed9d852996da45
|
40d77d696707499a4195497447f4c96ae46467af
|
/src/global_obstacle_map_creater_tsukuba.cpp
|
9485c75396752b00aa4b4d98a0fe2c5d0030a924
|
[] |
no_license
|
aoyan27/pcl_tutorial
|
6068130afe6e9f69f02ab32b4597db8c4eba2d12
|
3719a15bfe1b6ec0992fab7d09f709efe53cd973
|
refs/heads/master
| 2021-09-08T01:22:53.282843
| 2018-03-05T03:56:17
| 2018-03-05T03:56:17
| 99,441,796
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 25,003
|
cpp
|
#include "ros/ros.h"
#include <sensor_msgs/PointCloud2.h>
#include <sensor_msgs/PointCloud.h>
#include <pcl_ros/point_cloud.h>
// PCL specific includes
#include <pcl_conversions/pcl_conversions.h>
#include <pcl/point_cloud.h>
#include <pcl/point_types.h>
#include <pcl/filters/voxel_grid.h>
#include <pcl/visualization/cloud_viewer.h>
#include <iostream>
#include <pcl/io/io.h>
#include <pcl/io/pcd_io.h>
#include <boost/thread/thread.hpp>
#include <pcl/visualization/pcl_visualizer.h>
#include <pcl/common/common_headers.h>
#include <pcl/features/normal_3d.h>
#include <pcl/console/parse.h>
#include <nav_msgs/OccupancyGrid.h>
#include <nav_msgs/GridCells.h>
#include <nav_msgs/Odometry.h>
#include <geometry_msgs/Point.h>
#include <geometry_msgs/Point32.h>
#include <geometry_msgs/PoseStamped.h>
#include <tf/transform_broadcaster.h>
#include <tf/transform_listener.h>
#include <math.h>
using namespace std;
// pcl::PointCloud<pcl::PointNormal>::Ptr cloud_data (new pcl::PointCloud<pcl::PointNormal>);
pcl::PointCloud<pcl::PointSurfel>::Ptr cloud_data (new pcl::PointCloud<pcl::PointSurfel>);
// pcl::PointCloud<pcl::PointXYZ> temp_cloud;
pcl::PointCloud<pcl::PointXYZ>::Ptr temp_cloud (new pcl::PointCloud<pcl::PointXYZ>);
pcl::PointCloud<pcl::PointXYZ>::Ptr temp_cloud_dash (new pcl::PointCloud<pcl::PointXYZ>);
pcl::PointCloud<pcl::PointXYZ>::Ptr temp_cloud2 (new pcl::PointCloud<pcl::PointXYZ>);
pcl::PointCloud<pcl::PointXYZ>::Ptr temp_cloud3 (new pcl::PointCloud<pcl::PointXYZ>);
sensor_msgs::PointCloud2 cloud2;
sensor_msgs::PointCloud2 cloud2_dash;
nav_msgs::OccupancyGrid obstacle_map;
nav_msgs::GridCells obstacle_cell;
nav_msgs::OccupancyGrid local_map;
nav_msgs::OccupancyGrid local_map_expand;
nav_msgs::OccupancyGrid local_map_tf;
nav_msgs::Odometry odom;
sensor_msgs::PointCloud obstacle_points;
double min_height = 0.2;
double max_height = 1.4;
const float W = 800;
const float H = 800;
// const float W = 10000;
// const float H = 10000;
const float min_x = 0.0;
const float min_y = 0.0;
const float R = 0.1;
float local_x = 0.0;
float local_y = 0.0;
float local_theta = 0.0 / 180.0 * M_PI;
const float local_W = 20.0;
const float local_H = 20.0;
const float local_dW = local_W / 2.0;
const float local_dH = local_H / 2.0;
const float RADIUS = 0.3;
const int cell_filter = 3;
// const int color_filter = 200;
const int color_filter = 100;
const float diff_height = 0.5;
bool sub_flag = false;
bool pub_flag = true;
float x_init = 0.0;
float y_init = -0.0;
// float theta_init = (90.0 + 3.0) / 180.0 *M_PI;
// float theta_init = (-0.5 + 180.0) / 180.0 *M_PI;
float theta_init =(-90.0) / 180.0 *M_PI;
void test_odom_callback(nav_msgs::Odometry msg){
odom = msg;
cout<<"odom : "<<odom.pose.pose.orientation.x<<endl;
cout<<"odom : "<<odom.pose.pose.orientation.y<<endl;
cout<<"odom : "<<odom.pose.pose.orientation.z<<endl;
cout<<"odom : "<<odom.pose.pose.orientation.w<<endl;
sub_flag = true;
}
void PointXYZ_to_PointCloud2(pcl::PointCloud<pcl::PointXYZ>::Ptr *input, sensor_msgs::PointCloud2 *output){
pcl::PCLPointCloud2 pcl_cloud2;
pcl::toPCLPointCloud2(**input, pcl_cloud2);
pcl_conversions::fromPCL(pcl_cloud2, *output);
}
void PointCloud2_to_PointXYZ(sensor_msgs::PointCloud2 *input, pcl::PointCloud<pcl::PointXYZ>::Ptr *output){
pcl::PCLPointCloud2 pcl_cloud2;
pcl_conversions::toPCL(*input, pcl_cloud2);
pcl::fromPCLPointCloud2(pcl_cloud2, **output);
}
void remove_point_by_heght(pcl::PointCloud<pcl::PointSurfel>::Ptr cloud, nav_msgs::OccupancyGrid *map){
// pcl::PCLPointCloud2 pcl_cloud2;
// pcl::PointCloud<pcl::PointXYZ>::Ptr temp_cloud (new pcl::PointCloud<pcl::PointXYZ>);
vector<float> data(W/R*H/R, 100.0);
// cout<<"cloud : "<<cloud->points[0]<<endl;
// cout<<"cloud->points[0].x : "<<cloud->points[0].x<<endl;
// cout<<"cloud->points[0].y : "<<cloud->points[0].y<<endl;
// cout<<"cloud->points[0].z : "<<cloud->points[0].z<<endl;
// cout<<"cloud->points[0].normal_x : "<<cloud->points[0].normal_x<<endl;
// cout<<"cloud->points[0].normal_y : "<<cloud->points[0].normal_y<<endl;
// cout<<"cloud->points[0].normal_z : "<<cloud->points[0].normal_z<<endl;
// cout<<"cloud->points[0].r : "<<(int)cloud->points[0].r<<endl;
// cout<<"cloud->points[0].g : "<<(int)cloud->points[0].g<<endl;
// cout<<"cloud->points[0].b : "<<(int)cloud->points[0].b<<endl;
// cout<<"cloud->points.x : "<<cloud->points[0].x<<endl;
// cout<<"cloud->points.y : "<<cloud->points[0].y<<endl;
// cout<<"cloud->points.z : "<<cloud->points[0].z<<endl;
// cout<<"couud->points.size() : "<<cloud->points.size()<<endl;
for(size_t i = 0; i < cloud->points.size(); i++){
int x = int((cloud->points[i].x - map->info.origin.position.x) / R);
// cout<<"x : "<<x<<endl;
int y = int((cloud->points[i].y - map->info.origin.position.y) / R);
// cout<<"y : "<<y<<endl;
int num = x + y * map->info.width;
if(cloud->points[i].z < data[num]){
data[num] = cloud->points[i].z;
}
// if(num == 32020123){
// cout<<"data["<<num<<"] : "<<data[num]<<endl;
// cout<<"temp_cloud->points["<<i<<"].z : "<<temp_cloud->points[i].z<<endl;
// }
}
for(size_t i = 0; i < cloud->points.size(); i++){
if((cloud->points[i].x < 56.980 || 59.316 < cloud->points[i].x ) || (cloud->points[i].y < 66.326 || 73.153 < cloud->points[i].y)){
if((cloud->points[i].x < 55.465 || 58.390 < cloud->points[i].x ) || (cloud->points[i].y < 95.674 || 136.517 < cloud->points[i].y)){
if((cloud->points[i].x < 31.933 || 34.387 < cloud->points[i].x ) || (cloud->points[i].y < 137.269 || 140.808 < cloud->points[i].y)){
if((cloud->points[i].x < 10.808 || 29.266 < cloud->points[i].x ) || (cloud->points[i].y < 132.043 || 137.131 < cloud->points[i].y)){
if((cloud->points[i].x < 7.540 || 11.712 < cloud->points[i].x ) || (cloud->points[i].y < 51.585 || 134.106 < cloud->points[i].y)){
if((cloud->points[i].x < 1.428 || 12.473 < cloud->points[i].x ) || (cloud->points[i].y < 18.685 || 27.029 < cloud->points[i].y)){
int x = int((cloud->points[i].x - map->info.origin.position.x) / R);
// cout<<"x : "<<x<<endl;
int y = int((cloud->points[i].y - map->info.origin.position.y) / R);
// cout<<"y : "<<y<<endl;
int num = x + y * map->info.width;
if((data[num] + min_height) < cloud->points[i].z && cloud->points[i].z <= (data[num] + max_height)){
// cout<<"data["<<num<<"] : "<<data[num]<<endl;
// cout<<"temp_cloud->points["<<i<<"].x : "<<temp_cloud->points[i].x<<endl;
// cout<<"temp_cloud->points["<<i<<"].y : "<<temp_cloud->points[i].y<<endl;
// cout<<"temp_cloud->points["<<i<<"].z : "<<temp_cloud->points[i].z<<endl;
// cout<<endl;
pcl::PointXYZ temp_point;
pcl::PointXYZ temp_point_dash;
temp_point.x = cloud->points[i].x;
temp_point.y = cloud->points[i].y;
temp_point.z = cloud->points[i].z;
// temp_point.r = cloud->points[i].r;
// temp_point.g = cloud->points[i].g;
// temp_point.b = cloud->points[i].b;
temp_point_dash.x = cloud->points[i].x;
temp_point_dash.y = cloud->points[i].y;
temp_point_dash.z = cloud->points[i].z;
// cout<<"temp_point.x : "<<temp_point.x<<endl;
// cout<<"temp_point.y : "<<temp_point.y<<endl;
// cout<<"temp_point.z : "<<temp_point.z<<endl;
temp_cloud->push_back(temp_point);
temp_cloud3->push_back(temp_point);
temp_cloud_dash->push_back(temp_point_dash);
}
}
}
}
}
}
}
}
for(size_t i=0; i < cloud->points.size(); i++){
if((cloud->points[i].x < 56.980 || 59.316 < cloud->points[i].x ) || (cloud->points[i].y < 66.326 || 73.153 < cloud->points[i].y)){
if((cloud->points[i].x < 55.465 || 58.390 < cloud->points[i].x ) || (cloud->points[i].y < 95.674 || 136.517 < cloud->points[i].y)){
if((cloud->points[i].x < 31.933 || 34.387 < cloud->points[i].x ) || (cloud->points[i].y < 137.269 || 140.808 < cloud->points[i].y)){
if((cloud->points[i].x < 10.808 || 29.266 < cloud->points[i].x ) || (cloud->points[i].y < 132.043 || 137.131 < cloud->points[i].y)){
if((cloud->points[i].x < 7.540 || 11.712 < cloud->points[i].x ) || (cloud->points[i].y < 51.585 || 134.106 < cloud->points[i].y)){
if((cloud->points[i].x < 1.428 || 12.473 < cloud->points[i].x ) || (cloud->points[i].y < 18.685 || 27.029 < cloud->points[i].y)){
int x = int((cloud->points[i].x - map->info.origin.position.x) / R);
// cout<<"x : "<<x<<endl;
int y = int((cloud->points[i].y - map->info.origin.position.y) / R);
// cout<<"y : "<<y<<endl;
int num = x + y * map->info.width;
if(cloud->points[i].z <= (data[num] + diff_height)){
if((int)cloud->points[i].r <= color_filter && (int)cloud->points[i].g <= color_filter && (int)cloud->points[i].b <= color_filter){
pcl::PointXYZ temp_point;
temp_point.x = cloud->points[i].x;
temp_point.y = cloud->points[i].y;
temp_point.z = cloud->points[i].z;
// cout<<"temp_point.x : "<<temp_point.x<<endl;
// cout<<"temp_point.y : "<<temp_point.y<<endl;
// cout<<"temp_point.z : "<<temp_point.z<<endl;
temp_cloud2->push_back(temp_point);
temp_cloud3->push_back(temp_point);
}
}
}
}
}
}
}
}
}
// temp_cloud->width = temp_cloud->points.size();
// temp_cloud->height = 1;
for(size_t i = 0; i < temp_cloud3->points.size(); i++){
// cout<<"temp_cloud->points["<<i<<"].x : "<<temp_cloud->points[i].x<<endl;
// cout<<"temp_cloud->points["<<i<<"].y : "<<temp_cloud->points[i].y<<endl;
// cout<<"temp_cloud->points["<<i<<"].z : "<<temp_cloud->points[i].z<<endl;
temp_cloud3->points[i].z = 0.0;
// cout<<"temp_cloud->points["<<i<<"].x : "<<temp_cloud->points[i].x<<endl;
// cout<<"temp_cloud->points["<<i<<"].y : "<<temp_cloud->points[i].y<<endl;
// cout<<"temp_cloud->points["<<i<<"].z : "<<temp_cloud->points[i].z<<endl;
}
// pcl::toPCLPointCloud2(*cloud, pcl_cloud2);
// pcl_conversions::fromPCL(pcl_cloud2, cloud2);
// PointXYZ_to_PointCloud2(&temp_cloud, &cloud2);
// PointXYZ_to_PointCloud2(&cloud, &cloud2);
// cout<<cloud2<<endl;
}
void create_obstacle_map(pcl::PointCloud<pcl::PointXYZ>::Ptr cloud, nav_msgs::OccupancyGrid *map){
geometry_msgs::Point obstacle_point;
vector<int> count((long(W/R) * long(H/R)), 0);
// vector<int>::iterator a;
// for(a = count.begin(); a != count.end(); a++){
// cout<<"a : "<<*a<<endl;
// }
// for(int i = 0;i<count.size(); i++){
// cout<<count[i]<<endl;
// }
// vector<int8_t>::iterator mit;
// for(mit=map->data.begin(); mit != map->data.end();mit++){
// *mit=0;
// }
for(int i = 0; i != map->data.size(); i++){
map->data[i] = 0;
// cout<<"map->data["<<i<<"] : "<<map->data[i]<<endl;
}
// cout<<"cloud->points.size() : "<<cloud->points.size()<<endl;
for(size_t i = 0; i < cloud->points.size(); i++){
// cout<<"i : "<<i<<endl;
int x = int((cloud->points[i].x - map->info.origin.position.x) / R);
// cout<<"x : "<<x<<endl;
int y = int((cloud->points[i].y - map->info.origin.position.y) / R);
// cout<<"y : "<<y<<endl;
// cout<<"map->width : "<<map->info.width<<endl;
if((0 <= x && x < W/R) && (0 <= y && y < H/R)){
long num = x + y * map->info.width;
// cout<<"map->data.size() : "<<map->data.size()<<endl;
// cout<<"num : "<<num<<endl;
// map->data[num] = 100;
count[num] += 1;
// obstacle_point.x = cloud->points[i].x;
// obstacle_point.y = cloud->points[i].y;
// obstacle_point.z = 0;
}
}
// for(int i = 0; i != map->data.size(); i++){
// if(map->data[i] == 100){
// cout<<"map->data["<<i<<"] : "<<map->data[i]<<endl;
// }
// }
for(int i = 0;i<count.size(); i++){
if(count[i] > cell_filter){
// cout<<"count["<<i<<"] : "<<count[i]<<endl;
map->data[i] = 100;
obstacle_point.x = (i % map->info.width) * R + map->info.origin.position.x;
obstacle_point.y = int(i / map->info.width) * R + map->info.origin.position.y;
obstacle_point.z = 0;
// obstacle_point.x = cloud->points[i].x;
// obstacle_point.y = cloud->points[i].y;
// obstacle_point.z = 0;
obstacle_cell.cells.push_back(obstacle_point);
}
}
}
void expand_circle(int x0, int y0, int radius, nav_msgs::OccupancyGrid *map){
int x = radius;
int y = 0;
int err = 0;
// cout<<endl;
// cout<<"x0 : "<<x0<<endl;
// cout<<"W/R : "<<W/R<<endl;
// cout<<"y0 : "<<y0<<endl;
// cout<<"H/R : "<<H/R<<endl;
// cout<<"radius : "<<radius<<endl;
while(x >= y){
int num1 = (x0+x)+(y0+y)*map->info.width;
int num2 = (x0+y)+(y0+x)*map->info.width;
int num3 = (x0-y)+(y0+x)*map->info.width;
int num4 = (x0-x)+(y0+y)*map->info.width;
int num5 = (x0-x)+(y0-y)*map->info.width;
int num6 = (x0-y)+(y0-x)*map->info.width;
int num7 = (x0+y)+(y0-x)*map->info.width;
int num8 = (x0+x)+(y0-y)*map->info.width;
if(0<=num1 && num1<map->data.size()){
map->data[num1] = 100;
}
if(0<=num2 && num2<map->data.size()){
map->data[num2] = 100;
}
if(0<=num3 && num3<map->data.size()){
map->data[num3] = 100;
}
if(0<=num4 && num4<map->data.size()){
map->data[num4] = 100;
}
if(0<=num5 && num5<map->data.size()){
map->data[num5] = 100;
}
if(0<=num6 && num6<map->data.size()){
map->data[num6] = 100;
}
if(0<=num7 && num7<map->data.size()){
map->data[num7] = 100;
}
if(0<=num8 && num8<map->data.size()){
map->data[num8] = 100;
}
// // cout<<"(x0+x)+(y0+y)*map->info.width : "<<(x0+x)+(y0+y)*map->info.width<<endl;
// // cout<<"(x0+x) : "<<x0+x<<", (y0+y) : "<<y0+y<<endl;
// map->data[(x0+x)+(y0+y)*map->info.width] = 100;
// // cout<<"(x0+y)+(y0+x)*map->info.width : "<<(x0+y)+(y0+x)*map->info.width<<endl;
// // cout<<"(x0+y) : "<<x0+y<<", (y0+x) : "<<y0+x<<endl;
// map->data[(x0+y)+(y0+x)*map->info.width] = 100;
// // cout<<"(x0-y)+(y0+x)*map->info.width : "<<(x0-y)+(y0+x)*map->info.width<<endl;
// // cout<<"(x0-y) : "<<x0-y<<", (y0+x) : "<<y0+x<<endl;
// map->data[(x0-y)+(y0+x)*map->info.width] = 100;
// // cout<<"(x0-x)+(y0+y)*map->info.width : "<<(x0-x)+(y0+y)*map->info.width<<endl;
// // cout<<"(x0-x) : "<<x0-x<<", (y0+y) : "<<y0+y<<endl;
// map->data[(x0-x)+(y0+y)*map->info.width] = 100;
// // cout<<"(x0-x)+(y0-y)*map->info.width : "<<(x0-x)+(y0-y)*map->info.width<<endl;
// // cout<<"(x0-x) : "<<x0-x<<", (y0-y) : "<<y0-y<<endl;
// map->data[(x0-x)+(y0-y)*map->info.width] = 100;
// // cout<<"(x0-y)+(y0-x)*map->info.width : "<<(x0-y)+(y0-x)*map->info.width<<endl;
// // cout<<"(x0-y) : "<<x0-y<<", (y0-x) : "<<y0-x<<endl;
// map->data[(x0-y)+(y0-x)*map->info.width] = 100;
// // cout<<"(x0+y)+(y0-x)*map->info.width : "<<(x0+y)+(y0-x)*map->info.width<<endl;
// // cout<<"(x0+y) : "<<x0+y<<", (y0-x) : "<<y0-x<<endl;
// map->data[(x0+y)+(y0-x)*map->info.width] = 100;
// // cout<<"(x0+x)+(y0-y)*map->info.width : "<<(x0+x)+(y0-y)*map->info.width<<endl;
// // cout<<"(x0+x) : "<<x0+x<<", (y0-y) : "<<y0-y<<endl;
// map->data[(x0+x)+(y0-y)*map->info.width] = 100;
// }
y+=1;
err += 1 + 2*y;
if(2*(err-x)+1>0){
x -= 1;
err += 1 -2*x;
}
}
}
void expandObstacle(nav_msgs::OccupancyGrid *map_in){
// cout<<"out.info.height : "<<out.info.height<<endl;
// cout<<"out.info.width : "<<out.info.width<<endl;
nav_msgs::OccupancyGrid out;
out = *map_in;
vector<int> x_list;
vector<int> y_list;
for(int xi=0; xi<(int)out.info.height; xi++){
for(int yi=0; yi<(int)out.info.width; yi++){
// if the cell is LETHAL
// cout<<"SADASDADAS"<<endl;
// cout<<"xi : "<<xi<<endl;
// cout<<"yi : "<<yi<<endl<<endl;
if(out.data[xi+out.info.width*yi]!=0){
// expand the LETHAL cells with respect to the circle radius
// cout<<"out.["<<xi+out.info.width*yi<<"]"<<endl;
// cout<<"xi : "<<xi<<endl;
// cout<<"yi : "<<yi<<endl<<endl;
x_list.push_back(xi);
y_list.push_back(yi);
// expand_circle(xi, yi, 0.20/R, map_in);
// expand_circle(0, 0, int(0.3/R), map_in);
// cout<<"out.["<<xi+out.info.width*yi<<"]"<<endl;
// for(litr=expanded_circle.begin(); litr!=expanded_circle.end(); litr++){
// int x=xi+litr->i, y=yi+litr->j;
// if(x>=0 && x<(int)local_map.info.height && y>=0 && y<(int)local_map.info.width
// && map_in.data[xi+map_in.info.width*yi]>local_map.data[x+map_in.info.width*y]){
// local_map.data[x+map_in.info.width*y]=map_in.data[xi+map_in.info.width*yi];
}
}
}
// for(int i=0;i<x_list.size();i++){
// if(y_list[i]==0){
// cout<<"x_list["<<i<<"] : "<<x_list[i]<<endl;
// cout<<"y_list["<<i<<"] : "<<y_list[i]<<endl;
// }
// }
for(int i=0;i<x_list.size();i++){
expand_circle(x_list[i], y_list[i], int(RADIUS/R), &out);
}
*map_in = out;
}
float rotation_x(float x, float y, float theta){
float x_r;
// if(theta >= 0){
x_r = cos(theta) * x - sin(theta) * y;
// }
// else{
// x_r = cos(theta) * x - sin(theta) * y;
// }
return x_r;
}
float rotation_y(float x, float y, float theta){
float y_r;
// if(theta >= 0){
y_r = sin(theta) * x + cos(theta) * y;
// }
// else{
// y_r = -1 * sin(theta) * x + cos(theta) * y;
// }
return y_r;
}
void create_local_map(float x, float y, float theta, nav_msgs::GridCells obs_grid, nav_msgs::OccupancyGrid* loc_map){
nav_msgs::OccupancyGrid out;
out = *loc_map;
vector<int8_t>::iterator mit;
for(mit = out.data.begin(); mit != out.data.end(); mit++){
*mit = 0;
}
for(size_t i = 0; i < obs_grid.cells.size(); i++){
// cout<<"obs_grid.cells.size() : "<<obs_grid.cells.size()<<endl;
// cout<<"i : "<<i<<endl;
int xi = int((rotation_x(obs_grid.cells[i].x-x, obs_grid.cells[i].y-y, -1*theta) - out.info.origin.position.x) / R);
// int xi = int((rotation_x(obstacle_points.points[i].x-x, obstacle_points.points[i].y-y, theta) - out.info.origin.position.x) / R);
// cout<<"xi : "<<xi<<endl;
int yi = int((rotation_y(obs_grid.cells[i].x-x, obs_grid.cells[i].y-y, -1*theta) - out.info.origin.position.y) / R);
// int yi = int((rotation_y(obstacle_points.points[i].x-x, obstacle_points.points[i].y-y, theta) - out.info.origin.position.y) / R);
// cout<<"yi : "<<yi<<endl;
if((0 <= xi && xi < local_W/R) && (0 <= yi && yi < local_H/R)){
int num = xi + yi * out.info.width;
// cout<<"num : "<<num<<endl;
out.data[num] = 100;
}
}
// cout<<"AASFDASFMAS*NMDSF"<<endl;
// expandObstacle(&out);
*loc_map = out;
}
void map2matching_base_link(float x, float y, float theta, tf::TransformBroadcaster br){
tf::Transform transform;
transform.setOrigin(tf::Vector3(x, y, 0.0));
tf::Quaternion q;
q.setRPY(0, 0, theta);
transform.setRotation(q);
br.sendTransform(tf::StampedTransform(transform, ros::Time::now(), "/global_obstacle_map", "/matching_base_link"));
// cout<<"tf pub!!!"<<endl;
// cout<<"x : "<<x<<endl;
// cout<<"y : "<<y<<endl;
// cout<<"z : "<<0.0<<endl;
// cout<<"theta : "<<theta<<endl;
// geometry_msgs::Quaternion q = tf::createQuaternionMsgFromYaw(theta);
// geometry_msgs::TransformStamped map_local_tf;
// map_local_tf.header.stamp = ros::Time::now();
// map_local_tf.header.frame_id = "/map";
// map_local_tf.child_frame_id = "/local_map";
// map_local_tf.transform.translation.x = x;
// map_local_tf.transform.translation.y = y;
// map_local_tf.transform.translation.z = 0.0;
// map_local_tf.transform.rotation = q;
// br.sendTransform(map_local_tf);
}
int main (int argc, char** argv){
// Initialize ROS
ros::init (argc, argv, "global_obstacle_map_creater");
ros::NodeHandle n;
// string filename = "test_velodyne.pcd";
// string filename = "map_Dkan_test.pcd";
//string filename = "map_0_hagi.pcd";
// string filename = "map_ds.pcd";
// string filename = "map_2.pcd";
// string filename = "map_0.pcd";
// string filename = "/home/amsl/ikuchalle.pcd";
// string filename = "/home/amsl/obs_map.pcd";
string filename = "/home/amsl/obs_map_ohshimizu.pcd";
if(pcl::io::loadPCDFile (filename, *cloud_data) == -1){
PCL_ERROR("Couldn't read file '%s'", filename.c_str());
return -1;
}
// pcl::io::loadPCDFile ("test_velodyne.pcd", *cloud_data);
// boost::shared_ptr<pcl::visualization::PCLVisualizer> viewer;
// viewer = simpleVis(cloud_data);
// pcl::PointCloud<pcl::PointXYZ>::Ptr temp_cloud_ptr(&temp_cloud);
// viewer = simpleVis(temp_cloud);
// viewer.showCloud(cloud);
// ros::Subscriber sub = n.subscribe("/test_odom", 1 , test_odom_callback);
ros::Subscriber sub1 = n.subscribe("/lcl", 1 , test_odom_callback);
ros::Publisher pub = n.advertise<sensor_msgs::PointCloud2>("/output", 1);
ros::Publisher pub_dash = n.advertise<sensor_msgs::PointCloud2>("/output_dash", 1);
ros::Publisher pub2 = n.advertise<nav_msgs::OccupancyGrid>("/ob_map", 1);
ros::Publisher pub3 = n.advertise<nav_msgs::OccupancyGrid>("/local_map_static", 1);
ros::Publisher pub3_expand = n.advertise<nav_msgs::OccupancyGrid>("/local_map_static/expand", 1);
ros::Publisher pub4 = n.advertise<nav_msgs::GridCells>("/obs_cell", 1);
// cloud2.header.frame_id = "/world";
// cloud2_dash.header.frame_id = "/world";
// obstacle_map.header.frame_id = "/global_obstacle_map";
obstacle_map.header.frame_id = "/map";
obstacle_map.data.resize(int(W / R) * int(H / R));
obstacle_map.info.width = int(W / R);
obstacle_map.info.height = int(H / R);
obstacle_map.info.resolution = R;
obstacle_map.info.origin.position.x = (min_x - W) / 2.0;
obstacle_map.info.origin.position.y = (min_y - H) / 2.0;
// obstacle_cell.header.frame_id = "/obstacle_cell";
obstacle_cell.header.frame_id = "/map";
obstacle_cell.cell_width = R;
obstacle_cell.cell_height = R;
// local_map.header.frame_id = "/static_local_map";
local_map.header.frame_id = "/velodyne";
local_map.data.resize(int(local_W / R) * int(local_H / R));
local_map.info.width = int(local_W / R);
local_map.info.height = int(local_H / R);
local_map.info.resolution = R;
local_map.info.origin.position.x = (min_x - local_W) / 2.0;
local_map.info.origin.position.y = (min_y - local_H) / 2.0;
local_map_expand = local_map;
// remove_point_by_heght(cloud_data);
remove_point_by_heght(cloud_data, &obstacle_map);
PointXYZ_to_PointCloud2(&temp_cloud_dash, &cloud2);
PointXYZ_to_PointCloud2(&temp_cloud2, &cloud2_dash);
create_obstacle_map(temp_cloud3, &obstacle_map);
// expandObstacle(&obstacle_map);
float x_global = x_init;
float y_global = y_init;
float x = x_init;
float y = y_init;
// float theta = 83.0 / 180.0 *M_PI;
float theta = theta_init;
tf::TransformBroadcaster br;
obstacle_map.header.stamp = ros::Time::now();
pub2.publish(obstacle_map);
obstacle_cell.header.stamp = ros::Time::now();
pub4.publish(obstacle_cell);
ros::Rate loop_rate(20);
while(ros::ok()){
// viewer->spinOnce (100);
// boost::this_thread::sleep (boost::posix_time::microseconds (100000));
if(sub_flag){
x = odom.pose.pose.position.x + x_init;
// x = odom.pose.pose.position.y + y_init;
// cout<<"x : "<<x<<endl;
y = odom.pose.pose.position.y + y_init;
// y = odom.pose.pose.position.x + x_init;
// cout<<"y : "<<y<<endl;
// x_global = rotation_x(x, y, theta_init) + x_init;
// y_global = rotation_x(x, y, theta_init) + y_init;
// tf::Quaternion q(odom.pose.pose.orientation.x, odom.pose.pose.orientation.y, odom.pose.pose.orientation.z, odom.pose.pose.orientation.w);
// q = q.normalize();
// cout<<"q : "<<q.z<<endl;
// theta = tf::getYaw(q) + theta_init;
theta = odom.pose.pose.orientation.z + theta_init;
//cout<<"theta() : "<<theta<<endl;
// sub_flag =false;
}
cout<<"x : "<<x<<endl;
cout<<"y : "<<y<<endl;
cout<<"theta : "<<theta<<endl;
// x += 0.01;
// y += 0.1;
// theta += 4.5 / 180.0 * M_PI;
// theta += -1.0 / 180.0 * M_PI;
// map2matching_base_link(x, y, theta, br);
// create_local_map(x, y, theta, obstacle_map, &local_map);
create_local_map(x, y, theta, obstacle_cell, &local_map);
local_map_expand = local_map;
expandObstacle(&local_map_expand);
// x += 0.1;
// y += 0.1;
// theta += -1.0 / 180.0 * M_PI;
cloud2.header.frame_id = "/velodyne";
cloud2_dash.header.frame_id = "/velodyne";
cloud2.header.stamp = ros::Time::now();
// pub.publish(cloud2);
cloud2_dash.header.stamp = ros::Time::now();
// pub_dash.publish(cloud2_dash);
// obstacle_map.header.stamp = ros::Time::now();
// pub2.publish(obstacle_map);
// visu_obstacle_map.header.stamp = ros::Time::now();
// pub2_visu.publish(visu_obstacle_map);
pub3.publish(local_map);
pub3_expand.publish(local_map_expand);
// cout<<"obstacle_cell : "<<obstacle_cell<<endl;
//obstacle_cell.header.stamp = ros::Time::now();
//pub4.publish(obstacle_cell);
ros::spinOnce();
loop_rate.sleep();
}
return 0;
}
|
[
"ce62001@meiji.ac.jp"
] |
ce62001@meiji.ac.jp
|
6de71a30b1c3871baca0c5fa7366bfdc99195a5e
|
6f874ccb136d411c8ec7f4faf806a108ffc76837
|
/code/pushframework/3.1/PushFramework/private/MonitorConnection.h
|
74c11ce1ada009374317aad49ecb03e789f034ce
|
[
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
JetAr/ZDoc
|
c0f97a8ad8fd1f6a40e687b886f6c25bb89b6435
|
e81a3adc354ec33345e9a3303f381dcb1b02c19d
|
refs/heads/master
| 2022-07-26T23:06:12.021611
| 2021-07-11T13:45:57
| 2021-07-11T13:45:57
| 33,112,803
| 8
| 8
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,171
|
h
|
/********************************************************************
File : MonitorConnection.h
Creation date : 3/5/2014
License : Copyright 2010-2014 Ahmed Charfeddine, http://www.pushframework.com
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.
*********************************************************************/
#pragma once
#include "LogicalConnectionImpl.h"
namespace PushFramework
{
class MonitorConnection : public LogicalConnectionImpl
{
public:
MonitorConnection(const string& str);
~MonitorConnection(void);
virtual const char* getKey();
bool IsMonitor();
private:
string monitorKey;
};
}
|
[
"126.org@gmail.com"
] |
126.org@gmail.com
|
6708079d1135012f623ea7d69ba253625796ddfb
|
1d9b1b78887bdff6dd5342807c4ee20f504a2a75
|
/lib/libcxx/include/__type_traits/is_nothrow_assignable.h
|
e3ce33ece895588f891e1ff9ce91b7804ad1b7d9
|
[
"NCSA",
"LLVM-exception",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-other-permissive"
] |
permissive
|
mikdusan/zig
|
86831722d86f518d1734ee5a1ca89d3ffe9555e8
|
b2ffe113d3fd2835b25ddf2de1cc8dd49f5de722
|
refs/heads/master
| 2023-08-31T21:29:04.425401
| 2022-11-13T15:43:29
| 2022-11-13T15:43:29
| 173,955,807
| 1
| 0
|
MIT
| 2021-11-02T03:19:36
| 2019-03-05T13:52:53
|
Zig
|
UTF-8
|
C++
| false
| false
| 1,748
|
h
|
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef _LIBCPP___TYPE_TRAITS_IS_NOTHROW_ASSIGNABLE_H
#define _LIBCPP___TYPE_TRAITS_IS_NOTHROW_ASSIGNABLE_H
#include <__config>
#include <__type_traits/add_const.h>
#include <__type_traits/integral_constant.h>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_BEGIN_NAMESPACE_STD
#if __has_builtin(__is_nothrow_assignable)
template <class _Tp, class _Arg>
struct _LIBCPP_TEMPLATE_VIS is_nothrow_assignable
: public integral_constant<bool, __is_nothrow_assignable(_Tp, _Arg)> {};
#else
template <bool, class _Tp, class _Arg> struct __libcpp_is_nothrow_assignable;
template <class _Tp, class _Arg>
struct __libcpp_is_nothrow_assignable<false, _Tp, _Arg>
: public false_type
{
};
template <class _Tp, class _Arg>
struct __libcpp_is_nothrow_assignable<true, _Tp, _Arg>
: public integral_constant<bool, noexcept(declval<_Tp>() = declval<_Arg>()) >
{
};
template <class _Tp, class _Arg>
struct _LIBCPP_TEMPLATE_VIS is_nothrow_assignable
: public __libcpp_is_nothrow_assignable<is_assignable<_Tp, _Arg>::value, _Tp, _Arg>
{
};
#endif // __has_builtin(__is_nothrow_assignable)
#if _LIBCPP_STD_VER > 14
template <class _Tp, class _Arg>
inline constexpr bool is_nothrow_assignable_v = is_nothrow_assignable<_Tp, _Arg>::value;
#endif
_LIBCPP_END_NAMESPACE_STD
#endif // _LIBCPP___TYPE_TRAITS_IS_NOTHROW_ASSIGNABLE_H
|
[
"andrew@ziglang.org"
] |
andrew@ziglang.org
|
18ee452282c474ca2a0c693d49320f5ef1bf5541
|
daf92e2afe463891d23f7904a00004688d17a9c6
|
/userprog/addrspace.cc
|
d54e661f126abc8e7e4c845c1dd48c18a264085c
|
[] |
no_license
|
SifatMd/Nachos
|
3fdd4212cf3bbddebd0e9b784d746bb09adc86d5
|
c5e4a4187a1386cebafc767129e7fed68767a9be
|
refs/heads/master
| 2020-04-25T11:23:47.079858
| 2019-02-26T15:58:45
| 2019-02-26T15:58:45
| 172,742,988
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 9,867
|
cc
|
// addrspace.cc
// Routines to manage address spaces (executing user programs).
//
// In order to run a user program, you must:
//
// 1. link with the -N -T 0 option
// 2. run coff2noff to convert the object file to Nachos format
// (Nachos object code format is essentially just a simpler
// version of the UNIX executable object code format)
// 3. load the NOFF file into the Nachos file system
// (if you haven't implemented the file system yet, you
// don't need to do this last step)
//
// Copyright (c) 1992-1993 The Regents of the University of California.
// All rights reserved. See copyright.h for copyright notice and limitation
// of liability and disclaimer of warranty provisions.
#include "copyright.h"
#include "system.h"
#include "addrspace.h"
//----------------------------------------------------------------------
// SwapHeader
// Do little endian to big endian conversion on the bytes in the
// object file header, in case the file was generated on a little
// endian machine, and we're now running on a big endian machine.
//----------------------------------------------------------------------
extern MemoryManager *memoryManager;
static void
SwapHeader (NoffHeader *noffH)
{
noffH->noffMagic = WordToHost(noffH->noffMagic);
noffH->code.size = WordToHost(noffH->code.size);
noffH->code.virtualAddr = WordToHost(noffH->code.virtualAddr);
noffH->code.inFileAddr = WordToHost(noffH->code.inFileAddr);
noffH->initData.size = WordToHost(noffH->initData.size);
noffH->initData.virtualAddr = WordToHost(noffH->initData.virtualAddr);
noffH->initData.inFileAddr = WordToHost(noffH->initData.inFileAddr);
noffH->uninitData.size = WordToHost(noffH->uninitData.size);
noffH->uninitData.virtualAddr = WordToHost(noffH->uninitData.virtualAddr);
noffH->uninitData.inFileAddr = WordToHost(noffH->uninitData.inFileAddr);
}
//----------------------------------------------------------------------
// AddrSpace::AddrSpace
// Create an address space to run a user program.
// Load the program from a file "executable", and set everything
// up so that we can start executing user instructions.
//
// Assumes that the object code file is in NOFF format.
//
// First, set up the translation from program memory to physical
// memory. For now, this is really simple (1:1), since we are
// only uniprogramming, and we have a single unsegmented page table
//
// "executable" is the file containing the object code to load into memory
//----------------------------------------------------------------------
AddrSpace::AddrSpace(OpenFile *executable)
{
unsigned int i, size, totalSize;
this->executable = executable;
executable->ReadAt((char *)&noffH, sizeof(noffH), 0);
if ((noffH.noffMagic != NOFFMAGIC) &&
(WordToHost(noffH.noffMagic) == NOFFMAGIC))
SwapHeader(&noffH);
ASSERT(noffH.noffMagic == NOFFMAGIC);
// how big is address space?
size = noffH.code.size + noffH.initData.size + noffH.uninitData.size
+ UserStackSize; // we need to increase the size
// to leave room for the stack
numPages = divRoundUp(size, PageSize);
size = numPages * PageSize;
//ASSERT(numPages <= NumPhysPages); // check we're not trying
if(numPages > memoryManager->AvailableLocations()){
//printf("Not Enough Memory. Returning....\n");
//return;
}
printf("Number of pages: %d\n", numPages);
storeFile = new BackingStore(currentThread->threadID, numPages);
//printf("NUmpage: %d\n", numPages);
// to run anything too big --
// at least until we have
// virtual memory
DEBUG('a', "Initializing address space, num pages %d, size %d\n",
numPages, size);
// first, set up the translation
pageTable = new TranslationEntry[numPages];
for (i = 0; i < numPages; i++) {
pageTable[i].virtualPage = i; // now, virtual page # != phys page #
//pageTable[i].physicalPage = memoryManager->AllocPage();
pageTable[i].physicalPage = -1; //artificially creating page faults
pageTable[i].valid = false;
pageTable[i].use = false;
pageTable[i].dirty = false;
pageTable[i].readOnly = false; // if the code segment was entirely on
// a separate page, we could set its
// pages to be read-only
}
}
//----------------------------------------------------------------------
// AddrSpace::~AddrSpace
// Dealloate an address space. Nothing for now!
//----------------------------------------------------------------------
AddrSpace::~AddrSpace()
{
delete pageTable;
delete storeFile;
delete executable;
}
void AddrSpace::LoadIntoFreePage(unsigned int virtAddr, unsigned int physicalPageNo){
DEBUG('t',"Inside LoadIntoFreePage after PageFault");
unsigned int pageNo = virtAddr / PageSize;
pageTable[pageNo].physicalPage = physicalPageNo;
pageTable[pageNo].valid = true;
pageTable[pageNo].use = true;
if(storeFile->IsStored(pageNo)){ //extract from backedstore
storeFile->LoadFromStorage(pageNo, pageTable[pageNo].physicalPage);
}
else{ //as it is not in backedstore, so will have to extract from executable file and put it inside backedstore
if(virtAddr >= noffH.code.virtualAddr && virtAddr <= noffH.code.virtualAddr+noffH.code.size){ //inside code segment
unsigned int code_offset = (virtAddr - noffH.code.virtualAddr) / PageSize;
unsigned int codeSize = (noffH.code.size-code_offset*PageSize) < PageSize ? (noffH.code.size-code_offset*PageSize) : PageSize;
//int codeSize= min(noffH->code.size-code_offset*PageSize,PageSize);
executable->ReadAt(&(machine -> mainMemory[pageTable[pageNo].physicalPage * PageSize]), codeSize, noffH.code.inFileAddr+(pageNo*PageSize)-noffH.code.virtualAddr);
if(codeSize < PageSize){ //have to copy stuff from data segment too
unsigned int rest = PageSize - codeSize;
if(rest<=noffH.initData.size){
executable->ReadAt(&(machine->mainMemory[(pageTable[pageNo].physicalPage*PageSize) + codeSize]), rest, noffH.initData.inFileAddr);
}
else{
executable->ReadAt(&(machine->mainMemory[(pageTable[pageNo].physicalPage*PageSize) + codeSize]), noffH.initData.size, noffH.initData.inFileAddr);
bzero(&(machine->mainMemory[(pageTable[pageNo].physicalPage * PageSize)+codeSize+noffH.initData.size]), PageSize-codeSize-noffH.initData.size);
}
}
}
else if(virtAddr>= noffH.initData.virtualAddr && virtAddr<= noffH.initData.virtualAddr+noffH.initData.size){ //inside Initialized Data segment
unsigned int data_offset = (virtAddr - noffH.initData.virtualAddr) / PageSize;
unsigned int dataSize = (noffH.initData.size-data_offset*PageSize) < PageSize ? (noffH.initData.size-data_offset*PageSize) : PageSize;
executable->ReadAt(&(machine -> mainMemory[pageTable[pageNo].physicalPage * PageSize]), dataSize, noffH.initData.inFileAddr+(pageNo*PageSize)-noffH.initData.virtualAddr);
if(dataSize < PageSize){ //rest part of uninitializedData segment
unsigned int rest = PageSize - dataSize;
//executable->ReadAt(&(machine->mainMemory[(pageTable[pageNo].physicalPage*PageSize) + codeSize]), rest, noffH->initData.inFileAddr);
bzero( &(machine->mainMemory[(pageTable[pageNo].physicalPage * PageSize) + dataSize]), rest );
}
}
else{ //for the uninitializedData segment
bzero(&(machine->mainMemory[pageTable[pageNo].physicalPage * PageSize]), PageSize);
}
storeFile->Store(pageNo, pageTable[pageNo].physicalPage); //storing it in backedstore
}
return ;
}
//-----------------
//Release Memory as said in file
//------------
void AddrSpace::FreeUpMemory()
{
for (int i = 0; i < numPages; i++)
{
if(pageTable[i].valid){
memoryManager->FreeLocation(pageTable[i].physicalPage);
}
}
}
//----------------------------------------------------------------------
// AddrSpace::InitRegisters
// Set the initial values for the user-level register set.
//
// We write these directly into the "machine" registers, so
// that we can immediately jump to user code. Note that these
// will be saved/restored into the currentThread->userRegisters
// when this thread is context switched out.
//----------------------------------------------------------------------
void
AddrSpace::InitRegisters()
{
int i;
for (i = 0; i < NumTotalRegs; i++)
machine->WriteRegister(i, 0);
// Initial program counter -- must be location of "Start"
machine->WriteRegister(PCReg, 0);
// Need to also tell MIPS where next instruction is, because
// of branch delay possibility
machine->WriteRegister(NextPCReg, 4);
// Set the stack register to the end of the address space, where we
// allocated the stack; but subtract off a bit, to make sure we don't
// accidentally reference off the end!
machine->WriteRegister(StackReg, numPages * PageSize - 16);
DEBUG('a', "Initializing stack register to %d\n", numPages * PageSize - 16);
}
//----------------------------------------------------------------------
// AddrSpace::SaveState
// On a context switch, save any machine state, specific
// to this address space, that needs saving.
//
// For now, nothing!
//----------------------------------------------------------------------
void AddrSpace::SaveState()
{}
//----------------------------------------------------------------------
// AddrSpace::RestoreState
// On a context switch, restore the machine state so that
// this address space can run.
//
// For now, tell the machine where to find the page table.
//----------------------------------------------------------------------
void AddrSpace::RestoreState()
{
machine->pageTable = pageTable;
machine->pageTableSize = numPages;
}
int AddrSpace::getThreadID(){
return threadID;
}
void AddrSpace::setThreadID(int id){
threadID = id;
}
|
[
"sifat.abdullah577@gmail.com"
] |
sifat.abdullah577@gmail.com
|
a1982aa125988a6c56607a0ac9a1a4754108c742
|
be3167504c0e32d7708e7d13725c2dbc9232f2cb
|
/mame/src/mame/includes/topspeed.h
|
a053494da3032438c83e67e16560c0ff4e45ee9c
|
[] |
no_license
|
sysfce2/MAME-Plus-Plus-Kaillera
|
83b52085dda65045d9f5e8a0b6f3977d75179e78
|
9692743849af5a808e217470abc46e813c9068a5
|
refs/heads/master
| 2023-08-10T06:12:47.451039
| 2016-08-01T09:44:21
| 2016-08-01T09:44:21
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,732
|
h
|
/*************************************************************************
Top Speed / Full Throttle
*************************************************************************/
class topspeed_state : public driver_device
{
public:
topspeed_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_spritemap(*this, "spritemap"),
m_raster_ctrl(*this, "raster_ctrl"),
m_spriteram(*this, "spriteram"),
m_sharedram(*this, "sharedram")
{ }
/* memory pointers */
required_shared_ptr<UINT16> m_spritemap;
required_shared_ptr<UINT16> m_raster_ctrl;
required_shared_ptr<UINT16> m_spriteram;
required_shared_ptr<UINT16> m_sharedram;
/* adpcm */
device_t *m_msm_chip[2];
UINT8 *m_msm_rom[2];
UINT16 m_msm_start[2];
UINT16 m_msm_loop[2];
UINT16 m_msm_pos[2];
UINT8 m_msm_sel[2];
/* misc */
UINT16 m_cpua_ctrl;
INT32 m_ioc220_port;
INT32 m_banknum;
/* devices */
cpu_device *m_maincpu;
cpu_device *m_audiocpu;
cpu_device *m_subcpu;
device_t *m_pc080sn_1;
device_t *m_pc080sn_2;
device_t *m_tc0220ioc;
UINT8 m_dislayer[5];
DECLARE_READ16_MEMBER(sharedram_r);
DECLARE_WRITE16_MEMBER(sharedram_w);
DECLARE_WRITE16_MEMBER(cpua_ctrl_w);
DECLARE_READ8_MEMBER(topspeed_input_bypass_r);
DECLARE_READ16_MEMBER(topspeed_motor_r);
DECLARE_WRITE16_MEMBER(topspeed_motor_w);
DECLARE_WRITE8_MEMBER(sound_bankswitch_w);
DECLARE_WRITE8_MEMBER(topspeed_msm5205_command_w);
DECLARE_CUSTOM_INPUT_MEMBER(topspeed_pedal_r);
virtual void machine_start();
virtual void machine_reset();
};
/*----------- defined in video/topspeed.c -----------*/
SCREEN_UPDATE_IND16( topspeed );
|
[
"mameppk@199a702f-54f1-4ac0-8451-560dfe28270b"
] |
mameppk@199a702f-54f1-4ac0-8451-560dfe28270b
|
1ed90acbe4f9a062d724fc07f5ccb711947bb487
|
11351870905c52454934b23b27ace5e3306c4107
|
/NWERC16/f/f.cpp
|
49c57e43bc49b4dba8b10290decb552765bd8850
|
[] |
no_license
|
IvanAli/ACMICPC2017Training
|
65cbe9a47788ab38026134dfe41ef7132801d8c5
|
0a274f41d9b4300fdfbc9160cd171c5edf265cbc
|
refs/heads/master
| 2021-08-29T15:42:24.789100
| 2017-12-14T05:49:03
| 2017-12-14T05:49:03
| 114,207,562
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 806
|
cpp
|
#include <bits/stdc++.h>
using namespace std;
const int maxn = 1000005;
int n;
int a[maxn], b[maxn];
bool ok(int x) {
int las;
las = -1;
for (int i = 0; i < n; i++) {
if (a[i] <= x) continue;
if (las == -1) las = a[i];
else {
if (a[i] != las) return false;
las = -1;
}
}
if (las != -1) return false;
las = -1;
for (int i = 0; i < n; i++) {
if (b[i] <= x) continue;
if (las == -1) las = b[i];
else {
if (b[i] != las) return false;
las = -1;
}
}
return las == -1;
}
int main() {
scanf("%d", &n);
for (int i = 0; i < n; i++) scanf("%d", &a[i]);
for (int i = 0; i < n; i++) scanf("%d", &b[i]);
int low = 0, high = 1000000000, mid;
while (low < high) {
mid = low + high >> 1;
if (ok(mid)) high = mid;
else low = mid + 1;
}
printf("%d\n", low);
return 0;
}
|
[
"ivanali@outlook.com"
] |
ivanali@outlook.com
|
1cdb762390215d16513f8c6c70896bd79c5c414d
|
f0b7bcc41298354b471a72a7eeafe349aa8655bf
|
/codebase/apps/titan/src/TrackProps/TrackEntry.cc
|
ce0109b7b079874b7535bee0c497f32f6f40af4b
|
[
"BSD-3-Clause"
] |
permissive
|
NCAR/lrose-core
|
23abeb4e4f1b287725dc659fb566a293aba70069
|
be0d059240ca442883ae2993b6aa112011755688
|
refs/heads/master
| 2023-09-01T04:01:36.030960
| 2023-08-25T00:41:16
| 2023-08-25T00:41:16
| 51,408,988
| 90
| 53
|
NOASSERTION
| 2023-08-18T21:59:40
| 2016-02-09T23:36:25
|
C++
|
UTF-8
|
C++
| false
| false
| 4,084
|
cc
|
// *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
// ** Copyright UCAR (c) 1990 - 2016
// ** University Corporation for Atmospheric Research (UCAR)
// ** National Center for Atmospheric Research (NCAR)
// ** Boulder, Colorado, USA
// ** BSD licence applies - redistribution and use in source and binary
// ** forms, with or without modification, are permitted provided that
// ** the following conditions are met:
// ** 1) If the software is modified to produce derivative works,
// ** such modified software should be clearly marked, so as not
// ** to confuse it with the version available from UCAR.
// ** 2) Redistributions of source code must retain the above copyright
// ** notice, this list of conditions and the following disclaimer.
// ** 3) 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.
// ** 4) Neither the name of UCAR nor the names of its contributors,
// ** if any, may be used to endorse or promote products derived from
// ** this software without specific prior written permission.
// ** DISCLAIMER: THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS
// ** OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
// ** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
// *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
//////////////////////////////////////////////////////////
// TrackEntry.cc
//
// Track entry access
//
// Mike Dixon, RAP, NCAR, P.O.Box 3000, Boulder, CO, 80307-3000, USA
//
// January 1998
//
//////////////////////////////////////////////////////////
#include "TrackEntry.hh"
#include <toolsa/str.h>
using namespace std;
//////////////
// Constructor
TrackEntry::TrackEntry (const char *prog_name,
int debug,
int complex_track_num,
track_file_handle_t *t_handle,
rf_partial_track_t *ptrack)
{
// initialize basic
_progName = STRdup(prog_name);
_debug = debug;
_complexTrackNum = complex_track_num;
_t_handle = t_handle;
_pTrack = ptrack;
OK = TRUE;
// read in complex params
if(RfReadComplexTrackParams(_t_handle, _complexTrackNum, TRUE,
"TrackEntry::TrackEntry") != R_SUCCESS) {
OK = FALSE;
return;
}
// initialize indices
_simpleIndex = 0;
_entryIndex = 0;
}
/////////////
// destructor
TrackEntry::~TrackEntry ()
{
// free up memory
STRfree(_progName);
}
//////////////////////////////////////////
// next()
//
// load up next valid entry
//
// Returns pointer to entry on success, NULL on failure
//
///////////////////////////////////////////
track_file_entry_t *TrackEntry::next()
{
/*
* simple tracks in this complex track
*/
for (int isimple = _simpleIndex;
isimple < _t_handle->complex_params->n_simple_tracks; isimple++) {
// if start of simple track, position track at start
if (_entryIndex == 0) {
int simple_track_num =
_t_handle->simples_per_complex[_complexTrackNum][isimple];
if(RfRewindSimpleTrack(_t_handle, simple_track_num,
"TrackEntry::next") != R_SUCCESS) {
return (NULL);
}
}
/*
* loop through the track entries
*/
for (int ientry = _entryIndex;
ientry < _t_handle->simple_params->duration_in_scans; ientry++) {
if (RfReadTrackEntry(_t_handle, "TrackEntry::next") != R_SUCCESS) {
return (NULL);
}
if (RfEntryInPartial(_pTrack, _t_handle->entry)) {
_simpleIndex = isimple;
_entryIndex = ientry + 1;
return (_t_handle->entry);
}
} /* ientry */
_entryIndex = 0;
} /* isimple */
return (NULL);
}
|
[
"dixon@ucar.edu"
] |
dixon@ucar.edu
|
a38bc12068d86f382c2679435f626cfd8c699b87
|
ae7ba9c83692cfcb39e95483d84610715930fe9e
|
/yubinbai/pcuva-problems/UVa 102 - Ecological Bin Packing/sol.cpp
|
da361bbdb999c1b91544f3da3faee6f79ad01d65
|
[] |
no_license
|
xenron/sandbox-github-clone
|
364721769ea0784fb82827b07196eaa32190126b
|
5eccdd8631f8bad78eb88bb89144972dbabc109c
|
refs/heads/master
| 2022-05-01T21:18:43.101664
| 2016-09-12T12:38:32
| 2016-09-12T12:38:32
| 65,951,766
| 5
| 7
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,393
|
cpp
|
#include <cstdio>
#include <climits>
#include <cstring>
using namespace std;
int main()
{
int B[3], G[3], C[3];
while (scanf("%d %d %d %d %d %d %d %d %d", &B[0], &G[0], &C[0], &B[1],
&G[1], &C[1], &B[2], &G[2], &C[2]) != EOF)
{
int min = INT_MAX, temp;
char ans[4];
//BCG
temp = C[0] + G[0] + B[1] + G[1] + B[2] + C[2];
if (temp < min)
{
min = temp;
strcpy(ans, "BCG");
}
//BGC
temp = C[0] + G[0] + B[1] + C[1] + B[2] + G[2];
if (temp < min)
{
min = temp;
strcpy(ans, "BGC");
}
//CBG
temp = B[0] + G[0] + C[1] + G[1] + B[2] + C[2];
if (temp < min)
{
min = temp;
strcpy(ans, "CBG");
}
//CGB
temp = B[0] + G[0] + B[1] + C[1] + G[2] + C[2];
if (temp < min)
{
min = temp;
strcpy(ans, "CGB");
}
//GBC
temp = C[0] + B[0] + C[1] + G[1] + B[2] + G[2];
if (temp < min)
{
min = temp;
strcpy(ans, "GBC");
}
//GCB
temp = C[0] + B[0] + B[1] + G[1] + G[2] + C[2];
if (temp < min)
{
min = temp;
strcpy(ans, "GCB");
}
printf("%s %d\n", ans, min);
}
return 0;
}
|
[
"xenron@outlook.com"
] |
xenron@outlook.com
|
0a77f7454544b6fcf663b336d319176626310b23
|
e8344ff1560272781921bd4f5a2f71adc0f742dc
|
/src/LasPointReader.cpp
|
93a19cab8cbdfbfcf104606bb9c0da40448bf3fc
|
[
"MIT"
] |
permissive
|
saegersven/pointcloud-converter
|
19fc7b1a172368bbbc898883f73177c23cbeb6ea
|
61698e05efcccf08b29bfd7d1ec97b12a39acca1
|
refs/heads/main
| 2023-03-04T15:34:07.133938
| 2021-02-12T09:13:01
| 2021-02-12T09:13:01
| 320,833,354
| 1
| 0
| null | 2020-12-12T13:45:59
| 2020-12-12T13:09:06
| null |
UTF-8
|
C++
| false
| false
| 3,779
|
cpp
|
#include "LasPointReader.h"
#include <stdexcept>
void LasPointReader::open(std::string filename) {
file = fopen(filename.c_str(), "rb");
if (!file) throw std::runtime_error("Could not open file");
// Read header
fseek(file, 96, SEEK_SET);
fread(&first_point_offset, sizeof(uint32_t), 1, file);
fseek(file, 5, SEEK_CUR);
fread(&skip_bytes, sizeof(uint16_t), 1, file);
skip_bytes -= 12; // Subtract size of coordinates
uint32_t legacy_num_points = 0;
fread(&legacy_num_points, sizeof(uint32_t), 1, file);
if (legacy_num_points == 0) { // This file uses the 64 bit num_points
fseek(file, 140, SEEK_SET);
fread(&num_points, sizeof(uint64_t), 1, file);
}
else {
num_points = legacy_num_points;
}
fseek(file, 104, SEEK_SET);
fread(&point_format, sizeof(uint8_t), 1, file);
fseek(file, 131, SEEK_SET);
fread(&scale_x, sizeof(double), 1, file);
fread(&scale_y, sizeof(double), 1, file);
fread(&scale_z, sizeof(double), 1, file);
fread(&offset_x, sizeof(double), 1, file);
fread(&offset_y, sizeof(double), 1, file);
fread(&offset_z, sizeof(double), 1, file);
fread(&max_x, sizeof(double), 1, file);
fread(&min_x, sizeof(double), 1, file);
fread(&max_y, sizeof(double), 1, file);
fread(&min_y, sizeof(double), 1, file);
fread(&max_z, sizeof(double), 1, file);
fread(&min_z, sizeof(double), 1, file);
fseek(file, first_point_offset, SEEK_SET); // Jump to the first point to continue
}
bool LasPointReader::has_points() {
return points_read < num_points;
}
Point LasPointReader::read_point() {
Point p;
bool cx, cy, cz;
int32_t x, y, z;
cx = fread(&x, sizeof(int32_t), 1, file);
cy = fread(&y, sizeof(int32_t), 1, file);
cz = fread(&z, sizeof(int32_t), 1, file);
if (!(cx && cy && cz)) throw std::runtime_error("Unexpected end of file");
p.x = x * scale_x + offset_x;
p.y = y * scale_y + offset_y;
p.z = z * scale_z + offset_z;
if (point_format == 2) { // It has colors!
fseek(file, skip_bytes - 3 * sizeof(uint16_t), SEEK_CUR);
cx = fread(&p.r, sizeof(uint16_t), 1, file);
cy = fread(&p.g, sizeof(uint16_t), 1, file);
cz = fread(&p.b, sizeof(uint16_t), 1, file);
}
else {
fseek(file, skip_bytes, SEEK_CUR);
p.r = 0;
p.g = 0;
p.b = 0;
}
if (!(cx && cy && cz)) throw std::runtime_error("Unexpected end of file");
points_read++;
return p;
}
Cube LasPointReader::get_bounding_cube() {
Cube c;
c.center_x =(float)((max_x + min_x) / 2.0);
c.center_y =(float)((max_y + min_y) / 2.0);
c.center_z =(float)((max_z + min_z) / 2.0);
c.size = std::max(max_x - min_x, std::max(max_y - min_y, max_z - min_z));
return c;
}
Bounds LasPointReader::get_bounds() {
return { (float)min_x, (float)min_y, (float)min_z, (float)max_x, (float)max_y, (float)max_z };
}
Cube LasPointReader::get_big_bounding_cube(std::vector<std::string> input_files, uint64_t& total_points) {
Bounds g_bounds;
for (std::string s : input_files) {
LasPointReader r;
r.open(s);
total_points += r.num_points;
Bounds b = r.get_bounds();
if (b.max_x > g_bounds.max_x) g_bounds.max_x = b.max_x;
if (b.max_y > g_bounds.max_y) g_bounds.max_y = b.max_y;
if (b.max_z > g_bounds.max_z) g_bounds.max_z = b.max_z;
if (b.min_x < g_bounds.min_x) g_bounds.min_x = b.min_x;
if (b.min_y < g_bounds.min_y) g_bounds.min_y = b.min_y;
if (b.min_z < g_bounds.min_z) g_bounds.min_z = b.min_z;
}
Cube c;
// Cast to double to avoid overflow when adding
c.center_x = (float)(((double)g_bounds.max_x + (double)g_bounds.min_x) / 2.0);
c.center_y = (float)(((double)g_bounds.max_y + (double)g_bounds.min_y) / 2.0);
c.center_z = (float)(((double)g_bounds.max_z + (double)g_bounds.min_z) / 2.0);
c.size = std::max(g_bounds.max_x - g_bounds.min_x,
std::max(g_bounds.max_y - g_bounds.min_y, g_bounds.max_z - g_bounds.min_z));
return c;
}
|
[
"sven.saeger@hotmail.com"
] |
sven.saeger@hotmail.com
|
cfd1db13054f54a08090804e2d6a370edf3090f2
|
02e60087f62bdb0f43c273238931828bb7942af0
|
/String/LongestPalindrome.cpp
|
bbb3ad6d4a83b9f88d51a7a20e34625c27bba927
|
[] |
no_license
|
cos65535/ICPCLibrary
|
ed92b0548c7ebc9ac8110d11ad7126b75308e923
|
7758e95c7df93b73b842eb4b8011a69772d04102
|
refs/heads/master
| 2021-01-22T21:17:06.747567
| 2016-09-17T09:25:12
| 2016-09-17T09:25:12
| 2,240,083
| 13
| 3
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 571
|
cpp
|
// rad[i] is longest palindrome radius if center is (i+1)/2
vector<int> LongestPalindrome(const char *str) {
int n = strlen(str);
vector<int> rad(2 * n);
int k;
for (int i = 0, j = 0; i < 2 * n; i += k, j = max(j - k, 0)) {
while (i - j >= 0 && i + j + 1 < 2 * n && str[(i - j) / 2] == str[(i + j + 1) / 2]) { j++; }
rad[i] = j;
for (k = 1; i - k >= 0 && rad[i] - k >= 0 && rad[i - k] != rad[i] - k; k++) {
rad[i + k] = min(rad[i - k], rad[i] - k);
}
}
for (int i = 0; i < 2 * n; i++) { rad[i] = (rad[i] + 1) / 2; }
return rad;
}
|
[
"cos@kmc.gr.jp"
] |
cos@kmc.gr.jp
|
ec7253189b8cc2105c4234a5449d3547e0522167
|
6b60654f5c37b788b5a0325fe22cce600794e525
|
/color.cpp
|
2e702d0b4218009b6fac114f7a9eb5f508653336
|
[] |
no_license
|
rsmnnit/Codes
|
cd45ae7a111fd7bb9e80bc85c0f273058eb3eb07
|
355daa783c625c3f1789f82482a7dbac12950210
|
refs/heads/master
| 2021-09-09T15:10:06.900600
| 2018-03-17T09:10:49
| 2018-03-17T09:10:49
| 104,431,239
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 323
|
cpp
|
#include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
scanf("%d",&t);
while(t--)
{
char s[100009];
int r=0,g=0,b=0,i,j,n;
scanf("%d",&n);
scanf("%s",s);
for(i=0;i<n;i++)
{
if(s[i]=='R')
r++;
else if(s[i]=='B')
b++;
else g++;
}
printf("%d\n",n-max(max(r,b),g));
}
return 0;
}
|
[
"noreply@github.com"
] |
rsmnnit.noreply@github.com
|
31edc4720f3995a8f443e843c2753fd1a89c4f5e
|
711e5c8b643dd2a93fbcbada982d7ad489fb0169
|
/XPSP1/NT/multimedia/dshow/vidctl/fwdseq.h
|
6567b79151d513363979a136dc7ade4c5b952610
|
[] |
no_license
|
aurantst/windows-XP-SP1
|
629a7763c082fd04d3b881e0d32a1cfbd523b5ce
|
d521b6360fcff4294ae6c5651c539f1b9a6cbb49
|
refs/heads/master
| 2023-03-21T01:08:39.870106
| 2020-09-28T08:10:11
| 2020-09-28T08:10:11
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 13,233
|
h
|
//==========================================================================;
//
// fwdseq.h : forward sequence infrastructure to extend the dshow stuff so that it
// works nicely from c++
// Copyright (c) Microsoft Corporation 1995-1999.
//
/////////////////////////////////////////////////////////////////////////////
#pragma once
#ifndef FWDSEQ_H
#define FWDSEQ_H
#include <arity.h>
template<class Base, class Enumerator_Type, class Value_Type,
class Base_Inner = Base,
class Enumerator_Type_Inner = Enumerator_Type,
class Value_Type_Inner = Value_Type,
class Allocator = Value_Type::stl_allocator> class Forward_Sequence;
// NOTE: all of this stuff with the indirected static templated functions for fetch, reset, next
// is to get around an assortment of compiler bugs.
// a) you can't have a pointer to a member function as a template parm if it references earlier template parms
// b) in the initializations of these fetch,reset,next functions if we globally initialize the
// constructor isn't getting called and the vtable isn't set up. hence we create them off the
// heap at runtime.
// enumerator_iterator
// this is an stl based forward iterator for dealing with legacy com enumerators with no prev method
template<
class Enumerator_Type,
class Value_Type,
class Enumerator_Type_Inner = Enumerator_Type,
class Value_Type_Inner = Value_Type,
class difference_type = ptrdiff_t
> class enumerator_iterator : public std::iterator<std::forward_iterator_tag, Value_Type, difference_type> {
public:
// these are for com enumerators so use __stdcall version of binders
static std_arity0pmf<Enumerator_Type_Inner, HRESULT> *Reset;
static std_arity1pmf<Enumerator_Type_Inner, Value_Type_Inner *, HRESULT> *Next;
inline enumerator_iterator(const Enumerator_Type e = Enumerator_Type(), const Value_Type c = Value_Type()) : enumerator_state(e), current_value(c) {
if (enumerator_state != NULL) {
if (!current_value) {
#ifdef FORWARD_TRACE
TRACELM(TRACE_PAINT, "enumerator_iterator constructor, attempting reset");
#endif
Enumerator_Type_Inner *peti = enumerator_state;
HRESULT hr = (*Reset)(*peti);
if (SUCCEEDED(hr)) {
Value_Type temp_val;
#ifdef FORWARD_TRACE
TRACELM(TRACE_PAINT, "enumerator_iterator constructor, attempting next()");
#endif
hr = (*Next)(*peti, &temp_val);
if (SUCCEEDED(hr) && hr != S_FALSE) {
current_value = temp_val;
#ifdef FORWARD_TRACE
TRACELSM(TRACE_PAINT, (dbgDump << "enumerator_iterator constructor, set to first value = " << current_value), "");
#endif
}
#ifdef FORWARD_TRACE
TRACELSM(TRACE_PAINT, (dbgDump << "enumerator_iterator constructor, next() hr = " << hr), "");
#endif
}
}
} else {
current_value = Value_Type();
}
#ifdef FORWARD_TRACE
TRACELM(TRACE_PAINT, "enumerator_iterator constructor complete");
#endif
}
inline enumerator_iterator(const enumerator_iterator &e) : enumerator_state(e.enumerator_state), current_value(e.current_value) {}
inline Value_Type operator*() const { return current_value; }
inline enumerator_iterator& operator++() {
if (enumerator_state) {
Value_Type temp_val;
Enumerator_Type_Inner *peti = enumerator_state;
HRESULT hr = (*Next)(*peti, &temp_val);
if (SUCCEEDED(hr) && (hr != S_FALSE)) {
current_value = temp_val;
} else {
current_value = Value_Type();
}
} else {
current_value = Value_Type();
}
return (*this);
}
inline enumerator_iterator operator++(int) {
enumerator_iterator Tmp = *this;
++*this;
return (Tmp);
}
inline enumerator_iterator& operator=(const enumerator_iterator &e) {
if (&e != this) {
enumerator_state = e.enumerator_state;
current_value = e.current_value;
}
return *this;
}
inline bool operator==(const enumerator_iterator& e) const {
#ifdef FORWARD_TRACE
TRACELSM(TRACE_PAINT, (dbgDump << "enumerator_iterator operator==() current_value = " << current_value << " e.current_value = " << e.current_value), "");
#endif
return (current_value == e.current_value);
}
inline bool operator!=(const enumerator_iterator& e) const
{return (!(*this == e)); }
inline Value_Type CurrentValue() const
{return current_value; }
protected:
Enumerator_Type enumerator_state;
Value_Type current_value;
};
// const_enumerator_iterator
template<class Enumerator_Type, class Value_Type,
class Enumerator_Type_Inner = Enumerator_Type,
class Value_Type_Inner = Value_Type,
class difference_type = ptrdiff_t> class const_enumerator_iterator :
public enumerator_iterator<Enumerator_Type,
Value_Type,
Enumerator_Type_Inner,
Value_Type_Inner,
difference_type> {
public:
inline const_enumerator_iterator(const Enumerator_Type e = Enumerator_Type(), const Value_Type c = Value_Type()) :
enumerator_iterator<Enumerator_Type,
Value_Type,
Enumerator_Type_Inner,
Value_Type_Inner,
difference_type>(e, c) {}
inline const_enumerator_iterator(const enumerator_iterator<Enumerator_Type,
Value_Type,
Enumerator_Type_Inner,
Value_Type_Inner,
difference_type> &e) :
enumerator_iterator<Enumerator_Type,
Value_Type,
Enumerator_Type_Inner,
Value_Type_Inner,
difference_type>(e) {}
inline const_enumerator_iterator(const const_enumerator_iterator &e) :
enumerator_iterator<Enumerator_Type,
Value_Type,
Enumerator_Type_Inner,
Value_Type_Inner,
difference_type>(e) {}
inline const Value_Type operator*() const {
return enumerator_iterator<Enumerator_Type,
Value_Type,
Enumerator_Type_Inner,
Value_Type_Inner,
difference_type>::operator*(); }
inline const_enumerator_iterator& operator=(const const_enumerator_iterator &e) {
if (&e != this) {
enumerator_iterator<Enumerator_Type,
Value_Type,
Enumerator_Type_Inner,
Value_Type_Inner,
difference_type>::operator=(e);
}
return *this;
}
};
// this is a stl based template for containing legacy com collections
// this is *almost* a standard stl sequence container class. the reason its
// not a complete sequence container is because for many of the com enumerators we have no prev method
// and therefore, no efficient way of reverse iterating through the collection.
// so we can't provide a bidirectional iterator only a forward one.
// call this a forward sequence container if you will
// Base is smart pointer wrapper class being contained in this container
// Base_Inner is actual wrapped class that the smart pointer class contains(usually com IXXX).
// if you're making a forward_sequence out of some ordinary class instead of a smart pointer class
// then use the default and make both Base_Inner == Base
template<
class Base,
class Enumerator_Type,
class Value_Type,
class Base_Inner = Base,
class Enumerator_Type_Inner = Enumerator_Type,
class Value_Type_Inner = Value_Type,
class Allocator = Value_Type::stl_allocator
> class Forward_Sequence : public Base {
public:
Forward_Sequence(REFCLSID rclsid, LPUNKNOWN pUnkOuter = NULL, DWORD dwClsContext = CLSCTX_ALL) : Base(rclsid, pUnkOuter, dwClsContext) {}
virtual ~Forward_Sequence() {}
typedef Allocator::value_type value_type;
typedef Allocator::value_type& reference;
typedef const Allocator::value_type& const_reference;
typedef Allocator::size_type size_type;
typedef Allocator::difference_type difference_type;
// the compiler doesn't recognize this typedef in this template. but, derived classes
// can refer to it.
typedef std_arity1pmf<Base_Inner, Enumerator_Type_Inner **, HRESULT> FetchType;
static FetchType* Fetch;
virtual FetchType* GetFetch() const {
return Fetch;
}
typedef enumerator_iterator<Enumerator_Type,
Value_Type,
Enumerator_Type_Inner,
Value_Type_Inner,
difference_type> iterator;
friend iterator;
typedef const_enumerator_iterator<Enumerator_Type,
Value_Type,
Enumerator_Type_Inner,
Value_Type_Inner,
difference_type> const_iterator;
friend const_iterator;
Forward_Sequence() {}
Forward_Sequence(const Forward_Sequence &a) : Base(a) { }
Forward_Sequence(const Base &a) : Base(a) {}
Forward_Sequence(Base_Inner *p) : Base(p) {}
Forward_Sequence(IUnknown *p) : Base(p) {}
iterator begin() {
Enumerator_Type temp_enum;
if (!(*this)) {
return iterator();
}
#ifdef FORWARD_TRACE
TRACELM(TRACE_DETAIL, "iterator ForwardSequence::begin() attempting fetch");
#endif
Base_Inner *peti = *this;
HRESULT hr = (*(GetFetch()))(*peti, &temp_enum);
if (SUCCEEDED(hr)) {
#ifdef FORWARD_TRACE
TRACELM(TRACE_DETAIL, "iterator ForwardSequence::begin() fetch succeeded");
#endif
return iterator(temp_enum);
} else {
#ifdef FORWARD_TRACE
TRACELM(TRACE_DETAIL, "iterator ForwardSequence::begin() fetch failed");
#endif
return iterator();
}
}
const_iterator begin() const {
Enumerator_Type temp_enum;
#ifdef FORWARD_TRACE
TRACELM(TRACE_DETAIL, "const_iterator ForwardSequence::begin() attempting fetch");
#endif
Base_Inner *peti = *this;
HRESULT hr = (*(GetFetch()))(*peti, &temp_enum);
if (SUCCEEDED(hr)) {
#ifdef FORWARD_TRACE
TRACELM(TRACE_DETAIL, "const_iterator ForwardSequence::begin() fetch succeeded");
#endif
return iterator(temp_enum);
} else {
#ifdef FORWARD_TRACE
TRACELM(TRACE_DETAIL, "const_iterator ForwardSequence::begin() fetch failed");
#endif
return iterator();
}
}
iterator end() {
#ifdef FORWARD_TRACE
TRACELM(TRACE_DETAIL, "iterator ForwardSequence::end()");
#endif
return iterator();
}
const_iterator end() const { return const_iterator(); }
};
#endif
// end of file fwdseq.h
|
[
"112426112@qq.com"
] |
112426112@qq.com
|
4d90d1e5b14cf3ba67150f475748e98d50c4ce30
|
829b3f2d0ae685d01fe097c03bf5c1976cbc4723
|
/deps/boost/include/boost/asio/impl/detached.hpp
|
92172e5035d4f009ca8113a165a5111134351b05
|
[
"Apache-2.0"
] |
permissive
|
liyoung1992/mediasoup-sfu-cpp
|
f0f0321f8974beb1f4263c9e658402620d82385f
|
b76564e068626b0d675f5486e56da3d69151e287
|
refs/heads/main
| 2023-08-21T21:40:51.710022
| 2021-10-14T06:29:18
| 2021-10-14T06:29:18
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,506
|
hpp
|
//
// impl/detached.hpp
// ~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2020 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef BOOST_ASIO_IMPL_DETACHED_HPP
#define BOOST_ASIO_IMPL_DETACHED_HPP
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
# pragma once
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
#include <boost/asio/detail/config.hpp>
#include <boost/asio/async_result.hpp>
#include <boost/asio/detail/variadic_templates.hpp>
#include <boost/asio/detail/push_options.hpp>
namespace boost {
namespace asio {
namespace detail {
// Class to adapt a detached_t as a completion handler.
class detached_handler
{
public:
typedef void result_type;
detached_handler(detached_t)
{
}
#if defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
template <typename... Args>
void operator()(Args...)
{
}
#else // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
void operator()()
{
}
#define BOOST_ASIO_PRIVATE_DETACHED_DEF(n) \
template <BOOST_ASIO_VARIADIC_TPARAMS(n)> \
void operator()(BOOST_ASIO_VARIADIC_TARGS(n)) \
{ \
} \
/**/
BOOST_ASIO_VARIADIC_GENERATE(BOOST_ASIO_PRIVATE_DETACHED_DEF)
#undef BOOST_ASIO_PRIVATE_DETACHED_DEF
#endif // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
};
} // namespace detail
#if !defined(GENERATING_DOCUMENTATION)
template <typename Signature>
struct async_result<detached_t, Signature>
{
typedef boost::asio::detail::detached_handler completion_handler_type;
typedef void return_type;
explicit async_result(completion_handler_type&)
{
}
void get()
{
}
#if defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
template <typename Initiation, typename RawCompletionToken, typename... Args>
static return_type initiate(
BOOST_ASIO_MOVE_ARG(Initiation) initiation,
BOOST_ASIO_MOVE_ARG(RawCompletionToken),
BOOST_ASIO_MOVE_ARG(Args)... args)
{
BOOST_ASIO_MOVE_CAST(Initiation)(initiation)(
detail::detached_handler(detached_t()),
BOOST_ASIO_MOVE_CAST(Args)(args)...);
}
#else // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
template <typename Initiation, typename RawCompletionToken>
static return_type initiate(
BOOST_ASIO_MOVE_ARG(Initiation) initiation,
BOOST_ASIO_MOVE_ARG(RawCompletionToken))
{
BOOST_ASIO_MOVE_CAST(Initiation)(initiation)(
detail::detached_handler(detached_t()));
}
#define BOOST_ASIO_PRIVATE_INITIATE_DEF(n) \
template <typename Initiation, typename RawCompletionToken, \
BOOST_ASIO_VARIADIC_TPARAMS(n)> \
static return_type initiate( \
BOOST_ASIO_MOVE_ARG(Initiation) initiation, \
BOOST_ASIO_MOVE_ARG(RawCompletionToken), \
BOOST_ASIO_VARIADIC_MOVE_PARAMS(n)) \
{ \
BOOST_ASIO_MOVE_CAST(Initiation)(initiation)( \
detail::detached_handler(detached_t()), \
BOOST_ASIO_VARIADIC_MOVE_ARGS(n)); \
} \
/**/
BOOST_ASIO_VARIADIC_GENERATE(BOOST_ASIO_PRIVATE_INITIATE_DEF)
#undef BOOST_ASIO_PRIVATE_INITIATE_DEF
#endif // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
};
#endif // !defined(GENERATING_DOCUMENTATION)
} // namespace asio
} // namespace boost
#include <boost/asio/detail/pop_options.hpp>
#endif // BOOST_ASIO_IMPL_DETACHED_HPP
|
[
"yanhua133@126.com"
] |
yanhua133@126.com
|
2057c8f57be792e1fc6174848363797c073f6bf0
|
35873b4dedb86d36584e5d3e341c40be59409680
|
/Lab1/mainwindow.cpp
|
ca9c0db81eb89cf1f6bdc4af0f496e27b70b00a7
|
[] |
no_license
|
lbchashkin/oop-miem
|
22fa60812ffacfe79fe4da27d86f619a6a2d08c0
|
538700b911180c06d039d242d605b2e084530afc
|
refs/heads/master
| 2023-02-03T14:31:47.321529
| 2020-12-04T19:56:28
| 2020-12-04T19:56:28
| 293,264,827
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,341
|
cpp
|
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "dialog.h"
#include "lampdialog.h"
#include <iostream>
#include <QHeaderView>
#include <QStringLiteral>
#include <QAbstractItemModel>
#include <QFileDialog>
#include <QString>
#include <QJsonParseError>
#include <QMessageBox>
using namespace std;
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
lampcollection = NULL;
ui->setupUi(this);
ui->tableWidget->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);
ui->tableWidget->verticalHeader()->setSectionResizeMode(QHeaderView::Stretch);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::setTableWidget(int n, int m) {
//Изменение размеров коллекции
if (n>0 && m>0) {
ui->tableWidget->setRowCount(n);
ui->tableWidget->setColumnCount(m);
for (int i = 0; i<n; i++)
for (int j=0; j<m; j++)
{
QAbstractItemModel *model = ui->tableWidget->model();
model->setData(model->index(i, j), QStringLiteral("#%1,%2").arg(i).arg(j));
ui->tableWidget->item(i, j)->setFlags(Qt::ItemIsEnabled);
}
ui->n_number->setText(QString::number(lampcollection->getLength()));
ui->m_number->setText(QString::number(lampcollection->getWidth()));
ui->count->setText(QString::number(lampcollection->getNumberOfLamps()));
ui->x_SpinBox->setEnabled(1);
ui->x_SpinBox->setValue(0);
ui->x_SpinBox->setMaximum(n-0.01);
ui->y_SpinBox->setEnabled(1);
ui->y_SpinBox->setValue(0);
ui->y_SpinBox->setMaximum(m-0.01);
ui->z_SpinBox->setEnabled(1);
ui->z_SpinBox->setValue(0);
ui->z_SpinBox->setMaximum(LampCollection::HEIGHT_DEFAULT-0.01);
ui->h_SpinBox->setEnabled(1);
ui->h_SpinBox->setValue(LampCollection::HEIGHT_DEFAULT);
ui->h_SpinBox->setMaximum(LampCollection::HEIGHT_MAX);
ui->h_SpinBox->setMinimum(LampCollection::HEIGHT_MIN);
ui->pushButton->setEnabled(1);
ui->checkBox->setEnabled(1);
}
}
void MainWindow::on_tableWidget_itemDoubleClicked(QTableWidgetItem *item)
{
//Двойное нажатие
Lamp* lamp = lampcollection->getLamp(item->row(), item->column());
int k;
if (!lamp)
k = 0;
else
k = lamp->getType()+1;
LampDialog d(this, lamp, k);
if (d.exec()) {
lampcollection->setLamp(item->row(), item->column(), d.getLamp());
setTableWidget(lampcollection->getLength(), lampcollection->getWidth());
}
}
void MainWindow::on_action_triggered()
{
//Создание коллекции
Dialog d(this);
if (d.exec()) {
int n = d.getRowNumber();
int m = d.getColumnNumber();
if (lampcollection)
delete lampcollection;
lampcollection = new LampCollection(n, m);
setTableWidget(n, m);
}
}
void MainWindow::on_action_2_triggered()
{
//Открытие файла
QString filename = QFileDialog::getOpenFileName(this, "Open LampCollection", ".", "JSON files (*.json)");
if (!filename.isEmpty())
try {
LampCollection* templampcollection = new LampCollection(LampCollectionFromJson(filename));
if (lampcollection)
delete lampcollection;
lampcollection = templampcollection;
int n = lampcollection->getLength();
int m = lampcollection->getWidth();
setTableWidget(n, m);
} catch (exception) {
//Ошибка
QMessageBox::critical(this, "Ошибка", "Ошибка при чтении данных");
}
}
void MainWindow::on_action_3_triggered()
{
//Сохранение коллекции
QString filename = QFileDialog::getSaveFileName(this, "Save LampCollection", ".", "JSON files (*.json)");
if (not filename.isEmpty()) {
if (lampcollection && filename.endsWith(".json"))
LampCollectionToJson(filename, *lampcollection);
else if (!filename.endsWith(".json"))
QMessageBox::critical(this, "Ошибка", "Неверный формат!");
else
QMessageBox::critical(this, "Ошибка", "Коллекция не задана!");
}
}
void MainWindow::on_checkBox_stateChanged(int arg1)
{
//Выставить значения по умолчанию
if (arg1) {
ui->x_SpinBox->setValue(0);
ui->x_SpinBox->setEnabled(0);
ui->y_SpinBox->setValue(0);
ui->y_SpinBox->setEnabled(0);
ui->z_SpinBox->setValue(0);
ui->z_SpinBox->setEnabled(0);
ui->h_SpinBox->setValue(LampCollection::HEIGHT_DEFAULT);
ui->h_SpinBox->setEnabled(0);
}
else {
ui->x_SpinBox->setEnabled(1);
ui->y_SpinBox->setEnabled(1);
ui->z_SpinBox->setEnabled(1);
ui->h_SpinBox->setEnabled(1);
}
}
void MainWindow::on_h_SpinBox_valueChanged(double arg1)
{
//Изменение значения высоты
if (ui->z_SpinBox->isEnabled()) {
if (ui->z_SpinBox->value() > arg1)
ui->z_SpinBox->setValue(arg1-0.01);
ui->z_SpinBox->setMaximum(arg1-0.01);
}
}
void MainWindow::on_pushButton_clicked()
{
//Расчёт освещённости в точке
float x, y, z, h;
x = ui->x_SpinBox->value();
y = ui->y_SpinBox->value();
z = ui->z_SpinBox->value();
h = ui->h_SpinBox->value();
ui->result->setEnabled(1);
double result = lampcollection->getIlluminance(x, y, z, h);;
ui->result->setText(QString::number(result, 'f', 4));
ui->result->setEnabled(0);
}
void MainWindow::on_action_4_triggered()
{
//О программе
QMessageBox::about(this, "О программе", "<h2>Объектно-ориентированное програмиирование</h2>" \
"<font size=4>Программа для работы с классами Лампа и Коллекция Ламп</font><br><font size=4>Вариант 14</font>" \
"<br><font size=4>Разработчик: Чашкин Леонид, БИВ194</font><p align='center'>МИЭМ НИУ ВШЭ, 2020</p>");
}
|
[
"lbchashkin@edu.hse.ru"
] |
lbchashkin@edu.hse.ru
|
2ab15908e526ec577db1e68b9b4e540216913c24
|
8df64af68085e3bd3eeb99ab6679eb074e80842b
|
/opensimAD-install/sdk/include/OpenSim/Simulation/Model/ActuatorPowerProbe.h
|
e9bdc498bc3e398d81e7d7cb2c90821343a5f041
|
[
"Apache-2.0"
] |
permissive
|
VDB-Bram/opensimAD
|
ace0a9db6a844ffde7f03f18f9c0a31d3b39bf40
|
7afad33dc669f3540fdffb54e8e93374dceb3624
|
refs/heads/main
| 2023-08-13T09:10:35.158779
| 2021-10-02T01:59:30
| 2021-10-02T01:59:30
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 7,482
|
h
|
//#ifndef OPENSIM_ACTUATOR_POWER_PROBE_H_
//#define OPENSIM_ACTUATOR_POWER_PROBE_H_
///* -------------------------------------------------------------------------- *
//* OpenSim: ActuatorPowerProbe.h *
//* -------------------------------------------------------------------------- *
//* The OpenSim API is a toolkit for musculoskeletal modeling and simulation. *
//* See http://opensim.stanford.edu and the NOTICE file for more information. *
//* OpenSim is developed at Stanford University and supported by the US *
//* National Institutes of Health (U54 GM072970, R24 HD065690) and by DARPA *
//* through the Warrior Web program. *
//* *
//* Copyright (c) 2005-2017 Stanford University and the Authors *
//* Author(s): Tim Dorn *
//* *
//* 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
//#include "Probe.h"
//
//
//namespace OpenSim {
//
////===============================================================================
//// ACTUATOR POWER PROBE
////===============================================================================
///**
//* ActuatorPowerProbe is a ModelComponent Probe for computing an operation on a
//* actuator power or sum of actuator powers in the model during a simulation.
//* E.g. Actuator work is the integral of actuator power with respect to time, so by using the
//* ActuatorPowerProbe with the 'integrate' operation, Actuator work may be computed.
//*
//* @author Tim Dorn
//*/
//class OSIMSIMULATION_API ActuatorPowerProbe : public Probe {
// OpenSim_DECLARE_CONCRETE_OBJECT(ActuatorPowerProbe, Probe);
//
//public:
// //==============================================================================
// // PROPERTIES
// //==============================================================================
// /** List of Actuators to probe. **/
// OpenSim_DECLARE_LIST_PROPERTY(actuator_names, std::string,
// "Specify a list of model Actuators whose power should be calculated."
// "Use 'all' to probe all actuators.");
//
// /** Flag to specify whether to report the sum of all powers,
// or report each power value separately. **/
// OpenSim_DECLARE_PROPERTY(sum_powers_together, bool,
// "Flag to specify whether to report the sum of all actuator powers, "
// "or report each actuator power value separately.");
//
// /** Element-wise power exponent to apply to each actuator power prior to
// the Probe operation. For example, if two actuators A1 and A2 are given in
// actuator_names, then the Probe value will be equal to Power_A1^exponent +
// Power_A2^exponent.
// **/
// OpenSim_DECLARE_PROPERTY(exponent, double,
// "Element-wise power exponent to apply to each actuator power prior to the Probe operation.");
//
// //==============================================================================
// // PUBLIC METHODS
// //==============================================================================
// //--------------------------------------------------------------------------
// // Constructor(s) and Setup
// //--------------------------------------------------------------------------
// /** Default constructor */
// ActuatorPowerProbe();
// /** Convenience constructor */
// ActuatorPowerProbe(const Array<std::string> actuator_names,
// const bool sum_powers_together, const double exponent);
//
// // Uses default (compiler-generated) destructor, copy constructor, and copy
// // assignment operator.
//
// //--------------------------------------------------------------------------
// // Get and Set
// //--------------------------------------------------------------------------
// /** Returns the names of the Actuators being probed. */
// const Property<std::string>& getActuatorNames() const;
//
// /** Returns whether to report sum of all actuator powers together
// or report the actuator powers individually. */
// const bool getSumPowersTogether() const;
//
// /** Returns the exponent to apply to each actuator power. */
// const double getExponent() const;
//
// /** Sets the names of the Actuators being probed. */
// void setActuatorNames(const Array<std::string>& actuatorNames);
//
// /** Sets whether to report sum of all actuator powers together
// or report the actuator powers individually. */
// void setSumPowersTogether(bool sum_powers_together);
//
// /** Sets the exponent to apply to each actuator power. */
// void setExponent(const double exponent);
//
//
// //--------------------------------------------------------------------------
// // Computation
// //--------------------------------------------------------------------------
// /** Compute the Actuator power. */
// SimTK::Vector computeProbeInputs(const SimTK::State& state) const override;
//
// /** Returns the number of probe inputs in the vector returned by
// * computeProbeInputs(). */
// int getNumProbeInputs() const override;
//
// /** Returns the column labels of the probe values for reporting.
// Currently uses the Probe name as the column label, so be sure
// to name your probe appropriately! */
// OpenSim::Array<std::string> getProbeOutputLabels() const override;
//
// // connectToModel is protected for Java wrapping purpose
// void extendConnectToModel(Model& aModel) override final;
//
// //==============================================================================
// // PRIVATE
// //==============================================================================
//private:
// // The index inside OpenSim::ActuatorSet that corresponds to each actuator
// // power being probed.
// SimTK::Array_<int> _actuatorIndex;
//
// //--------------------------------------------------------------------------
// // ModelComponent Interface
// //--------------------------------------------------------------------------
// void setNull();
// void constructProperties();
//
// //==============================================================================
//}; // END of class ActuatorPowerProbe
////==============================================================================
////==============================================================================
//
//} // end of namespace OpenSim
//
//#endif // OPENSIM_ACTUATOR_POWER_PROBE_H_
|
[
"antoinefalisse@gmail.com"
] |
antoinefalisse@gmail.com
|
fef97bbeb0833b3c41e3ac252f98ba796da5d5bb
|
c18e3cba4f445613b2ed7503061cdfe088d46da5
|
/docs/parallel/concrt/codesnippet/CPP/best-practices-in-the-parallel-patterns-library_6.cpp
|
9c07d5e3870900d6124c0d1d84ca1e5a36a1cafc
|
[
"CC-BY-4.0",
"MIT"
] |
permissive
|
MicrosoftDocs/cpp-docs
|
dad03e548e13ca6a6e978df3ba84c4858c77d4bd
|
87bacc85d5a1e9118a69122d84c43d70f6893f72
|
refs/heads/main
| 2023-09-01T00:19:22.423787
| 2023-08-28T17:27:40
| 2023-08-28T17:27:40
| 73,740,405
| 1,354
| 1,213
|
CC-BY-4.0
| 2023-09-08T21:27:46
| 2016-11-14T19:38:32
|
PowerShell
|
UTF-8
|
C++
| false
| false
| 548
|
cpp
|
// Sorts the given sequence in the specified order.
template <class T>
void parallel_bitonic_sort(T* items, int lo, int n, bool dir)
{
if (n > 1)
{
// Divide the array into two partitions and then sort
// the partitions in different directions.
int m = n / 2;
parallel_invoke(
[&] { parallel_bitonic_sort(items, lo, m, INCREASING); },
[&] { parallel_bitonic_sort(items, lo + m, m, DECREASING); }
);
// Merge the results.
parallel_bitonic_merge(items, lo, n, dir);
}
}
|
[
"v-zhecai@microsoft.com"
] |
v-zhecai@microsoft.com
|
545fb489e06c8d52d216e9403a7a08dd0b29ca50
|
52ffdc31f5b6c5444128b94090e765804adcd0b9
|
/src/box.h
|
c7208d98967dc30e4154e14a25764d3935aba16b
|
[] |
no_license
|
dondanndy/RayTracerWiFiSimulator
|
a88ba7bc112ed5da2ca96a8966fa72718353fb79
|
86f1d7f8608ea48d9dfe1107f30cdebd026f1f53
|
refs/heads/main
| 2023-06-23T20:07:46.360704
| 2021-07-22T23:05:57
| 2021-07-22T23:05:57
| 379,912,912
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 287
|
h
|
#pragma once
#include "vec3.h"
#include "wall.h"
#include "ray.h"
class box {
public:
Wall walls[6];
point3 origin;
float side;
public:
box(){}
__host__ __device__ box(const point3& og, const float side);
__host__ __device__ bool hit(const Ray& r, float& final_power) const;
};
|
[
"daniel.10.10.1997@gmail.com"
] |
daniel.10.10.1997@gmail.com
|
958f73d36f0bf9f9b7eb1b0aef451cb059787c2b
|
87d8af054e17e0c346b6f59636402883fbf0158d
|
/Cpp/SDK/MovieSceneCapture_structs.h
|
c3265b3cb7af3126a6f66802c60e431b09abc09e
|
[] |
no_license
|
AthenaVision/SoT-SDK-2
|
53676d349bca171b5e48dc812fd7bb97b9a4f1d8
|
4a803206d707a081b86c89a4b866a1761119613d
|
refs/heads/main
| 2023-03-20T10:48:21.491008
| 2021-03-10T21:55:10
| 2021-03-10T21:55:10
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,197
|
h
|
#pragma once
// Name: sot, Version: 4.2
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Enums
//---------------------------------------------------------------------------
// Enum MovieSceneCapture.EHDRCaptureGamut
enum class MovieSceneCapture_EHDRCaptureGamut : uint8_t
{
HCGM_Rec709 = 0,
HCGM_P3DCI = 1,
HCGM_Rec2020 = 2,
HCGM_ACES = 3,
HCGM_ACEScg = 4,
HCGM_MAX = 5,
};
//---------------------------------------------------------------------------
// Script Structs
//---------------------------------------------------------------------------
// ScriptStruct MovieSceneCapture.CaptureResolution
// 0x0008
struct FCaptureResolution
{
uint32_t ResX; // 0x0000(0x0004) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
uint32_t ResY; // 0x0004(0x0004) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
};
// ScriptStruct MovieSceneCapture.CaptureProtocolID
// 0x0008
struct FCaptureProtocolID
{
struct FName Identifier; // 0x0000(0x0008) (Edit, ZeroConstructor, EditConst, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
};
// ScriptStruct MovieSceneCapture.MovieSceneCaptureSettings
// 0x0050
struct FMovieSceneCaptureSettings
{
struct FDirectoryPath OutputDirectory; // 0x0000(0x0010) (Edit, Config)
bool bCreateTemporaryCopiesOfLevels; // 0x0010(0x0001) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay)
unsigned char UnknownData_LBJO[0x7]; // 0x0011(0x0007) MISSED OFFSET (FIX SPACE BETWEEN PREVIOUS PROPERTY)
class UClass* GameModeOverride; // 0x0018(0x0008) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, UObjectWrapper, HasGetValueTypeHash)
struct FString OutputFormat; // 0x0020(0x0010) (Edit, ZeroConstructor, Config, HasGetValueTypeHash)
bool bOverwriteExisting; // 0x0030(0x0001) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay)
bool bUseRelativeFrameNumbers; // 0x0031(0x0001) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay)
unsigned char UnknownData_EXR9[0x2]; // 0x0032(0x0002) MISSED OFFSET (FIX SPACE BETWEEN PREVIOUS PROPERTY)
int HandleFrames; // 0x0034(0x0004) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash)
unsigned char ZeroPadFrameNumbers; // 0x0038(0x0001) (ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
unsigned char UnknownData_5JQD[0x3]; // 0x0039(0x0003) MISSED OFFSET (FIX SPACE BETWEEN PREVIOUS PROPERTY)
int FrameRate; // 0x003C(0x0004) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
struct FCaptureResolution Resolution; // 0x0040(0x0008) (Edit, Config)
bool bEnableTextureStreaming; // 0x0048(0x0001) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay)
bool bCinematicEngineScalability; // 0x0049(0x0001) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor)
bool bCinematicMode; // 0x004A(0x0001) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor)
bool bAllowMovement; // 0x004B(0x0001) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay)
bool bAllowTurning; // 0x004C(0x0001) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay)
bool bShowPlayer; // 0x004D(0x0001) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay)
bool bShowHUD; // 0x004E(0x0001) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, AdvancedDisplay)
unsigned char UnknownData_AX7Q[0x1]; // 0x004F(0x0001) MISSED OFFSET (PADDING)
};
// ScriptStruct MovieSceneCapture.CompositionGraphCapturePasses
// 0x0010
struct FCompositionGraphCapturePasses
{
TArray<struct FString> Value; // 0x0000(0x0010) (Edit, ZeroConstructor)
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
|
[
"59620169+NtLoadDriverEx@users.noreply.github.com"
] |
59620169+NtLoadDriverEx@users.noreply.github.com
|
ecb5bc9c831af5ea9ce64acc417973ca3414e77f
|
12a7d6c95a2bd988e14fbe2b3d324f12f0282101
|
/Algorithms/WCBS/MAPF_stripped_WCBS/TreeD/CTabuSearch.cpp
|
6634cbb52d0944a6321127ffc48c0fdeb2b71a6c
|
[] |
no_license
|
zhuqinghe/MAPF
|
1f7c1ec7aa99a2fb9f12c80ff654c80e6ba725ae
|
b49fdd48c0e4612995ad9cc0cc9bc767c455872e
|
refs/heads/master
| 2022-11-11T07:26:08.341393
| 2020-07-01T20:13:53
| 2020-07-01T20:13:53
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 21,789
|
cpp
|
#include "CTabuSearch.h"
#include "cputime.h"
CTabuSearch::CTabuSearch(CTreeDecomposition* cctd){
ctd=cctd;
cchg=ctd->GetConstraintHypergraph();
vector<STreeNode>& sTreeNodes=ctd->GetTreeNodes();
sTabuTreeNodes.resize(sTreeNodes.size());
numVars=cchg->GetNumVars();
numCons=cchg->GetNumCons();
var2Loc.resize(numVars);
isPresent.resize(numVars); for(int i=0;i<numVars;i++) isPresent[i]=false;
isEliminated.resize(numVars); for(int i=0;i<numVars;i++) isEliminated[i]=false;
isCovered.resize(numCons); for(int i=0;i<numCons;i++) isCovered[i]=false;
//Mega Copy
root=-1;
for(int i=0,isize=sTreeNodes.size();i<isize;i++){
STreeNode& stn=sTreeNodes[i];
STabuTreeNode& sttn=sTabuTreeNodes[i];
sttn.childNodes=stn.childNodes;
sttn.coveredCons=stn.coveredCons;
sttn.elimVar=stn.elimVar;
var2Loc[sttn.elimVar]=i;
sttn.otherVars=stn.otherVars;
sttn.parent=stn.parent;
if(stn.parent==-1){
if(root==-1){
root=i;
}
else{
cout<<"Error \"CTabuSearch\": Unexpected case, more than one root in the tree decomposition."<<endl;
cout<<"Current root value "<<root<<endl;
exit(1);
}
}
}
sTabuTreeNodes[root].parentalWidth=-1;
FindSubTreeValues(root);
sTabuTreeNodes[root].parentalQuadSum=0;
UpdateParentalValues(root);
bestWidth=sTabuTreeNodes[root].mySubTreeWidth;
//cout<<"bestWidth "<<bestWidth<<endl;
}
void CTabuSearch::Print(){
cout<<"Printing the TabuSearchTree ..."<<endl;
for(int i=0,isize=sTabuTreeNodes.size();i<isize;i++){
STabuTreeNode& sttn=sTabuTreeNodes[i];
cout<<"Node "<<i<<" :"<<endl;
cout<<"\t"<<"parent "<<sttn.parent<<endl;
cout<<"\t"<<"Vars : ";
cout<<sttn.elimVar<<" ";
for(vector<int>::iterator itr=sttn.otherVars.begin();itr!=sttn.otherVars.end();itr++)
cout<<*itr<<" ";
cout<<endl;
cout<<"\t"<<"CoveredCons : ";
for(vector<int>::iterator itr=sttn.coveredCons.begin();itr!=sttn.coveredCons.end();itr++)
cout<<*itr<<" ";
cout<<endl;
cout<<"\t"<<"ChildNodes : ";
for(vector<int>::iterator itr=sttn.childNodes.begin();itr!=sttn.childNodes.end();itr++)
cout<<*itr<<" ";
cout<<endl;
cout<<"\t"<<"mySTW "<<sttn.mySubTreeWidth <<endl;
cout<<"\t"<<"mySTQS "<<sttn.mySubTreeQuadSum <<endl;
cout<<"\t"<<"parenW "<<sttn.parentalWidth <<endl;
cout<<"\t"<<"parenQS "<<sttn.parentalQuadSum <<endl;
cout<<endl;
}
}
void CTabuSearch::FindSubTreeValues(int ptr){
STabuTreeNode& sttn=sTabuTreeNodes[ptr];
for(int i=0,isize=sttn.childNodes.size();i<isize;i++)
FindSubTreeValues(sttn.childNodes[i]);
int maxWidth=sttn.otherVars.size();
for(int i=0,isize=sttn.childNodes.size();i<isize;i++)
if(maxWidth<sTabuTreeNodes[sttn.childNodes[i]].mySubTreeWidth)
maxWidth=sTabuTreeNodes[sttn.childNodes[i]].mySubTreeWidth;
sttn.mySubTreeWidth=maxWidth;
long quadSum=sttn.otherVars.size()*sttn.otherVars.size();
for(int i=0,isize=sttn.childNodes.size();i<isize;i++)
quadSum+=sTabuTreeNodes[sttn.childNodes[i]].mySubTreeQuadSum;
sttn.mySubTreeQuadSum=quadSum;
}
void CTabuSearch::UpdateParentalValues(int ptr){
STabuTreeNode& sttn=sTabuTreeNodes[ptr];
int otherVarsSize=sttn.otherVars.size();
int childNodesSize=sttn.childNodes.size();
if(childNodesSize==0) return; // leaf case
vector<int> ownValue; ownValue.resize(childNodesSize);
vector<int> up; up.resize(childNodesSize);
vector<int> down; down.resize(childNodesSize);
for(int i=0;i<childNodesSize;i++)
ownValue[i]=sTabuTreeNodes[sttn.childNodes[i]].mySubTreeWidth;
if(sttn.parentalWidth<otherVarsSize)
up[0]=otherVarsSize;
else
up[0]=sttn.parentalWidth;
for(int i=1;i<childNodesSize;i++)
if(ownValue[i-1]<up[i-1])
up[i]=up[i-1];
else
up[i]=ownValue[i-1];
if(sttn.parentalWidth<otherVarsSize)
down[childNodesSize-1]=otherVarsSize;
else
down[childNodesSize-1]=sttn.parentalWidth;
for(int i=childNodesSize-2;i>=0;i--)
if(ownValue[i+1]<down[i+1])
down[i]=down[i+1];
else
down[i]=ownValue[i+1];
long localSum=sttn.parentalQuadSum+sttn.mySubTreeQuadSum;
for(int i=0;i<childNodesSize;i++){
if(up[i]>down[i])
sTabuTreeNodes[sttn.childNodes[i]].parentalWidth=up[i];
else
sTabuTreeNodes[sttn.childNodes[i]].parentalWidth=down[i];
sTabuTreeNodes[sttn.childNodes[i]].parentalQuadSum = localSum
-sTabuTreeNodes[sttn.childNodes[i]].mySubTreeQuadSum;
}
for(int i=0;i<childNodesSize;i++)
UpdateParentalValues(sttn.childNodes[i]);
}
SWidthSumPair CTabuSearch::Evaluate(int var){
//var is the variable whose up-move you wish to evaluate
SWidthSumPair sWidthSumPair;
STabuTreeNode& sttnB=sTabuTreeNodes[var2Loc[var]];
if(sttnB.parent==-1){
sWidthSumPair.width=sttnB.mySubTreeWidth;
sWidthSumPair.sum=sttnB.mySubTreeQuadSum;
return sWidthSumPair;
}
STabuTreeNode& sttnA=sTabuTreeNodes[sttnB.parent];
bool inA;
int elimVarA,elimVarB;
vector<int> newACoveredCons,newAChildNodes,newAOtherVars;
vector<int> newBCoveredCons,newBChildNodes,newBOtherVars;
newACoveredCons=sttnA.coveredCons;
newAChildNodes=sttnA.childNodes; // remember 'B' needs to be removed from this vector
elimVarA=sttnA.elimVar; elimVarB=sttnB.elimVar;
for(vector<int>::iterator itr=sttnB.coveredCons.begin();itr!=sttnB.coveredCons.end();itr++){
vector<int>& hyperedge=cchg->GetHyperegde(*itr);
inA=false;
for(vector<int>::iterator itr2=hyperedge.begin();itr2!=hyperedge.end();itr2++)
if(*itr2==elimVarA){
inA=true; break;
}
if(inA) newACoveredCons.push_back(*itr);
else newBCoveredCons.push_back(*itr);
}
for(vector<int>::iterator itr=sttnB.childNodes.begin();itr!=sttnB.childNodes.end();itr++){
vector<int>& otherVars=sTabuTreeNodes[*itr].otherVars;
inA=false;
for(vector<int>::iterator itr2=otherVars.begin();itr2!=otherVars.end();itr2++)
if(*itr2==elimVarA){
inA=true; break;
}
if(inA) newAChildNodes.push_back(*itr);
else newBChildNodes.push_back(*itr);
}
//Note: there is a minor violation, since newBChildNodes has to contain newA-node
int newTreeWidth=-1; // to store the treeWidth of the move-up resulting decomposition
//code to obtain newAOtherVars, 'remember that the old-B is not a child node of newA
for(vector<int>::iterator itr=newACoveredCons.begin();itr!=newACoveredCons.end();itr++){
vector<int>& hyperedge=cchg->GetHyperegde(*itr);
for(vector<int>::iterator itr2=hyperedge.begin();itr2!=hyperedge.end();itr2++)
if(*itr2!=elimVarA && !isPresent[*itr2]){
isPresent[*itr2]=true; newAOtherVars.push_back(*itr2);
}
}
for(vector<int>::iterator itr=newAChildNodes.begin();itr!=newAChildNodes.end();itr++){
if(*itr==var2Loc[var]) continue; // skipping the old-B, its not a child node of newA
vector<int>& otherVars=sTabuTreeNodes[*itr].otherVars;
if(sTabuTreeNodes[*itr].mySubTreeWidth>newTreeWidth)
newTreeWidth=sTabuTreeNodes[*itr].mySubTreeWidth;
for(vector<int>::iterator itr2=otherVars.begin();itr2!=otherVars.end();itr2++)
if(!isPresent[*itr2] && *itr2!=elimVarA){
isPresent[*itr2]=true; newAOtherVars.push_back(*itr2);
}
}
for(int i=0,isize=newAOtherVars.size();i<isize;i++)
isPresent[newAOtherVars[i]]=false;
if(newTreeWidth<newAOtherVars.size()) newTreeWidth=newAOtherVars.size();
for(vector<int>::iterator itr=newBCoveredCons.begin();itr!=newBCoveredCons.end();itr++){
vector<int>& hyperedge=cchg->GetHyperegde(*itr);
for(vector<int>::iterator itr2=hyperedge.begin();itr2!=hyperedge.end();itr2++)
if(*itr2!=elimVarB && !isPresent[*itr2]){
isPresent[*itr2]=true; newBOtherVars.push_back(*itr2);
}
}
for(vector<int>::iterator itr=newBChildNodes.begin();itr!=newBChildNodes.end();itr++){
vector<int>& otherVars=sTabuTreeNodes[*itr].otherVars;
if(sTabuTreeNodes[*itr].mySubTreeWidth>newTreeWidth)
newTreeWidth=sTabuTreeNodes[*itr].mySubTreeWidth;
for(vector<int>::iterator itr2=otherVars.begin();itr2!=otherVars.end();itr2++)
if(!isPresent[*itr2] && *itr2!=elimVarB){
isPresent[*itr2]=true; newBOtherVars.push_back(*itr2);
}
}
for(vector<int>::iterator itr2=newAOtherVars.begin();itr2!=newAOtherVars.end();itr2++)
if(!isPresent[*itr2] && *itr2!=elimVarB){
isPresent[*itr2]=true; newBOtherVars.push_back(*itr2);
}
for(int i=0,isize=newBOtherVars.size();i<isize;i++)
isPresent[newBOtherVars[i]]=false;
if(newTreeWidth<newBOtherVars.size()) newTreeWidth=newBOtherVars.size();
if(newTreeWidth<sttnA.parentalWidth) newTreeWidth=sttnA.parentalWidth;
sWidthSumPair.width=newTreeWidth;
sWidthSumPair.sum= -(sttnA.otherVars.size()*sttnA.otherVars.size())
-(sttnB.otherVars.size()*sttnB.otherVars.size())
+(newAOtherVars.size()*newAOtherVars.size())
+(newBOtherVars.size()*newBOtherVars.size());
return sWidthSumPair;
}
void CTabuSearch::MoveUp(int var){
// note this method could be extremely improved by using an incremental version,
//hint: heap and (heap2)-or-(degree-loc pair style) data-structure
//entry condition: var-node is not root
int locA,locB; locB=var2Loc[var];locA=sTabuTreeNodes[locB].parent;
STabuTreeNode newA; STabuTreeNode& sttnA=sTabuTreeNodes[locA];
STabuTreeNode newB; STabuTreeNode& sttnB=sTabuTreeNodes[locB];
newA.parent=locB;
newB.parent=sttnA.parent;
newA.elimVar=sttnA.elimVar;
newB.elimVar=sttnB.elimVar;
//cout<<"sttnA.co+chi:"<<sttnA.childNodes.size()+sttnA.coveredCons.size()<<" ";
//cout<<"sttnA.co size "<<sttnA.coveredCons.size()<<" ";
bool inA;
int elimVarA,elimVarB;
vector<int>& newACoveredCons=newA.coveredCons;
vector<int>& newAChildNodes=newA.childNodes;
vector<int>& newAOtherVars=newA.otherVars;
vector<int>& newBCoveredCons=newB.coveredCons;
vector<int>& newBChildNodes=newB.childNodes;
vector<int>& newBOtherVars=newB.otherVars;
newACoveredCons=sttnA.coveredCons;
newAChildNodes=sttnA.childNodes; // remember 'B' needs to be removed from this vector
elimVarA=sttnA.elimVar; elimVarB=sttnB.elimVar;
for(vector<int>::iterator itr=sttnB.coveredCons.begin();itr!=sttnB.coveredCons.end();itr++){
vector<int>& hyperedge=cchg->GetHyperegde(*itr);
inA=false;
for(vector<int>::iterator itr2=hyperedge.begin();itr2!=hyperedge.end();itr2++)
if(*itr2==elimVarA){
inA=true; break;
}
if(inA) newACoveredCons.push_back(*itr);
else newBCoveredCons.push_back(*itr);
}
for(vector<int>::iterator itr=sttnB.childNodes.begin();itr!=sttnB.childNodes.end();itr++){
vector<int>& otherVars=sTabuTreeNodes[*itr].otherVars;
inA=false;
for(vector<int>::iterator itr2=otherVars.begin();itr2!=otherVars.end();itr2++)
if(*itr2==elimVarA){
inA=true; break;
}
if(inA) newAChildNodes.push_back(*itr);
else newBChildNodes.push_back(*itr);
}
//Note: there is a minor violation, since newBChildNodes has to contain newA-node
//code to obtain newAOtherVars, 'remember that the old-B is not a child node of newA
for(vector<int>::iterator itr=newACoveredCons.begin();itr!=newACoveredCons.end();itr++){
vector<int>& hyperedge=cchg->GetHyperegde(*itr);
for(vector<int>::iterator itr2=hyperedge.begin();itr2!=hyperedge.end();itr2++)
if(*itr2!=elimVarA && !isPresent[*itr2]){
isPresent[*itr2]=true; newAOtherVars.push_back(*itr2);
}
}
for(vector<int>::iterator itr=newAChildNodes.begin();itr!=newAChildNodes.end();itr++){
if(*itr==locB){ // skipping the old-B, its not a child node of newA
*itr=newAChildNodes[newAChildNodes.size()-1];
newAChildNodes.pop_back();
itr--; continue;
}
vector<int>& otherVars=sTabuTreeNodes[*itr].otherVars;
for(vector<int>::iterator itr2=otherVars.begin();itr2!=otherVars.end();itr2++)
if(!isPresent[*itr2] && *itr2!=elimVarA){
isPresent[*itr2]=true; newAOtherVars.push_back(*itr2);
}
}
for(int i=0,isize=newAOtherVars.size();i<isize;i++)
isPresent[newAOtherVars[i]]=false;
for(vector<int>::iterator itr=newBCoveredCons.begin();itr!=newBCoveredCons.end();itr++){
vector<int>& hyperedge=cchg->GetHyperegde(*itr);
for(vector<int>::iterator itr2=hyperedge.begin();itr2!=hyperedge.end();itr2++)
if(*itr2!=elimVarB && !isPresent[*itr2]){
isPresent[*itr2]=true; newBOtherVars.push_back(*itr2);
}
}
for(vector<int>::iterator itr=newBChildNodes.begin();itr!=newBChildNodes.end();itr++){
vector<int>& otherVars=sTabuTreeNodes[*itr].otherVars;
for(vector<int>::iterator itr2=otherVars.begin();itr2!=otherVars.end();itr2++)
if(!isPresent[*itr2] && *itr2!=elimVarB){
isPresent[*itr2]=true; newBOtherVars.push_back(*itr2);
}
}
for(vector<int>::iterator itr2=newAOtherVars.begin();itr2!=newAOtherVars.end();itr2++)
if(!isPresent[*itr2] && *itr2!=elimVarB){
isPresent[*itr2]=true; newBOtherVars.push_back(*itr2);
}
for(int i=0,isize=newBOtherVars.size();i<isize;i++)
isPresent[newBOtherVars[i]]=false;
newBChildNodes.push_back(locA); // since now, newA is a child node of newB
sTabuTreeNodes[locA]=newA;
sTabuTreeNodes[locB]=newB;
for(vector<int>::iterator itr=newAChildNodes.begin();itr!=newAChildNodes.end();itr++)
sTabuTreeNodes[*itr].parent=locA;
for(vector<int>::iterator itr=newBChildNodes.begin();itr!=newBChildNodes.end();itr++)
sTabuTreeNodes[*itr].parent=locB;
if(newB.parent==-1)
root=locB;
else{
for(vector<int>::iterator itr=sTabuTreeNodes[newB.parent].childNodes.begin();itr!=sTabuTreeNodes[newB.parent].childNodes.end();itr++)
if(*itr==locA)
{*itr=locB; break;}
}
sTabuTreeNodes[root].parentalWidth=-1;
FindSubTreeValues(root);
sTabuTreeNodes[root].parentalQuadSum=0;
UpdateParentalValues(root);
}
void CTabuSearch::Dummy(){
SWidthSumPair sWidthSumPair;
int rootVar;
int minVar;
SWidthSumPair minSWidthSumPair;
cout<<endl;
do{
RIPCheck();
rootVar=sTabuTreeNodes[root].elimVar; minVar=rootVar;
minSWidthSumPair.width=sTabuTreeNodes[root].mySubTreeWidth;
minSWidthSumPair.sum=0;
cout<<"rootWidth: "<<sTabuTreeNodes[root].mySubTreeWidth<<" ";
for(int i=0;i<numVars;i++){
if(i==rootVar) continue;
sWidthSumPair=Evaluate(i);
if( (minSWidthSumPair.width>sWidthSumPair.width)
||(minSWidthSumPair.width==sWidthSumPair.width
&& minSWidthSumPair.sum>sWidthSumPair.sum )){
minVar=i;
minSWidthSumPair=sWidthSumPair;
}
}
if(minVar==rootVar) break;
MoveUp(minVar);
cout<<"Moveup: "<<minVar<<" Width: "<<minSWidthSumPair.width
<<" Sum: "<<minSWidthSumPair.sum<<" newRootWidth: "
<<sTabuTreeNodes[root].mySubTreeWidth<<endl;
}while(1);
cout<<endl;
cout<<"Last Width "<<sTabuTreeNodes[root].mySubTreeWidth<<endl;
}
void CTabuSearch::RIPCheck(){
RIPNodeCheck(root);
for(int i=0;i<numVars;i++)
if(isEliminated[i]==false){
cout<<"TabuRIPCheck, Error: var "<<i<<" not eliminated"<<endl;
exit(1);
}
else
isEliminated[i]=false;
for(int i=0;i<numCons;i++)
if(isCovered[i]==false){
cout<<"TabuRIPCheck, Error: constraint "<<i<<" not covered"<<endl;
exit(1);
}
else
isCovered[i]=false;
}
void CTabuSearch::RIPNodeCheck(int node){
STabuTreeNode& sttn=sTabuTreeNodes[node];
for(vector<int>::iterator itr=sttn.childNodes.begin();itr!=sttn.childNodes.end();itr++)
RIPNodeCheck(*itr);
isPresent[sttn.elimVar]=true;
for(vector<int>::iterator itr=sttn.otherVars.begin();itr!=sttn.otherVars.end();itr++)
isPresent[*itr]=true;
for(vector<int>::iterator itr=sttn.coveredCons.begin();itr!=sttn.coveredCons.end();itr++){
isCovered[*itr]=true;
vector<int>& hyperedge=cchg->GetHyperegde(*itr);
for(vector<int>::iterator itr2=hyperedge.begin();itr2!=hyperedge.end();itr2++){
if(!isPresent[*itr2]){
cout<<"TabuRIPCheckNode, Error: constraint "<<*itr<<" not covered"<<endl;
exit(1);
}
}
}
for(vector<int>::iterator itr=sttn.childNodes.begin();itr!=sttn.childNodes.end();itr++){
vector<int>& otherVars=sTabuTreeNodes[*itr].otherVars;
for(vector<int>::iterator itr2=otherVars.begin();itr2!=otherVars.end();itr2++){
if(!isPresent[*itr2]){
cout<<"TabuRIPCheckNode, Error: tree node "<<*itr<<" not covered by its parent"<<endl;
cout<<"\t\t parent:"<<node<<endl;
exit(1);
}
}
}
isEliminated[sttn.elimVar]=true; isPresent[sttn.elimVar]=false;
for(vector<int>::iterator itr=sttn.otherVars.begin();itr!=sttn.otherVars.end();itr++)
isPresent[*itr]=false;
}
void CTabuSearch::AddTabu(int var){
int size=sTabuPairs[var].size();
sTabuPairs[var].resize(size+1);
sTabuPairs[var][size].var=sTabuTreeNodes[sTabuTreeNodes[var2Loc[var]].parent].elimVar;
sTabuPairs[var][size].iteration=iteration;
}
bool CTabuSearch::IsSpecialTabu(int var){
STabuTreeNode& sttnA=sTabuTreeNodes[sTabuTreeNodes[var2Loc[var]].parent];
if((sttnA.childNodes.size()+sttnA.coveredCons.size()==1)
&&(sttnA.coveredCons.size()==0))
return true;
else
return false;
}
bool CTabuSearch::IsTabu(int var){
int parentVar=sTabuTreeNodes[sTabuTreeNodes[var2Loc[var]].parent].elimVar;
vector<STabuPair>& tabus=sTabuPairs[parentVar];
for(vector<STabuPair>::iterator itr=tabus.begin(); itr!=tabus.end();itr++){
if(((*itr).iteration)<(iteration-tabuListSize)){
*itr=tabus[tabus.size()-1];
tabus.pop_back();
itr--; continue;
}
else if(((*itr).var)==var)
return true;
}
return false;
}
void CTabuSearch::Solve(float tabuListSizePIn, long maxIterationsIn, int cpuTimeLimitIn){
// initialize all the required data members
maxIterations=maxIterationsIn;
tabuListSizeP=tabuListSizePIn;
cpuTimeLimit=cpuTimeLimitIn;
tabuListSize=(int)(numVars*tabuListSizeP);
iteration=0;
sTabuPairs.clear(); sTabuPairs.resize(numVars);
//cout<<"CPU TIME so far: "<<cpuTime()<<endl;
double startTime=cpuTime();
int minVar;
SWidthSumPair minSWidthSumPair;
long maxSumDiff=2*numVars*numVars;
int rootVar;
diversifyCalls=0;
SWidthSumPair sWidthSumPair;
while(iteration<maxIterations && (cpuTime()-startTime)<cpuTimeLimit){
minSWidthSumPair.width=numVars;
minSWidthSumPair.sum=maxSumDiff;
rootVar=sTabuTreeNodes[root].elimVar;
for(int var=0;var<numVars;var++){
if(var==rootVar) continue;
if(IsSpecialTabu(var)) continue;
if(IsTabu(var)) continue;
sWidthSumPair=Evaluate(var);
if( sWidthSumPair.width<minSWidthSumPair.width
||(sWidthSumPair.width == minSWidthSumPair.width
&& sWidthSumPair.sum<minSWidthSumPair.sum)){
minVar=var;
minSWidthSumPair=sWidthSumPair;
}
}
if(minSWidthSumPair.sum<0){
AddTabu(minVar);
MoveUp(minVar);
//cout<<"Moveup: "<<minVar<<" Width: "<<minSWidthSumPair.width <<" Sum: "<<minSWidthSumPair.sum<<" newRootWidth: " <<sTabuTreeNodes[root].mySubTreeWidth<<endl;
}
else{
Diversify();
diversifyCalls++;
}
if(sTabuTreeNodes[root].mySubTreeWidth<bestWidth){
bestWidth=sTabuTreeNodes[root].mySubTreeWidth;
//cout<<"bestWidth :"<<bestWidth<<" itr:"<<iteration<<endl;
}
iteration++;
}
usedCpuTime=cpuTime()-startTime;
//RIPCheck();
}
void CTabuSearch::PrintStats(){
cout<<"Tabu Best Width : "<<bestWidth<<endl;
cout<<"diversifyCalls : "<<diversifyCalls<<endl;
cout<<"iteration : "<<iteration+1<<endl;
cout<<"Tabu CPU time : "<<usedCpuTime<<endl;
}
void CTabuSearch::GetElimOrder(int loc, vector<int>& currElimOrder){
STabuTreeNode sttn=sTabuTreeNodes[loc];
for(vector<int>::iterator itr=sttn.childNodes.begin();itr!=sttn.childNodes.end();itr++)
GetElimOrder(*itr,currElimOrder);
currElimOrder.push_back(sttn.elimVar);
}
vector<int> CTabuSearch::GetElimOrder(){
// the following code relies that there is only one root
vector<int> currElimOrder;
GetElimOrder(root,currElimOrder);
if(currElimOrder.size()!=numVars){
cout<<"CTabuSearch:GetElimOrder():Error: currElimOrder.size()!=numVars" <<endl;
exit(1);
}
return currElimOrder;
}
void CTabuSearch::Diversify(){
vector<int> currElimOrder=GetElimOrder();
int maxVar=sTabuTreeNodes[0].elimVar;
int maxSize=sTabuTreeNodes[0].otherVars.size();
for(int loc=1;loc<numVars;loc++)
if((sTabuTreeNodes[loc].otherVars.size())>maxSize){
maxSize=sTabuTreeNodes[loc].otherVars.size();
maxVar=sTabuTreeNodes[loc].elimVar;
}
//cout<<"Diversify initial maxSize "<<maxSize<<endl;
int randomLoc=rand()%numVars;
int maxLoc=0;
for(int loc=0;loc<numVars;loc++)
if(currElimOrder[loc]==maxVar)
{maxLoc=loc; break;}
if(randomLoc<maxLoc)
for(int loc=maxLoc;loc>randomLoc;loc--)
currElimOrder[loc]=currElimOrder[loc-1];
else
for(int loc=maxLoc;loc<randomLoc;loc++)
currElimOrder[loc]=currElimOrder[loc+1];
currElimOrder[randomLoc]=maxVar;
ctd->SetElimOrder(currElimOrder);
ctd->ElimOrder2TreeDe();
// mega copy
vector<STreeNode>& sTreeNodes=ctd->GetTreeNodes();
root=-1;
for(int i=0,isize=sTreeNodes.size();i<isize;i++){
STreeNode& stn=sTreeNodes[i];
STabuTreeNode& sttn=sTabuTreeNodes[i];
sttn.childNodes=stn.childNodes;
sttn.coveredCons=stn.coveredCons;
sttn.elimVar=stn.elimVar;
var2Loc[sttn.elimVar]=i;
sttn.otherVars=stn.otherVars;
sttn.parent=stn.parent;
if(stn.parent==-1){
if(root==-1){
root=i;
}
else{
cout<<"Error in Diversify \"CTabuSearch\": Unexpected case, more than one root in the tree decomposition."<<endl;
cout<<"Current root value "<<root<<endl;
exit(1);
}
}
}
sTabuTreeNodes[root].parentalWidth=-1;
FindSubTreeValues(root);
sTabuTreeNodes[root].parentalQuadSum=0;
UpdateParentalValues(root);
//sTabuPairs.clear(); sTabuPairs.resize(numVars);
}
|
[
"jean123447@gmail.com"
] |
jean123447@gmail.com
|
952dececa506544a21cf95444581f3789ff65a5b
|
818df5a6b667055f9c472e72ee0fc823f86de819
|
/531.cpp
|
cd858b04bbfa3533dd4636b01d22a8d1760597f1
|
[] |
no_license
|
kalex1994/UVA
|
0a495e971fdcf92a785421a5c741bda915c21fca
|
cf45c6174cd299df14e8b52637c29ea7c3ec0f20
|
refs/heads/master
| 2021-01-01T19:47:13.630295
| 2016-10-15T19:14:46
| 2016-10-15T19:14:46
| 12,342,624
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,889
|
cpp
|
#include <iostream>
#include <string>
#include <sstream>
#include <vector>
#include <algorithm>
#include <limits>
#include <climits>
#include <cctype>
#include <stack>
#include <cstdio>
#include <cstdint>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <set>
#include <queue>
#include <numeric>
#include <deque>
#include <map>
#include <iterator>
#include <cassert>
#include <list>
#include <functional>
#include <bitset>
#include <array>
#include <regex>
#ifndef ONLINE_JUDGE
#include "debug_macros.h"
#endif
using namespace std;
const int MAXN = 100;
int dp[MAXN + 1][MAXN + 1];
int pr[MAXN + 1][MAXN + 1];
enum { EQUAL, LEFT, UP };
vector<string> a, b;
void lcs()
{
for(size_t i = 0; i < a.size(); ++i)
dp[i][0] = 0;
for(size_t j = 0; j < b.size(); ++j)
dp[0][j] = 0;
for(size_t i = 1; i <= a.size(); ++i)
for(size_t j = 1; j <= b.size(); ++j)
{
if (a[i - 1] == b[j - 1])
{
dp[i][j] = 1 + dp[i - 1][j - 1];
pr[i][j] = EQUAL;
}
else
{
if (dp[i][j - 1] > dp[i - 1][j])
{
dp[i][j] = dp[i][j - 1];
pr[i][j] = LEFT;
}
else
{
dp[i][j] = dp[i - 1][j];
pr[i][j] = UP;
}
}
}
}
void print_lcs()
{
vector<string> v;
int i = a.size(), j = b.size();
while (i >= 1 && j >= 1)
{
if (pr[i][j] == EQUAL)
{
v.push_back(a[i - 1]);
--i; --j;
}
else if (pr[i][j] == LEFT)
--j;
else
--i;
}
for(auto it = v.rbegin(); it != v.rend(); ++it)
{
if (it != v.rbegin())
cout << ' ';
cout << *it;
}
cout << endl;
}
int main()
{
#ifndef ONLINE_JUDGE
freopen("E:\\IN.txt", "r", stdin);
freopen("E:\\OUT.txt", "w", stdout);
#endif
string s;
while(true)
{
a.clear();
b.clear();
if (!(cin >> s))
break;
while(s != "#")
{
a.push_back(s);
cin >> s;
}
cin >> s;
while(s != "#")
{
b.push_back(s);
cin >> s;
}
lcs();
print_lcs();
}
}
|
[
"kiralaleks@gmail.com"
] |
kiralaleks@gmail.com
|
846e1a4f6fb93a0952f0f483143a3bf95da37bdb
|
30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a
|
/contest/1542579770.cpp
|
df96ca61156ec8568abcb31746bfab361c85d769
|
[] |
no_license
|
thegamer1907/Code_Analysis
|
0a2bb97a9fb5faf01d983c223d9715eb419b7519
|
48079e399321b585efc8a2c6a84c25e2e7a22a61
|
refs/heads/master
| 2020-05-27T01:20:55.921937
| 2019-11-20T11:15:11
| 2019-11-20T11:15:11
| 188,403,594
| 2
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 493
|
cpp
|
#include <bits/stdc++.h>
using namespace std;
string a, b[200];
int n;
int main()
{
cin>>a;
cin>>n;
for(int i=1;i<=n;i++){cin>>b[i];}
for(int i=1;i<=n;i++){
if (b[i]==a)
{
cout<<"YES";
return 0;
}
}
int ok1 = 0;
int ok2 = 0;
for (int i = 1;i <= n;i++) {
if (b[i][1] == a[0]) {ok1++;}
if (b[i][0] == a[1]) {ok2++;}
}
if (ok1 > 0 && ok2 > 0) {cout << "YES";}
else cout << "NO\n";
return 0;
}
|
[
"harshitagar1907@gmail.com"
] |
harshitagar1907@gmail.com
|
20fd18a78b6d8fb180e8d0e55dd4ad23e31d17af
|
0b57b2563238c86e4cdbf937d0af4604a34fdf6a
|
/IrpsimEngine/fifo.cpp
|
28139486371104b095ce583f6af6c947c5411832
|
[] |
no_license
|
jnikolas-mwd/IRPSIM
|
c902917d7d438c599602b82bf623bdff15804130
|
482e142262e877ae71c2097312aee7598cdfc3eb
|
refs/heads/master
| 2020-09-27T03:44:54.389795
| 2019-12-06T22:56:45
| 2019-12-06T22:56:45
| 226,421,536
| 0
| 0
| null | 2019-12-06T22:27:45
| 2019-12-06T22:27:44
| null |
WINDOWS-1252
|
C++
| false
| false
| 3,851
|
cpp
|
// fifo.cpp : implementation file
//
// Copyright © 1998-2015 Casey McSpadden
// mailto:casey@crossriver.com
// http://www.crossriver.com/
//
// ==========================================================================
// DESCRIPTION:
// ==========================================================================
// Class CMFifo implements a first-in, first-out (FIFO) stack.
// ==========================================================================
//
// ==========================================================================
// HISTORY:
// ==========================================================================
// 1.00 09 March 2015 - Initial re-write and release.
// ==========================================================================
//
/////////////////////////////////////////////////////////////////////////////
#include "StdAfx.h"
#include "fifo.h"
CMFifo::CMFifo()
{
this->m_deque = new std::deque< std::pair<int, double> >();
}
CMFifo::~CMFifo()
{
delete m_deque;
}
void CMFifo::Push(int nStep, double dAmt)
{
m_deque->push_front(std::pair<int, double>(nStep, dAmt));
}
double CMFifo::Pop(double dAmt)
{
if (m_deque->size() == 0) return 0;
double dRemaining = dAmt;
for (int i = m_deque->size() - 1; i >= 0 && dRemaining>0; i--) {
if (m_deque->at(i).second>dRemaining) {
m_deque->at(i).second -= dRemaining;
dRemaining = 0;
}
else {
dRemaining -= m_deque->at(i).second;
m_deque->pop_back();
}
}
return (dAmt - dRemaining);
}
double CMFifo::AvgAge(int nCurrentStep)
{
double dSum = 0, dWeightedSum = 0;
for (std::deque< std::pair<int, double> >::iterator i = m_deque->begin(); i != m_deque->end(); i++) {
dSum += i->second;
dWeightedSum += i->second * (nCurrentStep - i->first);
}
return (dSum != 0) ? dWeightedSum / dSum : 0;
}
double CMFifo::AmtOlderThan(int nStep)
{
if (m_deque->size() == 0 || nStep<m_deque->at(m_deque->size() - 1).first)
return 0;
double dRet = 0;
for (std::deque< std::pair<int, double> >::iterator i = m_deque->begin(); i != m_deque->end(); i++) {
if (i->first <= nStep)
dRet += i->second;
}
return dRet;
}
void CMFifo::Clear()
{
m_deque->clear();
}
/*
void CMFifo::Push(int nStep,double dAmt)
{
push_front( std::pair<int,double>(nStep,dAmt) );
}
double CMFifo::Pop(double dAmt)
{
if (size()==0) return 0;
double dRemaining = dAmt;
for (int i=size()-1;i>=0 && dRemaining>0;i--) {
if (at(i).second>dRemaining) {
at(i).second -= dRemaining;
dRemaining = 0;
}
else {
dRemaining -= at(i).second;
pop_back();
}
}
return (dAmt-dRemaining);
}
double CMFifo::AvgAge(int nCurrentStep)
{
double dSum=0,dWeightedSum=0;
for (iterator i=begin();i!=end();i++) {
dSum+=i->second;
dWeightedSum += i->second * (nCurrentStep - i->first);
}
return (dSum != 0) ? dWeightedSum/dSum : 0;
}
double CMFifo::AmtOlderThan(int nStep)
{
if (size()==0 || nStep<at(size()-1).first)
return 0;
double dRet = 0;
for (iterator i=begin();i!=end();i++) {
if (i->first <= nStep)
dRet += i->second;
}
return dRet;
}
*/
/*
double CMFifo::Pop(double dAmt)
{
if (size()==0)
return 0;
double dRemaining = dAmt;
for (int i=size()-1;i>=0 && dRemaining>0;i--) {
if (at(i).second>dRemaining) {
at(i).second -= dRemaining;
dRemaining = 0;
}
else {
dRemaining -= at(i).second;
pop_back();
}
}
return (dAmt-dRemaining);
}
double CMFifo::AmtOlderThan(int nStep)
{
if (size()==0 || nStep<at(size()-1).first)
return 0;
double dRet = 0;
for (iterator i=begin();i!=end();i++) {
if (i->first <= nStep)
dRet += i->second;
}
return dRet;
}
double CMFifo::AvgAge(int nCurrentStep)
{
double dSum=0,dWeightedSum=0;
for (iterator i=begin();i!=end();i++) {
dSum+=i->second;
dWeightedSum += i->second * (nCurrentStep - i->first);
}
return (dSum != 0) ? dWeightedSum/dSum : 0;
}
*/
|
[
"casey@crossriver.com"
] |
casey@crossriver.com
|
ad540f8001145b3789959212d39b503a23b3d1aa
|
47c6e92d80b0aad5051b793315f1b7924a29a895
|
/src/matching.h
|
abe30ced426db7a8f2f80b837c5da4e6c6a33c09
|
[] |
no_license
|
Muhammad-Abdullah-Rana/Person_ReIdentification
|
e787d5b34e17b27f7a7980eb32ac93ac91903dde
|
cc19fc3b9a3ef86b2f14c82fa14d671e54843b0d
|
refs/heads/master
| 2023-07-18T23:59:49.969776
| 2018-12-11T04:44:37
| 2018-12-11T04:44:37
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 378
|
h
|
#pragma once
#include "opencv\cv.h"
#include "opencv2\highgui\highgui.hpp"
using namespace cv;
class matching
{
public:
int indexOfperson;
int indexarray[200];
MatND torso;
MatND legs;
string hDataset;
double claculateSim();
matching(void);
matching(MatND t,string s);
matching(MatND t,MatND s);
MatND gallery;
void test();
~matching(void);
};
|
[
"marjan.moodi@gmail.com"
] |
marjan.moodi@gmail.com
|
c8a0cc192d43d2b558bbd3003175a9b75328f3c1
|
695bdd7357105a2a77ed5d96a036a004337f5350
|
/PAC-MAN/Mapchip.h
|
0ec5adaca0aa8b7e97e0325a6c02b5244900c002
|
[] |
no_license
|
human-osaka-game-2019/Battle-Party-Pacman-Powercookie-Festival
|
29147ecc75e88ae0f64e641d8470fb13ec66dc80
|
61a130c223bd8b00eea2324779fbbe8ecd5f71bc
|
refs/heads/master
| 2021-07-25T08:57:56.139405
| 2019-08-07T03:27:43
| 2019-08-07T03:27:43
| 198,361,510
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 7,949
|
h
|
#ifndef MAPCHIP
#define MAPCHIP
#include<iostream>
#include<stdio.h>
class MapchipLoading {
public:
int** mapchip(const char* filename, int Hrow, int Hcol, int** data);
int textureprint(int** F, int s, int d);
};
struct mapp {
int num;
int tex;
};
class DrawMap {
public:
void DrawMapChip(int map_size_width, int map_size_height, float texture_width, float texture_height, float mapchip_width, float mapchip_height, float draw_width, float draw_height, float draw_pos_x, float draw_pos_y, int texture,int** map);
void textureprint(int drawpos_x,int drawpos_y, int mapcip_width, int mapchip_height, float chip_pos_x, float chip_pos_y,float width_num,float height_num, int texture);
int left_map[31][28] =
{ 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 25, 26, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 6,
1, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 3,
1, 35, 17, 4, 4, 18, 35, 17, 4, 4, 4, 18, 35, 11, 9, 35, 17, 4, 4, 4, 18, 35, 17, 4, 4, 18, 35, 3,
1, 38, 3, 0, 0, 1, 35, 3, 0, 0, 0, 1, 35, 11, 9, 35, 3, 0, 0, 0, 1, 35, 3, 0, 0, 1, 38, 3,
1, 35, 20, 36, 36, 19, 35, 20, 36, 36, 36, 19, 35, 24, 23, 35, 20, 36, 36, 36, 19, 35, 20, 36, 36, 19, 35, 3,
1, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 3,
1, 35, 21, 12, 12, 22, 35, 21, 22, 35, 21, 12, 12, 12, 12, 12, 12, 22, 35, 21, 22, 35, 21, 12, 12, 22, 35, 3,
1, 35, 24, 10, 10, 23, 35, 11, 9, 35, 24, 10, 10, 31, 32, 10, 10, 23, 35, 11, 9, 35, 24, 10, 10, 23, 35, 3,
1, 35, 35, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 35, 35, 3,
8, 4, 4, 4, 4, 15, 35, 11, 33, 12, 12, 22, 0, 11, 9, 0, 21, 12, 12, 34, 9, 35, 13, 4, 4, 4, 4, 7,
0, 0, 0, 0, 0, 1, 35, 11, 32, 10, 10, 23, 0, 24, 23, 0, 24, 10, 10, 31, 9, 35, 3, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1, 35, 11, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 9, 35, 3, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1, 35, 11, 9, 0, 17, 4, 4, 37, 37, 4, 4, 18, 0, 11, 9, 35, 3, 0, 0, 0, 0, 0,
2, 2, 2, 2, 2, 16, 35, 24, 23, 0, 3, 0, 40, 0, 0, 40, 0, 1, 0, 24, 23, 35, 14, 2, 2, 2, 2, 2,
0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 3, 0, 40, 40, 40, 40, 0, 1, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0,
4, 4, 4, 4, 4, 15, 35, 21, 22, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 21, 22, 35, 13, 4, 4, 4, 4, 4,
0, 0, 0, 0, 0, 1, 35, 11, 9, 0, 20, 2, 2, 2, 2, 2, 2, 19, 0, 11, 9, 35, 3, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1, 35, 11, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 9, 35, 3, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1, 35, 11, 9, 0, 21, 12, 12, 12, 12, 12, 12, 22, 0, 11, 9, 35, 3, 0, 0, 0, 0, 0,
5, 2, 2, 2, 2, 16, 35, 24, 23, 0, 24, 10, 10, 31, 32, 10, 10, 23, 0, 24, 23, 35, 14, 2, 2, 2, 2, 6,
1, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 3,
1, 35, 21, 12, 12, 22, 35, 21, 12, 12, 12, 22, 35, 11, 9, 35, 21, 12, 12, 12, 22, 35, 21, 12, 12, 22, 35, 3,
1, 35, 24, 10, 31, 9, 35, 24, 10, 10, 10, 23, 35, 24, 23, 35, 24, 10, 10, 10, 23, 35, 11, 32, 10, 23, 35, 3,
1, 38, 35, 35, 11, 9, 35, 35, 35, 35, 35, 35, 35, 0, 0, 35, 35, 35, 35, 35, 35, 35, 11, 9, 35, 35, 38, 3,
29, 12, 22, 35, 11, 9, 35, 21, 22, 35, 21, 12, 12, 12, 12, 12, 12, 22, 35, 21, 22, 35, 11, 9, 35, 21, 12, 27,
30, 10, 23, 35, 24, 23, 35, 11, 9, 35, 24, 10, 10, 31, 32, 10, 10, 23, 35, 11, 9, 35, 24, 23, 35, 24, 10, 28,
1, 35, 35, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 35, 35, 3,
1, 35, 21, 12, 12, 12, 12, 34, 33, 12, 12, 22, 35, 11, 9, 35, 21, 12, 12, 34, 33, 12, 12, 12, 12, 22, 35, 3,
1, 35, 24, 10, 10, 10, 10, 10, 10, 10, 10, 23, 35, 24, 23, 35, 24, 10, 10, 10, 10, 10, 10, 10, 10, 23, 35, 3,
1, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 3,
8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 7, };
int right_map[31][28] =
{ 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 25, 26, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 6,
1, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 3,
1, 35, 17, 4, 4, 18, 35, 17, 4, 4, 4, 18, 35, 11, 9, 35, 17, 4, 4, 4, 18, 35, 17, 4, 4, 18, 35, 3,
1, 38, 3, 0, 0, 1, 35, 3, 0, 0, 0, 1, 35, 11, 9, 35, 3, 0, 0, 0, 1, 35, 3, 0, 0, 1, 38, 3,
1, 35, 20, 36, 36, 19, 35, 20, 36, 36, 36, 19, 35, 24, 23, 35, 20, 36, 36, 36, 19, 35, 20, 36, 36, 19, 35, 3,
1, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 3,
1, 35, 21, 12, 12, 22, 35, 21, 22, 35, 21, 12, 12, 12, 12, 12, 12, 22, 35, 21, 22, 35, 21, 12, 12, 22, 35, 3,
1, 35, 24, 10, 10, 23, 35, 11, 9, 35, 24, 10, 10, 31, 32, 10, 10, 23, 35, 11, 9, 35, 24, 10, 10, 23, 35, 3,
1, 35, 35, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 35, 35, 3,
8, 4, 4, 4, 4, 15, 35, 11, 33, 12, 12, 22, 0, 11, 9, 0, 21, 12, 12, 34, 9, 35, 13, 4, 4, 4, 4, 7,
0, 0, 0, 0, 0, 1, 35, 11, 32, 10, 10, 23, 0, 24, 23, 0, 24, 10, 10, 31, 9, 35, 3, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1, 35, 11, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 9, 35, 3, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1, 35, 11, 9, 0, 17, 4, 4, 37, 37, 4, 4, 18, 0, 11, 9, 35, 3, 0, 0, 0, 0, 0,
2, 2, 2, 2, 2, 16, 35, 24, 23, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 24, 23, 35, 14, 2, 2, 2, 2, 2,
0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0,
4, 4, 4, 4, 4, 15, 35, 21, 22, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 21, 22, 35, 13, 4, 4, 4, 4, 4,
0, 0, 0, 0, 0, 1, 35, 11, 9, 0, 20, 2, 2, 2, 2, 2, 2, 19, 0, 11, 9, 35, 3, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1, 35, 11, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 9, 35, 3, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1, 35, 11, 9, 0, 21, 12, 12, 12, 12, 12, 12, 22, 0, 11, 9, 35, 3, 0, 0, 0, 0, 0,
5, 2, 2, 2, 2, 16, 35, 24, 23, 0, 24, 10, 10, 31, 32, 10, 10, 23, 0, 24, 23, 35, 14, 2, 2, 2, 2, 6,
1, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 3,
1, 35, 21, 12, 12, 22, 35, 21, 12, 12, 12, 22, 35, 11, 9, 35, 21, 12, 12, 12, 22, 35, 21, 12, 12, 22, 35, 3,
1, 35, 24, 10, 31, 9, 35, 24, 10, 10, 10, 23, 35, 24, 23, 35, 24, 10, 10, 10, 23, 35, 11, 32, 10, 23, 35, 3,
1, 38, 35, 35, 11, 9, 35, 35, 35, 35, 35, 35, 35, 0, 0, 35, 35, 35, 35, 35, 35, 35, 11, 9, 35, 35, 38, 3,
29, 12, 22, 35, 11, 9, 35, 21, 22, 35, 21, 12, 12, 12, 12, 12, 12, 22, 35, 21, 22, 35, 11, 9, 35, 21, 12, 27,
30, 10, 23, 35, 24, 23, 35, 11, 9, 35, 24, 10, 10, 31, 32, 10, 10, 23, 35, 11, 9, 35, 24, 23, 35, 24, 10, 28,
1, 35, 35, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 11, 9, 35, 35, 35, 35, 35, 35, 3,
1, 35, 21, 12, 12, 12, 12, 34, 33, 12, 12, 22, 35, 11, 9, 35, 21, 12, 12, 34, 33, 12, 12, 12, 12, 22, 35, 3,
1, 35, 24, 10, 10, 10, 10, 10, 10, 10, 10, 23, 35, 24, 23, 35, 24, 10, 10, 10, 10, 10, 10, 10, 10, 23, 35, 3,
1, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 3,
8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 7, };
};
#endif // !MAPCHIP
|
[
"shouma20000407@gmail.com"
] |
shouma20000407@gmail.com
|
78ba7e0b0f5c96205e203b781aa8da4e911b451e
|
c925592db63635c58aab5983dd03b79a57f416a7
|
/exp/MP3/PartA/solution4/sim/autowrap/testbench/gold.cpp_pre.cpp.line.cpp
|
ed587b2ebec046acb52d592bf3097cd88e0ce910
|
[] |
no_license
|
jaybharat29/ECE527
|
23872d75496840e09710680a50aa63ad4735dfdf
|
c145cde638c6a8961c4caa8c7696a5d53e6b3601
|
refs/heads/master
| 2020-03-28T09:47:29.403801
| 2018-11-01T18:25:36
| 2018-11-01T18:25:36
| 148,059,981
| 1
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,746
|
cpp
|
#pragma line 1 "C:/Users/Patel/Downloads/ECE527/exp/MP3/PartA/gold.cpp"
#pragma line 1 "<built-in>"
#pragma line 1 "<command-line>"
#pragma line 1 "C:/Users/Patel/Downloads/ECE527/exp/MP3/PartA/gold.cpp"
#pragma line 1 "C:/Users/Patel/Downloads/ECE527/exp/MP3/PartA/parta.h" 1
#pragma empty_line
#pragma empty_line
#pragma empty_line
#pragma empty_line
void unop_mm(int A[100][100], int B[100][100], int C[100][100],
int mA, int nA, int mB,
int nB, int mC, int nC);
#pragma empty_line
void gold(int A[100][100], int B[100][100], int C[100][100],
int mA, int nA, int mB,
int nB, int mC, int nC);
#pragma empty_line
void parta1_2(int A[100][100], int B[100][100], int C[100][100],
int mA, int nA, int mB,
int nB, int mC, int nC);
#pragma empty_line
void parta1_3(int A[100][100], int B[100][100], int C[100][100],
int mA, int nA, int mB,
int nB, int mC, int nC);
#pragma empty_line
void parta1_4(int A[100][100], int B[100][100], int C[100][100],
int mA, int nA, int mB,
int nB, int mC, int nC);
#pragma empty_line
void parta1_5(int A[100][100], int B[100][100], int C[100][100],
int mA, int nA, int mB,
int nB, int mC, int nC);
#pragma empty_line
void parta1_6(int A[100][100], int B[100][100], int C[100][100],
int mA, int nA, int mB,
int nB, int mC, int nC);
#pragma line 2 "C:/Users/Patel/Downloads/ECE527/exp/MP3/PartA/gold.cpp" 2
#pragma empty_line
void gold(int A[100][100], int B[100][100], int C[100][100],
int mA, int nA, int mB,
int nB, int mC, int nC)
{
for(int i = 0; i < mC; i++)
{
for(int j = 0; j < nC; j++)
{
C[i][j] = 0;
for(int k = 0; k < nA; k++)
{
C[i][j] += A[i][k]*B[k][j];
}
}
}
}
|
[
"jaypatelstar@gmail.com"
] |
jaypatelstar@gmail.com
|
be4e913391a6733fab3f754924a49abcfc7de8a0
|
fb81d60eaea26c8feed34cdf8bcb302e6246caad
|
/examples_theory/teacher/1_CppBasic/conste.cc
|
836538f50837ea8d5f4669e7014f984df5ef0843
|
[] |
no_license
|
auroraleso/Cpp-course
|
e03ff719c7b6dc8ee56f1dde9b5a0521231edc94
|
dce1cd39da03c22e595f513379aa0b7e14228c1e
|
refs/heads/main
| 2023-03-27T07:14:24.730861
| 2021-03-25T17:41:00
| 2021-03-25T17:41:00
| 345,602,280
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 726
|
cc
|
// C++11 code
// compile time constants
#include <iostream>
#include <cmath>
constexpr int f(int i, int j) {
return i * j;
}
int main() {
constexpr int i = 3;
int j;
std::cin >> j;
std::cout << i * j << std::endl;
constexpr int k = f( i, 5 );
/*
--------------------------------------DEF OF CONSTEXPR-------------------------------------------------
The constexpr specifier declares that it is possible to evaluate the value of the function
or variable at compile time. Such variables and functions can then be used where only
compile time constant expressions are allowed (provided that appropriate function arguments are given).
*/
std::cout << k << std::endl;
return 0;
}
|
[
"lesoaurora@gmail.com"
] |
lesoaurora@gmail.com
|
72ea5095b2965d2965300d39d9074de3673cdf7d
|
83213fa20300df1a4b39cc06d48bdb7db38c0647
|
/julka.cpp
|
3aca73727df24e84117f82ea0c2bdb36c19cca53
|
[] |
no_license
|
riyarohilla/Julka-Spoj
|
3cd89be60649e6468903bbd4dc5daf877d009d70
|
05323537dfca40b104d7ce9cde7c5362f30d821e
|
refs/heads/master
| 2020-07-06T02:32:55.170855
| 2019-08-17T09:24:26
| 2019-08-17T09:24:26
| 202,860,761
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,793
|
cpp
|
#include <stdio.h>
#include<string.h>
void add(char v1[], char v2[])
{
int i,d,c=0;
int l1=strlen(v1);
int l2=strlen(v2);
for(i=l1;i<l2;i++)
v1[i]='0';
for(i=l2;i<l1;i++)
v2[i]='0';
for(i=0;i<l1||i<l2;i++)
{
d=(v1[i]-'0')+(v2[i]-'0')+c;
c=d/10;
d%=10;
v1[i]='0'+d;
}
while(c)
{
v1[i]='0'+(c%10);
c/=10;
i++;
}
v1[i]='\0';
v2[l2]='\0';
}
void subs(char v1[], char v2[])
{
int i,d,c=0;
int l1=strlen(v1);
int l2=strlen(v2);
for(i=l2;i<l1;i++)
v2[i]='0';
for(i=0;i<l1;i++)
{
d=(v1[i]-'0'-c)-(v2[i]-'0');
if(d<0)
{
d+=10;
c=1;
}
else c=0;
v1[i]='0'+d;
}
v2[l2]='\0';
i=l1-1;
while(i>0 && v1[i]=='0')
i--;
v1[i+1]='\0';
}
int divi(char v[], int q)
{
int i,l=strlen(v);
int c=0,d;
for(i=l-1;i>=0;i--)
{
d=c*10+(v[i]-'0');
c=d%q; d/=q; v[i]='0'+d;
}
i=l-1;
while(i>0 && v[i]=='0')
i--;
v[i+1]='\0';
return c;
}
void rev(char v[])
{
int l=strlen(v);
int i; char cc;
for(i=0;i<l-1-i;i++)
{
cc=v[i];v[i]=v[l-1-i];v[l-i-1]=cc;
}
}
int main() {
char a[102],b[102];
for(int i=0; i<10 ;++i)
{
gets(a);
gets(b);
rev(a);
rev(b);
add(a,b);
divi(a,2);
rev(a);
puts(a);
rev(a);
subs(a,b);
rev(a);
puts(a);
}
return 0;
}
|
[
"noreply@github.com"
] |
riyarohilla.noreply@github.com
|
241e3b5f0bfb11fce0afc12d7aad77e5c3e1763c
|
b4d1fc90b1c88f355c0cc165d73eebca4727d09b
|
/tests/ceftests/message_router_harness_unittest.cc
|
42ac03319595c586c6c6791132f8614fb84339d7
|
[
"BSD-3-Clause"
] |
permissive
|
chromiumembedded/cef
|
f03bee5fbd8745500490ac90fcba45616a29be6e
|
f808926fbda17c7678e21f1403d6f996e9a95138
|
refs/heads/master
| 2023-09-01T20:37:38.750882
| 2023-08-31T17:16:46
| 2023-08-31T17:28:27
| 87,006,077
| 2,600
| 454
|
NOASSERTION
| 2023-07-21T11:39:49
| 2017-04-02T18:19:23
|
C++
|
UTF-8
|
C++
| false
| false
| 2,592
|
cc
|
// Copyright (c) 2022 The Chromium Embedded Framework 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 "tests/ceftests/message_router_unittest_utils.h"
namespace {
// Used to verify that the test harness (bound functions) behave correctly.
class HarnessTestHandler : public SingleLoadTestHandler {
public:
HarnessTestHandler(bool test_success) : test_success_(test_success) {}
std::string GetMainHTML() override {
std::string html;
if (test_success_) {
// All assertions should pass.
html =
"<html><body><script>\n"
"var fail_ct = 0;\n"
"try { window.mrtAssertTotalCount(" LINESTR
",0); } catch (e) { fail_ct++; }\n"
"try { window.mrtAssertBrowserCount(" LINESTR
",0); } catch (e) { fail_ct++; }\n"
"try { window.mrtAssertContextCount(" LINESTR
",0); } catch (e) { fail_ct++; }\n"
"window.mrtNotify('' + (fail_ct == 0));"
"</script></body></html>";
} else {
// All assertions should fail.
html =
"<html><body><script>\n"
"var fail_ct = 0;\n"
"try { window.mrtAssertTotalCount(" LINESTR
",1); } catch (e) { fail_ct++; }\n"
"try { window.mrtAssertBrowserCount(" LINESTR
",1); } catch (e) { fail_ct++; }\n"
"try { window.mrtAssertContextCount(" LINESTR
",1); } catch (e) { fail_ct++; }\n"
"window.mrtNotify('' + (fail_ct == 3));"
"</script></body></html>";
}
return html;
}
void OnNotify(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame,
const std::string& message) override {
AssertMainBrowser(browser);
AssertMainFrame(frame);
got_done_.yes();
EXPECT_STREQ("true", message.c_str());
DestroyTest();
}
void DestroyTest() override {
EXPECT_TRUE(got_done_);
TestHandler::DestroyTest();
}
private:
const bool test_success_;
TrackCallback got_done_;
};
} // namespace
// Verify that the test harness works with successful assertions.
TEST(MessageRouterTest, HarnessSuccess) {
CefRefPtr<HarnessTestHandler> handler = new HarnessTestHandler(true);
handler->ExecuteTest();
ReleaseAndWaitForDestructor(handler);
}
// Verify that the test harness works with failed assertions.
TEST(MessageRouterTest, HarnessFailure) {
CefRefPtr<HarnessTestHandler> handler = new HarnessTestHandler(false);
handler->ExecuteTest();
ReleaseAndWaitForDestructor(handler);
}
|
[
"magreenblatt@gmail.com"
] |
magreenblatt@gmail.com
|
f1be9394b1f609e2ed4c48bb0b1c7f7b4b16152f
|
d77471349c1fa1989875a3d914c8f6395fc0c77b
|
/Source/Room3D/GeneratedFiles/Release/moc_Room3DWebDlg.cpp
|
aa7d01b8b4f54abb4969affa5bc9a6b471019c5d
|
[] |
no_license
|
wagdev1919/PickMe3D
|
0f6065ab0dd87dd3f31603abca05dd3276b16aa7
|
199e0b53334aa607249fc542525971be983614fd
|
refs/heads/master
| 2022-02-21T13:16:38.958754
| 2019-09-24T11:40:32
| 2019-09-24T11:40:32
| 210,482,030
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,150
|
cpp
|
/****************************************************************************
** Meta object code from reading C++ file 'Room3DWebDlg.h'
**
** Created: Tue Apr 9 09:37:21 2013
** by: The Qt Meta Object Compiler version 62 (Qt 4.6.0)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../../Dialog/Room3DWebDlg.h"
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'Room3DWebDlg.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 62
#error "This file was generated using the moc from 4.6.0. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
static const uint qt_meta_data_CRoom3DProgressDlg[] = {
// content:
4, // revision
0, // classname
0, 0, // classinfo
0, 0, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
0 // eod
};
static const char qt_meta_stringdata_CRoom3DProgressDlg[] = {
"CRoom3DProgressDlg\0"
};
const QMetaObject CRoom3DProgressDlg::staticMetaObject = {
{ &CRoom3DBaseDlg::staticMetaObject, qt_meta_stringdata_CRoom3DProgressDlg,
qt_meta_data_CRoom3DProgressDlg, 0 }
};
#ifdef Q_NO_DATA_RELOCATION
const QMetaObject &CRoom3DProgressDlg::getStaticMetaObject() { return staticMetaObject; }
#endif //Q_NO_DATA_RELOCATION
const QMetaObject *CRoom3DProgressDlg::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject;
}
void *CRoom3DProgressDlg::qt_metacast(const char *_clname)
{
if (!_clname) return 0;
if (!strcmp(_clname, qt_meta_stringdata_CRoom3DProgressDlg))
return static_cast<void*>(const_cast< CRoom3DProgressDlg*>(this));
return CRoom3DBaseDlg::qt_metacast(_clname);
}
int CRoom3DProgressDlg::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = CRoom3DBaseDlg::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
return _id;
}
static const uint qt_meta_data_CRoom3DWebDlg[] = {
// content:
4, // revision
0, // classname
0, 0, // classinfo
2, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
// slots: signature, parameters, type, tag, flags
18, 15, 14, 14, 0x0a,
43, 37, 14, 14, 0x0a,
0 // eod
};
static const char qt_meta_stringdata_CRoom3DWebDlg[] = {
"CRoom3DWebDlg\0\0ok\0LoadFinished(bool)\0"
"reply\0handleFileDownload(QNetworkReply*)\0"
};
const QMetaObject CRoom3DWebDlg::staticMetaObject = {
{ &CRoom3DBaseDlg::staticMetaObject, qt_meta_stringdata_CRoom3DWebDlg,
qt_meta_data_CRoom3DWebDlg, 0 }
};
#ifdef Q_NO_DATA_RELOCATION
const QMetaObject &CRoom3DWebDlg::getStaticMetaObject() { return staticMetaObject; }
#endif //Q_NO_DATA_RELOCATION
const QMetaObject *CRoom3DWebDlg::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject;
}
void *CRoom3DWebDlg::qt_metacast(const char *_clname)
{
if (!_clname) return 0;
if (!strcmp(_clname, qt_meta_stringdata_CRoom3DWebDlg))
return static_cast<void*>(const_cast< CRoom3DWebDlg*>(this));
return CRoom3DBaseDlg::qt_metacast(_clname);
}
int CRoom3DWebDlg::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = CRoom3DBaseDlg::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
switch (_id) {
case 0: LoadFinished((*reinterpret_cast< bool(*)>(_a[1]))); break;
case 1: handleFileDownload((*reinterpret_cast< QNetworkReply*(*)>(_a[1]))); break;
default: ;
}
_id -= 2;
}
return _id;
}
QT_END_MOC_NAMESPACE
|
[
"wagdev1919@gmail.com"
] |
wagdev1919@gmail.com
|
3f125dc4530bc6fe6304c32d7f82993d9acab0bc
|
6405afd77b729254442bfa07e6fbe8ab748ad814
|
/QAsys/xiagao_dos/src/Quas.cpp
|
725aee453c4bb2f041daf2300d12f7b77be3bfc6
|
[] |
no_license
|
YiwenSu/QAsys
|
a44872daa9f8e0a8655660cbfee7f5b450e35d7b
|
6ae3257891e18dc2e665f7263a16e6efd5f6616e
|
refs/heads/master
| 2020-04-01T19:41:13.999075
| 2018-10-18T05:10:56
| 2018-10-18T05:10:56
| 153,566,562
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 634
|
cpp
|
#include "Quas.h"
Quas::Quas()
{
//ctor
}
Quas::~Quas()
{
//dtor
}
void Quas::Display()
{
string a,au,t;
int i;
this->GetContent(a);
this->Getauid(au);
this->Gettime(t);
this->Getid(i);
cout<<"TITLE: "<<this->title<<endl<<"CONTENT:"<<endl<<a<<endl<<"id:"<<this->id <<" "<<"auid: "<<au
<<" "<<"time: "<<t<<endl<<endl<<endl;
}
void Quas::Create(string s)
{
this->Writeauid(s);
this->Writetitle();
this->Writecontent();
//this->Writeqid();
this->Writetime();
}
void Quas::Writetitle()
{
cout<<"TITLE: ";
getchar();
getline(cin,this->title);
}
|
[
"suyiwen19970227@sina.com"
] |
suyiwen19970227@sina.com
|
08cb67889f72ce4507bc56ae2918f7f6c0e83940
|
f458038b0fd4ed79fc5ad8efa1e1170a57a7e769
|
/Hackerrank/Save the Queen.cpp
|
97c0533817e51dfcb15f4d2e0960c671fe9a18f1
|
[
"MIT"
] |
permissive
|
sgpritam/DSAlgo
|
c000519d1bde0907d5af477893e3dff0e0806add
|
3e0e6b19d4f8978b2fc3be48195705a285dbdce8
|
refs/heads/master
| 2021-02-26T09:27:36.594473
| 2020-10-01T14:22:27
| 2020-10-01T14:22:27
| 245,515,797
| 1
| 0
|
MIT
| 2020-10-01T14:22:28
| 2020-03-06T21:01:36
|
C++
|
UTF-8
|
C++
| false
| false
| 1,916
|
cpp
|
#include <bits/stdc++.h>
using namespace std;
string ltrim(const string &);
string rtrim(const string &);
vector<string> split(const string &);
/*
* Complete the 'solve' function below.
*
* The function accepts following parameters:
* 1. INTEGER n
* 2. INTEGER_ARRAY a
*/
void solve(int n, vector<int> a) {
// Print your result
sort(begin(a),end(a),greater<int>());
auto on = accumulate(begin(a),begin(a)+n,0.0);
auto off = accumulate(begin(a)+n,end(a),0.0);
auto i = 0;
auto avg = [&]() {return (off + on)/(n-i);};
while(avg() < a[i] && i<n) on -=a[i], ++i;
cout << setprecision(10)<<fixed << avg() <<endl;
}
int main()
{
string first_multiple_input_temp;
getline(cin, first_multiple_input_temp);
vector<string> first_multiple_input = split(rtrim(first_multiple_input_temp));
int n = stoi(first_multiple_input[0]);
int k = stoi(first_multiple_input[1]);
string a_temp_temp;
getline(cin, a_temp_temp);
vector<string> a_temp = split(rtrim(a_temp_temp));
vector<int> a(k);
for (int i = 0; i < k; i++) {
int a_item = stoi(a_temp[i]);
a[i] = a_item;
}
solve(n, a);
return 0;
}
string ltrim(const string &str) {
string s(str);
s.erase(
s.begin(),
find_if(s.begin(), s.end(), not1(ptr_fun<int, int>(isspace)))
);
return s;
}
string rtrim(const string &str) {
string s(str);
s.erase(
find_if(s.rbegin(), s.rend(), not1(ptr_fun<int, int>(isspace))).base(),
s.end()
);
return s;
}
vector<string> split(const string &str) {
vector<string> tokens;
string::size_type start = 0;
string::size_type end = 0;
while ((end = str.find(" ", start)) != string::npos) {
tokens.push_back(str.substr(start, end - start));
start = end + 1;
}
tokens.push_back(str.substr(start));
return tokens;
}
|
[
"pritam1bnk@gmail.com"
] |
pritam1bnk@gmail.com
|
f41b23f3207a676fd29da788d40b5af25bc47c5e
|
bc91326b309787bb5e338f62e7b8bd34a7eb9b3d
|
/好压缩/HuffmanTree.hpp
|
ec751732241482e0d186dd3d934d50ffaf71b570
|
[] |
no_license
|
2416390994/helloword-
|
8d8a0786b7b32a325fd43dd43ab8b5c494f3629e
|
0baca1a4d5aa00dd875e6a193bddd00dd6f3bfc6
|
refs/heads/master
| 2021-06-25T15:33:16.480745
| 2021-01-01T12:25:00
| 2021-01-01T12:25:00
| 190,583,170
| 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 1,888
|
hpp
|
//什么是哈夫曼树:带权路径长度最短的一棵二叉树---权值越大,越靠近根节点
#pragma once
#include<iostream>
#include<vector>
#include<queue>
using namespace std;
template<class T>
struct HuffmanTreeNode
{
HuffmanTreeNode(const T& weight = T())
:_left(nullptr)
, _right(nullptr)
, _parent(nullptr)
, _weight(weight)
{}
HuffmanTreeNode<T>* _left; //左孩子
HuffmanTreeNode<T>* _right; //右孩子
HuffmanTreeNode<T>* _parent; //双亲结点
T _weight; //权值
};
template<class T>
class Less
{
typedef HuffmanTreeNode<T> Node;
public:
bool operator()(Node* left, Node* right)
{
return left->_weight > right->_weight;
}
};
template<class T>
class HuffmanTree
{
typedef HuffmanTreeNode<T> Node;
public:
HuffmanTree() //默认构造函数
:_root(nullptr)
{}
HuffmanTree(const vector<T>& p,const T& invalid) //invalid的意思就是无效的权值,就是权值无效的话,则就不用创建结点
{
CreatHuffmanTree(p,invalid);
}
~HuffmanTree()
{
_destoryHuffmanTree(_root);
}
void CreatHuffmanTree(const vector<T>& weight,const T& invalid)
{
priority_queue<Node*,vector<Node*>,Less<T> > p; //小堆
//1.构建森林
for (auto e : weight )
{
if (e == invalid)
continue;
p.push(new Node(e));
}
//cout << p.size() << endl;
while (p.size() > 1)
{
Node* left = p.top();
p.pop();
Node* right = p.top();
p.pop();
Node* pParent = new Node(left->_weight + right->_weight);
pParent->_left = left;
pParent->_right = right;
left->_parent = pParent;
right->_parent = pParent;
p.push(pParent);
}
_root = p.top();
}
Node* returnRoot()
{
return _root;
}
void _destoryHuffmanTree(Node*& tree)
{
if (tree)
{
_destoryHuffmanTree(tree->_left);
_destoryHuffmanTree(tree->_right);
delete tree;
tree = nullptr;
}
}
private:
Node* _root;
};
|
[
"2416390994@qq.com"
] |
2416390994@qq.com
|
b868c704fe069857c66c8c4490c4e2eaa72dbcc7
|
c2189140aab642c63a8a12af78b1270eeef910fb
|
/TriggerEfficiency.cc
|
17a5b2934d1b5e744838dac51b2c1c248bf570dc
|
[] |
no_license
|
KongTu/V0Analyzer2015
|
21165b640dfe3241eb329fbef6acd4bb52a77868
|
4e731ba0c4ef1dc201d279a8a8fa37605515f06d
|
refs/heads/master
| 2016-09-05T19:47:28.782272
| 2015-06-06T02:02:24
| 2015-06-06T02:02:24
| 29,557,549
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 10,668
|
cc
|
//cription: [one line class summary]
// Implementation:
// [Notes on implementation]
//
// Original Author: Zhoudunming Tu,
// Created: Mon Jun 13 20:56:30 CEST 2011
// $Id$
//
//
// system include files
#include <memory>
#include <string>
#include <vector>
#include <iostream>
#include <math.h>
#include <map>
#include <sstream>
#include <TMath.h>
#include <TH1D.h>
#include <TH2D.h>
#include <TH3D.h>
#include <TNtuple.h>
#include <TFile.h>
#include <TROOT.h>
#include <TSystem.h>
#include <TString.h>
#include <TCanvas.h>
#include <TVector3.h>
#include <TRandom.h>
#include <TNtuple.h>
// user include files
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/EDAnalyzer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "DataFormats/TrackReco/interface/Track.h"
#include "DataFormats/TrackReco/interface/TrackFwd.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "DataFormats/JetReco/interface/PFJet.h"
#include "DataFormats/JetReco/interface/PFJetCollection.h"
#include "DataFormats/VertexReco/interface/Vertex.h"
#include "DataFormats/VertexReco/interface/VertexFwd.h"
#include "DataFormats/RecoCandidate/interface/RecoCandidate.h"
#include "DataFormats/Candidate/interface/Candidate.h"
#include "DataFormats/Candidate/interface/VertexCompositeCandidate.h"
#include "DataFormats/Candidate/interface/VertexCompositeCandidateFwd.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "CommonTools/UtilAlgos/interface/TFileService.h"
#include "DataFormats/TrackReco/interface/DeDxData.h"
#include <Math/Functions.h>
#include <Math/SVector.h>
#include <Math/SMatrix.h>
//////////////////////////////////////////////
// CMSSW user include files
#include "DataFormats/Common/interface/DetSetAlgorithm.h"
#include "DataFormats/GeometryVector/interface/GlobalPoint.h"
#include "DataFormats/SiPixelDetId/interface/PXBDetId.h"
#include "DataFormats/SiPixelDetId/interface/PXFDetId.h"
#include "DataFormats/Common/interface/TriggerResults.h"
#include "DataFormats/VertexReco/interface/Vertex.h"
#include "DataFormats/VertexReco/interface/VertexFwd.h"
#include "DataFormats/TrackerRecHit2D/interface/SiPixelRecHitCollection.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/EDAnalyzer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "Geometry/Records/interface/TrackerDigiGeometryRecord.h"
#include "Geometry/TrackerGeometryBuilder/interface/PixelGeomDetUnit.h"
#include "Geometry/TrackerGeometryBuilder/interface/TrackerGeometry.h"
#include "Geometry/TrackerGeometryBuilder/interface/TrackerLayerIdAccessor.h"
#include "HLTrigger/HLTcore/interface/HLTConfigProvider.h"
#include "CommonTools/UtilAlgos/interface/TFileService.h"
#include "SimDataFormats/TrackingAnalysis/interface/TrackingVertex.h"
#include "SimDataFormats/TrackingAnalysis/interface/TrackingVertexContainer.h"
#include "SimDataFormats/TrackingAnalysis/interface/TrackingParticle.h"
#include "SimDataFormats/TrackingHit/interface/PSimHit.h"
#include "SimGeneral/HepPDTRecord/interface/ParticleDataTable.h"
#include "SimTracker/TrackerHitAssociation/interface/TrackerHitAssociator.h"
#include "DataFormats/SiPixelDetId/interface/PixelEndcapName.h"
#include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerReadoutSetup.h"
#include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerReadoutRecord.h"
#include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerObjectMapRecord.h"
#include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerObjectMap.h"
#include "L1Trigger/GlobalTrigger/interface/L1GlobalTrigger.h"
#include "DataFormats/Math/interface/Point3D.h"
#include "DataFormats/BeamSpot/interface/BeamSpot.h"
#include "SimDataFormats/TrackingAnalysis/interface/TrackingParticle.h"
#include "SimDataFormats/TrackingAnalysis/interface/TrackingParticleFwd.h"
#include "SimTracker/Records/interface/TrackAssociatorRecord.h"
#include "DataFormats/RecoCandidate/interface/TrackAssociation.h"
#include "SimTracker/TrackAssociation/interface/TrackAssociatorByHits.h"
#include "DataFormats/TrackReco/interface/DeDxData.h"
#include "DataFormats/HepMCCandidate/interface/GenParticle.h"
// Heavyion
#include "DataFormats/HeavyIonEvent/interface/Centrality.h"
// Particle Flow
#include "DataFormats/ParticleFlowCandidate/interface/PFCandidate.h"
#include "DataFormats/ParticleFlowReco/interface/PFBlock.h"
#include "DataFormats/ParticleFlowReco/interface/PFCluster.h"
#include "DataFormats/ParticleFlowReco/interface/PFClusterFwd.h"
// Vertex significance
#include "RecoBTag/SecondaryVertex/interface/SecondaryVertex.h"
// Root include files
#include "TTree.h"
//
// Track Matching and fake rate calculations
//#include "RiceHIG/V0Analysis/interface/V0Validator.h"
#include "DataFormats/VertexReco/interface/VertexFwd.h"
//
// class decleration
//
class TriggerEfficiency : public edm::EDAnalyzer {
public:
explicit TriggerEfficiency(const edm::ParameterSet&);
~TriggerEfficiency();
private:
virtual void beginJob() ;
virtual void analyze(const edm::Event&, const edm::EventSetup&);
virtual void endJob() ;
// ----------member data ---------------------------
edm::InputTag trackSrc_;
edm::InputTag genParticleSrc_;
std::string vertexSrc_;
int multmin_;
int multmax_;
int mult_;
bool doGenParticle_;
bool doNumberPrimaryVertex_;
TH1D* eventNumber;
TH1D* totalEvent;
TH1D* numberOfVertexHist;
};
//
// constants, enums and typedefs
//
//
// static data member definitions
//
//
// constructors and destructor
//
TriggerEfficiency::TriggerEfficiency(const edm::ParameterSet& iConfig)
{
trackSrc_ = iConfig.getParameter<edm::InputTag>("trackSrc");
vertexSrc_ = iConfig.getParameter<std::string>("vertexSrc");
genParticleSrc_ = iConfig.getParameter<edm::InputTag>("genParticleSrc");
multmin_ = iConfig.getUntrackedParameter<int>("multmin", 120);
multmax_ = iConfig.getUntrackedParameter<int>("multmax", 150);
doGenParticle_ = iConfig.getUntrackedParameter<bool>("doGenParticle",false);
doNumberPrimaryVertex_ = iConfig.getUntrackedParameter<bool>("doNumberPrimaryVertex",false);
}
TriggerEfficiency::~TriggerEfficiency()
{
// do anything here that needs to be done at desctruction time
// (e.g. close files, deallocate resources etc.)
}
//==================
// member functions
//==================
// ------------ method called to for each event ------------
void
TriggerEfficiency::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup)
{
using namespace edm;
using namespace std;
edm::Handle<reco::VertexCollection> vertices;
iEvent.getByLabel(vertexSrc_,vertices);
double bestvz=-999.9, bestvx=-999.9, bestvy=-999.9;
double bestvzError=-999.9, bestvxError=-999.9, bestvyError=-999.9;
if( doNumberPrimaryVertex_ ){
int numOfVertex = 0;
cout << " vertex size: " << vertices->size() << endl;
for( unsigned int i = 0; i < vertices->size(); i++){
int tracksize = (*vertices)[i].tracksSize();
const reco::Vertex & vtx = (*vertices)[i];
bestvz = vtx.z(); bestvx = vtx.x(); bestvy = vtx.y();
bestvzError = vtx.zError(); bestvxError = vtx.xError(); bestvyError = vtx.yError();
if( tracksize > 2 && TMath::Abs(bestvz) < 15 ){
numOfVertex++;
}
}
numberOfVertexHist->Fill( numOfVertex );
}
const reco::Vertex & vtx = (*vertices)[0];
bestvz = vtx.z(); bestvx = vtx.x(); bestvy = vtx.y();
bestvzError = vtx.zError(); bestvxError = vtx.xError(); bestvyError = vtx.yError();
//first selection; vertices
if ( !doGenParticle_ ){
//if(bestvz < -15.0 || bestvz > 15.0) return;
if ( vtx.isFake() ) return;
}
Handle<reco::TrackCollection> tracks;
iEvent.getByLabel(trackSrc_, tracks);
int nTracks = 0;
for(unsigned it = 0; it < tracks->size(); it++){
const reco::Track & trk = (*tracks)[it];
math::XYZPoint bestvtx(bestvx,bestvy,bestvz);
double dzvtx = trk.dz(bestvtx);
double dxyvtx = trk.dxy(bestvtx);
double dzerror = sqrt(trk.dzError()*trk.dzError()+bestvzError*bestvzError);
double dxyerror = sqrt(trk.d0Error()*trk.d0Error()+bestvxError*bestvyError);
if(!trk.quality(reco::TrackBase::highPurity)) continue;
if(fabs(trk.ptError())/trk.pt()>0.10) continue;
if(fabs(dzvtx/dzerror) > 3) continue;
if(fabs(dxyvtx/dxyerror) > 3) continue;
//ntrack selection:
if ( fabs(trk.eta()) > 2.4 || trk.pt() < 0.4 ) continue;
nTracks++;
}
//multiplicity bins:
if ( nTracks > multmin_ && nTracks < multmax_ ){
if( doGenParticle_ ){
totalEvent->Fill(1);
edm::Handle<reco::GenParticleCollection> genParticleCollection;
iEvent.getByLabel(genParticleSrc_, genParticleCollection);
int genCountsMinus = 0;
int genCountsPlus = 0;
for(unsigned it=0; it<genParticleCollection->size(); ++it) {
const reco::GenParticle & genCand = (*genParticleCollection)[it];
double energy = genCand.energy();
double geneta = genCand.eta();
if ( energy > 3.0 ){
if( geneta > 3.0 && geneta < 5.0 )
genCountsPlus++;
else if ( geneta > -5.0 && geneta < -3.0 )
genCountsMinus++;
}
}
if ( genCountsPlus > 0 && genCountsMinus > 0)
eventNumber->Fill(1);
}
else{
eventNumber->Fill(1);
}
}
}
// ------------ method called once each job just before starting event loop ------------
void
TriggerEfficiency::beginJob()
{
edm::Service<TFileService> fs;
TH3D::SetDefaultSumw2();
eventNumber = fs->make<TH1D>("eventNumber",";event",10,0,10);
totalEvent = fs->make<TH1D>("totalEvent",";event",10,0,10);
numberOfVertexHist = fs->make<TH1D>("numberOfVertex",";counts",20,0,20);
}
// ------------ method called once each job just after ending the event loop ------------
void
TriggerEfficiency::endJob() {
}
//define this as a plug-in
DEFINE_FWK_MODULE(TriggerEfficiency);
|
[
"zhoudunmingtu@Zhoudunmings-MacBook-Pro.local"
] |
zhoudunmingtu@Zhoudunmings-MacBook-Pro.local
|
2dad4670079504df5b69ad2293d12a73779c29e1
|
0dca3325c194509a48d0c4056909175d6c29f7bc
|
/bssopenapi/include/alibabacloud/bssopenapi/model/DescribeResourceCoverageDetailRequest.h
|
27fcede8500d725c734309076c5c6249137034cf
|
[
"Apache-2.0"
] |
permissive
|
dingshiyu/aliyun-openapi-cpp-sdk
|
3eebd9149c2e6a2b835aba9d746ef9e6bef9ad62
|
4edd799a79f9b94330d5705bb0789105b6d0bb44
|
refs/heads/master
| 2023-07-31T10:11:20.446221
| 2021-09-26T10:08:42
| 2021-09-26T10:08:42
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,156
|
h
|
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ALIBABACLOUD_BSSOPENAPI_MODEL_DESCRIBERESOURCECOVERAGEDETAILREQUEST_H_
#define ALIBABACLOUD_BSSOPENAPI_MODEL_DESCRIBERESOURCECOVERAGEDETAILREQUEST_H_
#include <string>
#include <vector>
#include <alibabacloud/core/RpcServiceRequest.h>
#include <alibabacloud/bssopenapi/BssOpenApiExport.h>
namespace AlibabaCloud
{
namespace BssOpenApi
{
namespace Model
{
class ALIBABACLOUD_BSSOPENAPI_EXPORT DescribeResourceCoverageDetailRequest : public RpcServiceRequest
{
public:
DescribeResourceCoverageDetailRequest();
~DescribeResourceCoverageDetailRequest();
std::string getPeriodType()const;
void setPeriodType(const std::string& periodType);
long getBillOwnerId()const;
void setBillOwnerId(long billOwnerId);
std::string getResourceType()const;
void setResourceType(const std::string& resourceType);
std::string getStartPeriod()const;
void setStartPeriod(const std::string& startPeriod);
std::string getEndPeriod()const;
void setEndPeriod(const std::string& endPeriod);
std::string getNextToken()const;
void setNextToken(const std::string& nextToken);
int getMaxResults()const;
void setMaxResults(int maxResults);
private:
std::string periodType_;
long billOwnerId_;
std::string resourceType_;
std::string startPeriod_;
std::string endPeriod_;
std::string nextToken_;
int maxResults_;
};
}
}
}
#endif // !ALIBABACLOUD_BSSOPENAPI_MODEL_DESCRIBERESOURCECOVERAGEDETAILREQUEST_H_
|
[
"sdk-team@alibabacloud.com"
] |
sdk-team@alibabacloud.com
|
af268e146734bd66f163f4c06f0ab128df96e447
|
a909df0ba2abf695df4a7d15350312d4c6463c48
|
/UVa/11040.cpp
|
bab3c87daa00f001fac4c6740a941588af0513fb
|
[] |
no_license
|
SayaUrobuchi/uvachan
|
1dadd767a96bb02c7e9449c48e463847480e98ec
|
c213f5f3dcfc72376913a21f9abe72988a8127a1
|
refs/heads/master
| 2023-07-23T03:59:50.638063
| 2023-07-16T04:31:23
| 2023-07-16T04:31:23
| 94,064,326
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,255
|
cpp
|
#include<stdio.h>
int main()
{
int a,b,c,d,e,f,g,h,i,j,k[10][10],x;
scanf("%d",&x);
for(x;x>0;x--)
{
for(i=1;i<10;i+=2)
{
for(j=1;j<=i;j+=2)
{
scanf("%d",&k[i][j]);
}
}
a=k[1][1]-k[3][1]-k[3][3];
a/=2;
k[3][2]=a;
k[2][1]=a+k[3][1];
k[2][2]=a+k[3][3];
a=k[3][1]-k[5][1]-k[5][3];
a/=2;
k[5][2]=a;
k[4][1]=a+k[5][1];
k[4][2]=a+k[5][3];
a=k[3][3]-k[5][3]-k[5][5];
a/=2;
k[5][4]=a;
k[4][3]=a+k[5][3];
k[4][4]=a+k[5][5];
a=k[5][1]-k[7][1]-k[7][3];
a/=2;
k[7][2]=a;
k[6][1]=a+k[7][1];
k[6][2]=a+k[7][3];
a=k[5][3]-k[7][3]-k[7][5];
a/=2;
k[7][4]=a;
k[6][3]=a+k[7][3];
k[6][4]=a+k[7][5];
a=k[5][5]-k[7][5]-k[7][7];
a/=2;
k[7][6]=a;
k[6][5]=a+k[7][5];
k[6][6]=a+k[7][7];
a=k[7][1]-k[9][1]-k[9][3];
a/=2;
k[9][2]=a;
k[8][1]=a+k[9][1];
k[8][2]=a+k[9][3];
a=k[7][3]-k[9][3]-k[9][5];
a/=2;
k[9][4]=a;
k[8][3]=a+k[9][3];
k[8][4]=a+k[9][5];
a=k[7][5]-k[9][5]-k[9][7];
a/=2;
k[9][6]=a;
k[8][5]=a+k[9][5];
k[8][6]=a+k[9][7];
a=k[7][7]-k[9][7]-k[9][9];
a/=2;
k[9][8]=a;
k[8][7]=a+k[9][7];
k[8][8]=a+k[9][9];
for(i=1;i<10;i++)
{
printf("%d",k[i][1]);
for(j=2;j<=i;j++)
{
printf(" %d",k[i][j]);
}
printf("\n");
}
}
return 0;
}
|
[
"sa072688@gmail.com"
] |
sa072688@gmail.com
|
81ef882cefbf54c54e5b01845fd75bbb42ed6d85
|
2a1ef984f2af7bc38628a5db3871d85f87831399
|
/Classes/ClientNet/MsgService/MsgPipe.h
|
c408886ea8c5dcc11b355bb0e2f25f7642c3fefa
|
[] |
no_license
|
hkanynetx/c2d_client_socket
|
2b72e9496daadcf4985271a0a317de995fdc6c28
|
195ee76d920d4fd43510e35197d500d68e0fe10a
|
refs/heads/master
| 2021-12-23T06:40:20.770144
| 2017-11-03T07:18:32
| 2017-11-03T07:18:32
| null | 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 1,083
|
h
|
#ifndef __Msg_Pipe_H__
#define __Msg_Pipe_H__
#include <deque>
#include <set>
#include "cocos2d.h"
#include "Public/Singleton.h"
#include "ClientNet/NetPack.h"
class IMsgService;
class MsgPipe : public CSingleton<MsgPipe>
{
FRIEND_SINGLETON_CLASS(MsgPipe);
private:
MsgPipe();
public:
~MsgPipe();
public:
// 添加新的来自服务器的消息
void appendOne(Pack& pack);
void processOne();
// 启动消息处理
void start();
// 暂定处理消息
void pause();
bool isPause() const { return m_isPause; }
// 恢复处理消息
void recover();
const std::deque<Pack>& getMsgDeque() const { return m_msgDeque; }
//@brief: 注册消息处理服务
void registService(IMsgService*);
void unRegistService(IMsgService*);
private:
class ScheduleRunner : public cocos2d::Ref
{
public:
ScheduleRunner();
~ScheduleRunner();
void update(float dt);
};
private:
bool m_isPause;
std::deque<Pack> m_msgDeque;
std::set<IMsgService*> m_setMsgService;
};
#endif
|
[
"huanyingch01@gmail.com"
] |
huanyingch01@gmail.com
|
ae4432a1319c1deb6c6d59c53cea78bb7a053795
|
ac3815967418153a7c5806127a50b0fe5b585f66
|
/rxzn_zj/Transceiver/spi.cpp
|
767cac204c46e77a58edfb5f047605535c0bb708
|
[] |
no_license
|
hugo0chen/rxzn_zj
|
944baaa22cd9d7066cae1f5fb197425b21907081
|
0b04c02ecdc978f6f239471f70c988ad5eec338f
|
refs/heads/master
| 2021-07-06T13:15:11.631836
| 2017-09-25T02:59:23
| 2017-09-25T02:59:23
| 104,304,225
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 318
|
cpp
|
#include "spi.h"
/* MOSI P3.1
* MISO P3.2
* SCLK P3.3
*/
INT8U SPI_ExchangeByte(INT8U data){
INT8U i,temp;
_DINT();
SCK_0 ;
for(i = 0; i < 8; i++){
if(data&0x80){
MOSI_1;
}
else{
MOSI_0;
}
data <<= 1;
SCK_1;
temp <<= 1;
if(MISO) temp++; //MISO
SCK_0 ;
}
_EINT();
return temp;
}
|
[
"2482752117@qq.com"
] |
2482752117@qq.com
|
c92c0308b007d1d94a327d38a69bd6cfafc631c0
|
9b2f2bf07b2df790989fe73989a1f7b13dc4787e
|
/Codeforces Solutions/617A-Elephant.cpp
|
441aa20bff6d8e0e87805e4175ec09f25122e074
|
[] |
no_license
|
ImdadMiran17/SolutionsofProblemsOnlineJudge
|
d38a33484c3b74db59f52dc6b34ad6cc9300acb9
|
30f4f92d4526d12e628465766808b0bdb87c98f3
|
refs/heads/master
| 2023-08-17T02:28:21.473280
| 2023-08-03T19:09:35
| 2023-08-03T19:09:35
| 204,754,944
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 205
|
cpp
|
#include<bits/stdc++.h>
using namespace std;
int main(void)
{
int n,a;
cin >> n;
if(n%5==0)
a=n/5;
else
a=(n/5)+1;
cout << a << endl;
return 0;
}
|
[
"noreply@github.com"
] |
ImdadMiran17.noreply@github.com
|
116f8c141390b16b22ecdee9ff3ecfd7b7bb66cd
|
6bdaeda6a193c75d556014f1e9897af4f23ee8e4
|
/src/zeromq_handler_stop.cpp
|
78bc61ac5b2d147c55334f9179b27e42349e235e
|
[
"BSD-3-Clause"
] |
permissive
|
AllenInstitute/ZeroMQ-XOP
|
5e96c65d158b7761d840002007430682f2e492b9
|
ab2d2b752d1c8856993b7e82bf6bc37d5c558363
|
refs/heads/main
| 2023-08-29T11:59:45.540711
| 2023-05-26T13:52:15
| 2023-05-26T13:52:15
| 97,764,684
| 11
| 8
|
BSD-3-Clause
| 2023-05-26T13:52:16
| 2017-07-19T21:57:47
|
C
|
UTF-8
|
C++
| false
| false
| 315
|
cpp
|
#include "ZeroMQ.h"
#include "MessageHandler.h"
// This file is part of the `ZeroMQ-XOP` project and licensed under
// BSD-3-Clause.
// variable zeromq_handler_stop()
extern "C" int zeromq_handler_stop(zeromq_handler_stopParams *p)
{
BEGIN_OUTER_CATCH
MessageHandler::Instance().Stop();
END_OUTER_CATCH
}
|
[
"thomas.braun@byte-physics.de"
] |
thomas.braun@byte-physics.de
|
fa6c4cd90f9249c7ac6e4509d29aef69300ea483
|
422c7a4f5866ff6a2b1383c96588204b540c9e97
|
/Proj2/libcppSocket/libcppsocket/ClientSocket.h
|
6d5ea98f5e1163523c814fdc4caaacae0f6500fb
|
[] |
no_license
|
blaedj/5651Networks
|
fd292e1950c67c9b545afdcc52cb5aeb7069fbb9
|
8824818e84989a0d323ac34eba2cc4c5c4301037
|
refs/heads/master
| 2020-06-01T16:35:00.917277
| 2013-10-18T21:40:30
| 2013-10-18T21:40:30
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 529
|
h
|
/*
* @author: Blaed Johnston Oct 2013
* ClientSocket.h
*
*/
#ifndef __LIBCPPSOCKET__CLIENTSOCKET_H
#define __LIBCPPSOCKET__CLIENTSOCKET_H 1
#include "Socket.h"
#include <sys/types.h>
#include <netinet/in.h>
namespace libcppsocket {
class ClientSocket : public Socket {
public:
ClientSocket(string ip_address, int port_num);
void send_request(MessageBuffer message);
MessageBuffer get_response();
void close_socket();
private:
int host_ip;
int port;
sockaddr_in server;
};
}
#endif
|
[
"blaedj@gmail.com"
] |
blaedj@gmail.com
|
a2781ddc92b0a995d38824e5ef64b46931741b3c
|
5f16210532e677e817d01b4023629ba858c5b5ce
|
/src/init.cpp
|
ab1e5e9b3234fba459055596b0e52d454d94533e
|
[
"MIT"
] |
permissive
|
tulipcoins/tulipcoin
|
509648aedca976131ca611206f1ad41621515904
|
5e14b1e488b0672ca405a2732603b1e091e2bbd2
|
refs/heads/master
| 2021-05-13T23:23:40.968992
| 2018-01-12T12:50:13
| 2018-01-12T12:50:13
| 116,513,389
| 5
| 3
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 36,137
|
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 "txdb.h"
#include "walletdb.h"
#include "bitcoinrpc.h"
#include "net.h"
#include "init.h"
#include "util.h"
#include "ui_interface.h"
#include "checkpoints.h"
#include "zerocoin/ZeroTest.h"
#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
#include <boost/filesystem/convenience.hpp>
#include <boost/interprocess/sync/file_lock.hpp>
#include <boost/algorithm/string/predicate.hpp>
#include <openssl/crypto.h>
#ifndef WIN32
#include <signal.h>
#endif
using namespace std;
using namespace boost;
CWallet* pwalletMain;
CClientUIInterface uiInterface;
bool fConfChange;
bool fEnforceCanonical;
unsigned int nNodeLifespan;
unsigned int nDerivationMethodIndex;
unsigned int nMinerSleep;
bool fUseFastIndex;
enum Checkpoints::CPMode CheckpointsMode;
//////////////////////////////////////////////////////////////////////////////
//
// Shutdown
//
void ExitTimeout(void* parg)
{
#ifdef WIN32
MilliSleep(5000);
ExitProcess(0);
#endif
}
void StartShutdown()
{
#ifdef QT_GUI
// ensure we leave the Qt main loop for a clean GUI exit (Shutdown() is called in bitcoin.cpp afterwards)
uiInterface.QueueShutdown();
#else
// Without UI, Shutdown() can simply be started in a new thread
NewThread(Shutdown, NULL);
#endif
}
void Shutdown(void* parg)
{
static CCriticalSection cs_Shutdown;
static bool fTaken;
// Make this thread recognisable as the shutdown thread
RenameThread("tulipcoin-shutoff");
bool fFirstThread = false;
{
TRY_LOCK(cs_Shutdown, lockShutdown);
if (lockShutdown)
{
fFirstThread = !fTaken;
fTaken = true;
}
}
static bool fExit;
if (fFirstThread)
{
fShutdown = true;
nTransactionsUpdated++;
// CTxDB().Close();
bitdb.Flush(false);
StopNode();
bitdb.Flush(true);
boost::filesystem::remove(GetPidFile());
UnregisterWallet(pwalletMain);
delete pwalletMain;
NewThread(ExitTimeout, NULL);
MilliSleep(50);
printf("TulipCoin exited\n\n");
fExit = true;
#ifndef QT_GUI
// ensure non-UI client gets exited here, but let Bitcoin-Qt reach 'return 0;' in bitcoin.cpp
exit(0);
#endif
}
else
{
while (!fExit)
MilliSleep(500);
MilliSleep(100);
ExitThread(0);
}
}
void HandleSIGTERM(int)
{
fRequestShutdown = true;
}
void HandleSIGHUP(int)
{
fReopenDebugLog = true;
}
//////////////////////////////////////////////////////////////////////////////
//
// Start
//
#if !defined(QT_GUI)
bool AppInit(int argc, char* argv[])
{
bool fRet = false;
try
{
//
// Parameters
//
// If Qt is used, parameters/bitcoin.conf are parsed in qt/bitcoin.cpp's main()
ParseParameters(argc, argv);
if (!boost::filesystem::is_directory(GetDataDir(false)))
{
fprintf(stderr, "Error: Specified directory does not exist\n");
Shutdown(NULL);
}
ReadConfigFile(mapArgs, mapMultiArgs);
if (mapArgs.count("-?") || mapArgs.count("--help"))
{
// First part of help message is specific to bitcoind / RPC client
std::string strUsage = _("TulipCoin version") + " " + FormatFullVersion() + "\n\n" +
_("Usage:") + "\n" +
" tulipcoind [options] " + "\n" +
" tulipcoind [options] <command> [params] " + _("Send command to -server or tulipcoind") + "\n" +
" tulipcoind [options] help " + _("List commands") + "\n" +
" tulipcoind [options] help <command> " + _("Get help for a command") + "\n";
strUsage += "\n" + HelpMessage();
fprintf(stdout, "%s", strUsage.c_str());
return false;
}
// Command-line RPC
for (int i = 1; i < argc; i++)
if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "tulipcoin:"))
fCommandLine = true;
if (fCommandLine)
{
int ret = CommandLineRPC(argc, argv);
exit(ret);
}
fRet = AppInit2();
}
catch (std::exception& e) {
PrintException(&e, "AppInit()");
} catch (...) {
PrintException(NULL, "AppInit()");
}
if (!fRet)
Shutdown(NULL);
return fRet;
}
extern void noui_connect();
int main(int argc, char* argv[])
{
bool fRet = false;
// Connect bitcoind signal handlers
noui_connect();
fRet = AppInit(argc, argv);
if (fRet && fDaemon)
return 0;
return 1;
}
#endif
bool static InitError(const std::string &str)
{
uiInterface.ThreadSafeMessageBox(str, _("TulipCoin"), CClientUIInterface::OK | CClientUIInterface::MODAL);
return false;
}
bool static InitWarning(const std::string &str)
{
uiInterface.ThreadSafeMessageBox(str, _("TulipCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
return true;
}
bool static Bind(const CService &addr, bool fError = true) {
if (IsLimited(addr))
return false;
std::string strError;
if (!BindListenPort(addr, strError)) {
if (fError)
return InitError(strError);
return false;
}
return true;
}
// Core-specific options shared between UI and daemon
std::string HelpMessage()
{
string strUsage = _("Options:") + "\n" +
" -? " + _("This help message") + "\n" +
" -conf=<file> " + _("Specify configuration file (default: tulipcoin.conf)") + "\n" +
" -pid=<file> " + _("Specify pid file (default: tulipcoind.pid)") + "\n" +
" -datadir=<dir> " + _("Specify data directory") + "\n" +
" -wallet=<dir> " + _("Specify wallet file (within data directory)") + "\n" +
" -dbcache=<n> " + _("Set database cache size in megabytes (default: 25)") + "\n" +
" -dblogsize=<n> " + _("Set database disk log size in megabytes (default: 100)") + "\n" +
" -timeout=<n> " + _("Specify connection timeout in milliseconds (default: 5000)") + "\n" +
" -proxy=<ip:port> " + _("Connect through socks proxy") + "\n" +
" -socks=<n> " + _("Select the version of socks proxy to use (4-5, default: 5)") + "\n" +
" -tor=<ip:port> " + _("Use proxy to reach tor hidden services (default: same as -proxy)") + "\n"
" -dns " + _("Allow DNS lookups for -addnode, -seednode and -connect") + "\n" +
" -port=<port> " + _("Listen for connections on <port> (default: 31647 or testnet: 41647)") + "\n" +
" -maxconnections=<n> " + _("Maintain at most <n> connections to peers (default: 125)") + "\n" +
" -addnode=<ip> " + _("Add a node to connect to and attempt to keep the connection open") + "\n" +
" -connect=<ip> " + _("Connect only to the specified node(s)") + "\n" +
" -seednode=<ip> " + _("Connect to a node to retrieve peer addresses, and disconnect") + "\n" +
" -externalip=<ip> " + _("Specify your own public address") + "\n" +
" -onlynet=<net> " + _("Only connect to nodes in network <net> (IPv4, IPv6 or Tor)") + "\n" +
" -discover " + _("Discover own IP address (default: 1 when listening and no -externalip)") + "\n" +
" -irc " + _("Find peers using internet relay chat (default: 0)") + "\n" +
" -listen " + _("Accept connections from outside (default: 1 if no -proxy or -connect)") + "\n" +
" -bind=<addr> " + _("Bind to given address. Use [host]:port notation for IPv6") + "\n" +
" -dnsseed " + _("Find peers using DNS lookup (default: 1)") + "\n" +
" -staking " + _("Stake your coins to support network and gain reward (default: 1)") + "\n" +
" -synctime " + _("Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1)") + "\n" +
" -cppolicy " + _("Sync checkpoints policy (default: strict)") + "\n" +
" -banscore=<n> " + _("Threshold for disconnecting misbehaving peers (default: 100)") + "\n" +
" -bantime=<n> " + _("Number of seconds to keep misbehaving peers from reconnecting (default: 86400)") + "\n" +
" -maxreceivebuffer=<n> " + _("Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000)") + "\n" +
" -maxsendbuffer=<n> " + _("Maximum per-connection send buffer, <n>*1000 bytes (default: 1000)") + "\n" +
#ifdef USE_UPNP
#if USE_UPNP
" -upnp " + _("Use UPnP to map the listening port (default: 1 when listening)") + "\n" +
#else
" -upnp " + _("Use UPnP to map the listening port (default: 0)") + "\n" +
#endif
#endif
" -paytxfee=<amt> " + _("Fee per KB to add to transactions you send") + "\n" +
" -mininput=<amt> " + _("When creating transactions, ignore inputs with value less than this (default: 0.01)") + "\n" +
#ifdef QT_GUI
" -server " + _("Accept command line and JSON-RPC commands") + "\n" +
#endif
#if !defined(WIN32) && !defined(QT_GUI)
" -daemon " + _("Run in the background as a daemon and accept commands") + "\n" +
#endif
" -testnet " + _("Use the test network") + "\n" +
" -debug " + _("Output extra debugging information. Implies all other -debug* options") + "\n" +
" -debugnet " + _("Output extra network debugging information") + "\n" +
" -logtimestamps " + _("Prepend debug output with timestamp") + "\n" +
" -shrinkdebugfile " + _("Shrink debug.log file on client startup (default: 1 when no -debug)") + "\n" +
" -printtoconsole " + _("Send trace/debug info to console instead of debug.log file") + "\n" +
#ifdef WIN32
" -printtodebugger " + _("Send trace/debug info to debugger") + "\n" +
#endif
" -rpcuser=<user> " + _("Username for JSON-RPC connections") + "\n" +
" -rpcpassword=<pw> " + _("Password for JSON-RPC connections") + "\n" +
" -rpcport=<port> " + _("Listen for JSON-RPC connections on <port> (default: 31648 or testnet: 41648)") + "\n" +
" -rpcallowip=<ip> " + _("Allow JSON-RPC connections from specified IP address") + "\n" +
" -rpcconnect=<ip> " + _("Send commands to node running on <ip> (default: 127.0.0.1)") + "\n" +
" -blocknotify=<cmd> " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n" +
" -walletnotify=<cmd> " + _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)") + "\n" +
" -confchange " + _("Require a confirmations for change (default: 0)") + "\n" +
" -enforcecanonical " + _("Enforce transaction scripts to use canonical PUSH operators (default: 1)") + "\n" +
" -alertnotify=<cmd> " + _("Execute command when a relevant alert is received (%s in cmd is replaced by message)") + "\n" +
" -upgradewallet " + _("Upgrade wallet to latest format") + "\n" +
" -keypool=<n> " + _("Set key pool size to <n> (default: 100)") + "\n" +
" -rescan " + _("Rescan the block chain for missing wallet transactions") + "\n" +
" -salvagewallet " + _("Attempt to recover private keys from a corrupt wallet.dat") + "\n" +
" -checkblocks=<n> " + _("How many blocks to check at startup (default: 2500, 0 = all)") + "\n" +
" -checklevel=<n> " + _("How thorough the block verification is (0-6, default: 1)") + "\n" +
" -loadblock=<file> " + _("Imports blocks from external blk000?.dat file") + "\n" +
"\n" + _("Block creation options:") + "\n" +
" -blockminsize=<n> " + _("Set minimum block size in bytes (default: 0)") + "\n" +
" -blockmaxsize=<n> " + _("Set maximum block size in bytes (default: 250000)") + "\n" +
" -blockprioritysize=<n> " + _("Set maximum size of high-priority/low-fee transactions in bytes (default: 27000)") + "\n" +
"\n" + _("SSL options: (see the Bitcoin Wiki for SSL setup instructions)") + "\n" +
" -rpcssl " + _("Use OpenSSL (https) for JSON-RPC connections") + "\n" +
" -rpcsslcertificatechainfile=<file.cert> " + _("Server certificate file (default: server.cert)") + "\n" +
" -rpcsslprivatekeyfile=<file.pem> " + _("Server private key (default: server.pem)") + "\n" +
" -rpcsslciphers=<ciphers> " + _("Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)") + "\n";
return strUsage;
}
/** Sanity checks
* Ensure that Bitcoin is running in a usable environment with all
* necessary library support.
*/
bool InitSanityCheck(void)
{
if(!ECC_InitSanityCheck()) {
InitError("OpenSSL appears to lack support for elliptic curve cryptography. For more "
"information, visit https://en.bitcoin.it/wiki/OpenSSL_and_EC_Libraries");
return false;
}
// TODO: remaining sanity checks, see #4081
return true;
}
/** Initialize bitcoin.
* @pre Parameters should be parsed and config file should be read.
*/
bool AppInit2()
{
// ********************************************************* Step 1: setup
#ifdef _MSC_VER
// Turn off Microsoft heap dump noise
_CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
_CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
#endif
#if _MSC_VER >= 1400
// Disable confusing "helpful" text message on abort, Ctrl-C
_set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
#endif
#ifdef WIN32
// Enable Data Execution Prevention (DEP)
// Minimum supported OS versions: WinXP SP3, WinVista >= SP1, Win Server 2008
// A failure is non-critical and needs no further attention!
#ifndef PROCESS_DEP_ENABLE
// We define this here, because GCCs winbase.h limits this to _WIN32_WINNT >= 0x0601 (Windows 7),
// which is not correct. Can be removed, when GCCs winbase.h is fixed!
#define PROCESS_DEP_ENABLE 0x00000001
#endif
typedef BOOL (WINAPI *PSETPROCDEPPOL)(DWORD);
PSETPROCDEPPOL setProcDEPPol = (PSETPROCDEPPOL)GetProcAddress(GetModuleHandleA("Kernel32.dll"), "SetProcessDEPPolicy");
if (setProcDEPPol != NULL) setProcDEPPol(PROCESS_DEP_ENABLE);
#endif
#ifndef WIN32
umask(077);
// Clean shutdown on SIGTERM
struct sigaction sa;
sa.sa_handler = HandleSIGTERM;
sigemptyset(&sa.sa_mask);
sa.sa_flags = 0;
sigaction(SIGTERM, &sa, NULL);
sigaction(SIGINT, &sa, NULL);
// Reopen debug.log on SIGHUP
struct sigaction sa_hup;
sa_hup.sa_handler = HandleSIGHUP;
sigemptyset(&sa_hup.sa_mask);
sa_hup.sa_flags = 0;
sigaction(SIGHUP, &sa_hup, NULL);
#endif
// ********************************************************* Step 2: parameter interactions
nNodeLifespan = GetArg("-addrlifespan", 7);
fUseFastIndex = GetBoolArg("-fastindex", true);
nMinerSleep = GetArg("-minersleep", 500);
CheckpointsMode = Checkpoints::STRICT;
std::string strCpMode = GetArg("-cppolicy", "strict");
if(strCpMode == "strict")
CheckpointsMode = Checkpoints::STRICT;
if(strCpMode == "advisory")
CheckpointsMode = Checkpoints::ADVISORY;
if(strCpMode == "permissive")
CheckpointsMode = Checkpoints::PERMISSIVE;
nDerivationMethodIndex = 0;
fTestNet = GetBoolArg("-testnet");
if (fTestNet) {
SoftSetBoolArg("-irc", true);
}
if (mapArgs.count("-bind")) {
// when specifying an explicit binding address, you want to listen on it
// even when -connect or -proxy is specified
SoftSetBoolArg("-listen", true);
}
if (mapArgs.count("-connect") && mapMultiArgs["-connect"].size() > 0) {
// when only connecting to trusted nodes, do not seed via DNS, or listen by default
SoftSetBoolArg("-dnsseed", false);
SoftSetBoolArg("-listen", false);
}
if (mapArgs.count("-proxy")) {
// to protect privacy, do not listen by default if a proxy server is specified
SoftSetBoolArg("-listen", false);
}
if (!GetBoolArg("-listen", true)) {
// do not map ports or try to retrieve public IP when not listening (pointless)
SoftSetBoolArg("-upnp", false);
SoftSetBoolArg("-discover", false);
}
if (mapArgs.count("-externalip")) {
// if an explicit public IP is specified, do not try to find others
SoftSetBoolArg("-discover", false);
}
if (GetBoolArg("-salvagewallet")) {
// Rewrite just private keys: rescan to find transactions
SoftSetBoolArg("-rescan", true);
}
// ********************************************************* Step 3: parameter-to-internal-flags
fDebug = GetBoolArg("-debug");
// -debug implies fDebug*
if (fDebug)
fDebugNet = true;
else
fDebugNet = GetBoolArg("-debugnet");
#if !defined(WIN32) && !defined(QT_GUI)
fDaemon = GetBoolArg("-daemon");
#else
fDaemon = false;
#endif
if (fDaemon)
fServer = true;
else
fServer = GetBoolArg("-server");
/* force fServer when running without GUI */
#if !defined(QT_GUI)
fServer = true;
#endif
fPrintToConsole = GetBoolArg("-printtoconsole");
fPrintToDebugger = GetBoolArg("-printtodebugger");
fLogTimestamps = GetBoolArg("-logtimestamps");
if (mapArgs.count("-timeout"))
{
int nNewTimeout = GetArg("-timeout", 5000);
if (nNewTimeout > 0 && nNewTimeout < 600000)
nConnectTimeout = nNewTimeout;
}
if (mapArgs.count("-paytxfee"))
{
if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee))
return InitError(strprintf(_("Invalid amount for -paytxfee=<amount>: '%s'"), mapArgs["-paytxfee"].c_str()));
if (nTransactionFee > 0.25 * COIN)
InitWarning(_("Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction."));
}
fConfChange = GetBoolArg("-confchange", false);
fEnforceCanonical = GetBoolArg("-enforcecanonical", true);
if (mapArgs.count("-mininput"))
{
if (!ParseMoney(mapArgs["-mininput"], nMinimumInputValue))
return InitError(strprintf(_("Invalid amount for -mininput=<amount>: '%s'"), mapArgs["-mininput"].c_str()));
}
// ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log
// Sanity check
if (!InitSanityCheck())
return InitError(_("Initialization sanity check failed. TulipCoin is shutting down."));
std::string strDataDir = GetDataDir().string();
std::string strWalletFileName = GetArg("-wallet", "wallet.dat");
// strWalletFileName must be a plain filename without a directory
if (strWalletFileName != boost::filesystem::basename(strWalletFileName) + boost::filesystem::extension(strWalletFileName))
return InitError(strprintf(_("Wallet %s resides outside data directory %s."), strWalletFileName.c_str(), strDataDir.c_str()));
// Make sure only a single Bitcoin process is using the data directory.
boost::filesystem::path pathLockFile = GetDataDir() / ".lock";
FILE* file = fopen(pathLockFile.string().c_str(), "a"); // empty lock file; created if it doesn't exist.
if (file) fclose(file);
static boost::interprocess::file_lock lock(pathLockFile.string().c_str());
if (!lock.try_lock())
return InitError(strprintf(_("Cannot obtain a lock on data directory %s. TulipCoin is probably already running."), strDataDir.c_str()));
#if !defined(WIN32) && !defined(QT_GUI)
if (fDaemon)
{
// Daemonize
pid_t pid = fork();
if (pid < 0)
{
fprintf(stderr, "Error: fork() returned %d errno %d\n", pid, errno);
return false;
}
if (pid > 0)
{
CreatePidFile(GetPidFile(), pid);
return true;
}
pid_t sid = setsid();
if (sid < 0)
fprintf(stderr, "Error: setsid() returned %d errno %d\n", sid, errno);
}
#endif
if (GetBoolArg("-shrinkdebugfile", !fDebug))
ShrinkDebugFile();
printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
printf("TulipCoin version %s (%s)\n", FormatFullVersion().c_str(), CLIENT_DATE.c_str());
printf("Using OpenSSL version %s\n", SSLeay_version(SSLEAY_VERSION));
if (!fLogTimestamps)
printf("Startup time: %s\n", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
printf("Default data directory %s\n", GetDefaultDataDir().string().c_str());
printf("Used data directory %s\n", strDataDir.c_str());
std::ostringstream strErrors;
if (fDaemon)
fprintf(stdout, "TulipCoin server starting\n");
int64_t nStart;
// ********************************************************* Step 5: verify database integrity
uiInterface.InitMessage(_("Verifying database integrity..."));
if (!bitdb.Open(GetDataDir()))
{
string msg = strprintf(_("Error initializing database environment %s!"
" To recover, BACKUP THAT DIRECTORY, then remove"
" everything from it except for wallet.dat."), strDataDir.c_str());
return InitError(msg);
}
if (GetBoolArg("-salvagewallet"))
{
// Recover readable keypairs:
if (!CWalletDB::Recover(bitdb, strWalletFileName, true))
return false;
}
if (filesystem::exists(GetDataDir() / strWalletFileName))
{
CDBEnv::VerifyResult r = bitdb.Verify(strWalletFileName, CWalletDB::Recover);
if (r == CDBEnv::RECOVER_OK)
{
string msg = strprintf(_("Warning: wallet.dat corrupt, data salvaged!"
" Original wallet.dat saved as wallet.{timestamp}.bak in %s; if"
" your balance or transactions are incorrect you should"
" restore from a backup."), strDataDir.c_str());
uiInterface.ThreadSafeMessageBox(msg, _("TulipCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
}
if (r == CDBEnv::RECOVER_FAIL)
return InitError(_("wallet.dat corrupt, salvage failed"));
}
// ********************************************************* Step 6: network initialization
int nSocksVersion = GetArg("-socks", 5);
if (nSocksVersion != 4 && nSocksVersion != 5)
return InitError(strprintf(_("Unknown -socks proxy version requested: %i"), nSocksVersion));
if (mapArgs.count("-onlynet")) {
std::set<enum Network> nets;
BOOST_FOREACH(std::string snet, mapMultiArgs["-onlynet"]) {
enum Network net = ParseNetwork(snet);
if (net == NET_UNROUTABLE)
return InitError(strprintf(_("Unknown network specified in -onlynet: '%s'"), snet.c_str()));
nets.insert(net);
}
for (int n = 0; n < NET_MAX; n++) {
enum Network net = (enum Network)n;
if (!nets.count(net))
SetLimited(net);
}
}
CService addrProxy;
bool fProxy = false;
if (mapArgs.count("-proxy")) {
addrProxy = CService(mapArgs["-proxy"], 9050);
if (!addrProxy.IsValid())
return InitError(strprintf(_("Invalid -proxy address: '%s'"), mapArgs["-proxy"].c_str()));
if (!IsLimited(NET_IPV4))
SetProxy(NET_IPV4, addrProxy, nSocksVersion);
if (nSocksVersion > 4) {
if (!IsLimited(NET_IPV6))
SetProxy(NET_IPV6, addrProxy, nSocksVersion);
SetNameProxy(addrProxy, nSocksVersion);
}
fProxy = true;
}
// -tor can override normal proxy, -notor disables tor entirely
if (!(mapArgs.count("-tor") && mapArgs["-tor"] == "0") && (fProxy || mapArgs.count("-tor"))) {
CService addrOnion;
if (!mapArgs.count("-tor"))
addrOnion = addrProxy;
else
addrOnion = CService(mapArgs["-tor"], 9050);
if (!addrOnion.IsValid())
return InitError(strprintf(_("Invalid -tor address: '%s'"), mapArgs["-tor"].c_str()));
SetProxy(NET_TOR, addrOnion, 5);
SetReachable(NET_TOR);
}
// see Step 2: parameter interactions for more information about these
fNoListen = !GetBoolArg("-listen", true);
fDiscover = GetBoolArg("-discover", true);
fNameLookup = GetBoolArg("-dns", true);
#ifdef USE_UPNP
fUseUPnP = GetBoolArg("-upnp", USE_UPNP);
#endif
bool fBound = false;
if (!fNoListen)
{
std::string strError;
if (mapArgs.count("-bind")) {
BOOST_FOREACH(std::string strBind, mapMultiArgs["-bind"]) {
CService addrBind;
if (!Lookup(strBind.c_str(), addrBind, GetListenPort(), false))
return InitError(strprintf(_("Cannot resolve -bind address: '%s'"), strBind.c_str()));
fBound |= Bind(addrBind);
}
} else {
struct in_addr inaddr_any;
inaddr_any.s_addr = INADDR_ANY;
if (!IsLimited(NET_IPV6))
fBound |= Bind(CService(in6addr_any, GetListenPort()), false);
if (!IsLimited(NET_IPV4))
fBound |= Bind(CService(inaddr_any, GetListenPort()), !fBound);
}
if (!fBound)
return InitError(_("Failed to listen on any port. Use -listen=0 if you want this."));
}
if (mapArgs.count("-externalip"))
{
BOOST_FOREACH(string strAddr, mapMultiArgs["-externalip"]) {
CService addrLocal(strAddr, GetListenPort(), fNameLookup);
if (!addrLocal.IsValid())
return InitError(strprintf(_("Cannot resolve -externalip address: '%s'"), strAddr.c_str()));
AddLocal(CService(strAddr, GetListenPort(), fNameLookup), LOCAL_MANUAL);
}
}
if (mapArgs.count("-reservebalance")) // ppcoin: reserve balance amount
{
if (!ParseMoney(mapArgs["-reservebalance"], nReserveBalance))
{
InitError(_("Invalid amount for -reservebalance=<amount>"));
return false;
}
}
if (mapArgs.count("-checkpointkey")) // ppcoin: checkpoint master priv key
{
if (!Checkpoints::SetCheckpointPrivKey(GetArg("-checkpointkey", "")))
InitError(_("Unable to sign checkpoint, wrong checkpointkey?\n"));
}
BOOST_FOREACH(string strDest, mapMultiArgs["-seednode"])
AddOneShot(strDest);
// ********************************************************* Step 7: load blockchain
if (!bitdb.Open(GetDataDir()))
{
string msg = strprintf(_("Error initializing database environment %s!"
" To recover, BACKUP THAT DIRECTORY, then remove"
" everything from it except for wallet.dat."), strDataDir.c_str());
return InitError(msg);
}
if (GetBoolArg("-loadblockindextest"))
{
CTxDB txdb("r");
txdb.LoadBlockIndex();
PrintBlockTree();
return false;
}
uiInterface.InitMessage(_("Loading block index..."));
printf("Loading block index...\n");
nStart = GetTimeMillis();
if (!LoadBlockIndex())
return InitError(_("Error loading blkindex.dat"));
// as LoadBlockIndex can take several minutes, it's possible the user
// requested to kill bitcoin-qt during the last operation. If so, exit.
// As the program has not fully started yet, Shutdown() is possibly overkill.
if (fRequestShutdown)
{
printf("Shutdown requested. Exiting.\n");
return false;
}
printf(" block index %15"PRId64"ms\n", GetTimeMillis() - nStart);
if (GetBoolArg("-printblockindex") || GetBoolArg("-printblocktree"))
{
PrintBlockTree();
return false;
}
if (mapArgs.count("-printblock"))
{
string strMatch = mapArgs["-printblock"];
int nFound = 0;
for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
{
uint256 hash = (*mi).first;
if (strncmp(hash.ToString().c_str(), strMatch.c_str(), strMatch.size()) == 0)
{
CBlockIndex* pindex = (*mi).second;
CBlock block;
block.ReadFromDisk(pindex);
block.BuildMerkleTree();
block.print();
printf("\n");
nFound++;
}
}
if (nFound == 0)
printf("No blocks matching %s were found\n", strMatch.c_str());
return false;
}
// ********************************************************* Testing Zerocoin
if (GetBoolArg("-zerotest", false))
{
printf("\n=== ZeroCoin tests start ===\n");
Test_RunAllTests();
printf("=== ZeroCoin tests end ===\n\n");
}
// ********************************************************* Step 8: load wallet
uiInterface.InitMessage(_("Loading wallet..."));
printf("Loading wallet...\n");
nStart = GetTimeMillis();
bool fFirstRun = true;
pwalletMain = new CWallet(strWalletFileName);
DBErrors nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun);
if (nLoadWalletRet != DB_LOAD_OK)
{
if (nLoadWalletRet == DB_CORRUPT)
strErrors << _("Error loading wallet.dat: Wallet corrupted") << "\n";
else if (nLoadWalletRet == DB_NONCRITICAL_ERROR)
{
string msg(_("Warning: error reading wallet.dat! All keys read correctly, but transaction data"
" or address book entries might be missing or incorrect."));
uiInterface.ThreadSafeMessageBox(msg, _("TulipCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
}
else if (nLoadWalletRet == DB_TOO_NEW)
strErrors << _("Error loading wallet.dat: Wallet requires newer version of TulipCoin") << "\n";
else if (nLoadWalletRet == DB_NEED_REWRITE)
{
strErrors << _("Wallet needed to be rewritten: restart TulipCoin to complete") << "\n";
printf("%s", strErrors.str().c_str());
return InitError(strErrors.str());
}
else
strErrors << _("Error loading wallet.dat") << "\n";
}
if (GetBoolArg("-upgradewallet", fFirstRun))
{
int nMaxVersion = GetArg("-upgradewallet", 0);
if (nMaxVersion == 0) // the -upgradewallet without argument case
{
printf("Performing wallet upgrade to %i\n", FEATURE_LATEST);
nMaxVersion = CLIENT_VERSION;
pwalletMain->SetMinVersion(FEATURE_LATEST); // permanently upgrade the wallet immediately
}
else
printf("Allowing wallet upgrade up to %i\n", nMaxVersion);
if (nMaxVersion < pwalletMain->GetVersion())
strErrors << _("Cannot downgrade wallet") << "\n";
pwalletMain->SetMaxVersion(nMaxVersion);
}
if (fFirstRun)
{
// Create new keyUser and set as default key
RandAddSeedPerfmon();
CPubKey newDefaultKey;
if (pwalletMain->GetKeyFromPool(newDefaultKey, false)) {
pwalletMain->SetDefaultKey(newDefaultKey);
if (!pwalletMain->SetAddressBookName(pwalletMain->vchDefaultKey.GetID(), ""))
strErrors << _("Cannot write default address") << "\n";
}
}
printf("%s", strErrors.str().c_str());
printf(" wallet %15"PRId64"ms\n", GetTimeMillis() - nStart);
RegisterWallet(pwalletMain);
CBlockIndex *pindexRescan = pindexBest;
if (GetBoolArg("-rescan"))
pindexRescan = pindexGenesisBlock;
else
{
CWalletDB walletdb(strWalletFileName);
CBlockLocator locator;
if (walletdb.ReadBestBlock(locator))
pindexRescan = locator.GetBlockIndex();
}
if (pindexBest != pindexRescan && pindexBest && pindexRescan && pindexBest->nHeight > pindexRescan->nHeight)
{
uiInterface.InitMessage(_("Rescanning..."));
printf("Rescanning last %i blocks (from block %i)...\n", pindexBest->nHeight - pindexRescan->nHeight, pindexRescan->nHeight);
nStart = GetTimeMillis();
pwalletMain->ScanForWalletTransactions(pindexRescan, true);
printf(" rescan %15"PRId64"ms\n", GetTimeMillis() - nStart);
}
// ********************************************************* Step 9: import blocks
if (mapArgs.count("-loadblock"))
{
uiInterface.InitMessage(_("Importing blockchain data file."));
BOOST_FOREACH(string strFile, mapMultiArgs["-loadblock"])
{
FILE *file = fopen(strFile.c_str(), "rb");
if (file)
LoadExternalBlockFile(file);
}
exit(0);
}
filesystem::path pathBootstrap = GetDataDir() / "bootstrap.dat";
if (filesystem::exists(pathBootstrap)) {
uiInterface.InitMessage(_("Importing bootstrap blockchain data file."));
FILE *file = fopen(pathBootstrap.string().c_str(), "rb");
if (file) {
filesystem::path pathBootstrapOld = GetDataDir() / "bootstrap.dat.old";
LoadExternalBlockFile(file);
RenameOver(pathBootstrap, pathBootstrapOld);
}
}
// ********************************************************* Step 10: load peers
uiInterface.InitMessage(_("Loading addresses..."));
printf("Loading addresses...\n");
nStart = GetTimeMillis();
{
CAddrDB adb;
if (!adb.Read(addrman))
printf("Invalid or missing peers.dat; recreating\n");
}
printf("Loaded %i addresses from peers.dat %"PRId64"ms\n",
addrman.size(), GetTimeMillis() - nStart);
// ********************************************************* Step 11: start node
if (!CheckDiskSpace())
return false;
RandAddSeedPerfmon();
//// debug print
printf("mapBlockIndex.size() = %"PRIszu"\n", mapBlockIndex.size());
printf("nBestHeight = %d\n", nBestHeight);
printf("setKeyPool.size() = %"PRIszu"\n", pwalletMain->setKeyPool.size());
printf("mapWallet.size() = %"PRIszu"\n", pwalletMain->mapWallet.size());
printf("mapAddressBook.size() = %"PRIszu"\n", pwalletMain->mapAddressBook.size());
if (!NewThread(StartNode, NULL))
InitError(_("Error: could not start node"));
if (fServer)
NewThread(ThreadRPCServer, NULL);
// ********************************************************* Step 12: finished
uiInterface.InitMessage(_("Done loading"));
printf("Done loading\n");
if (!strErrors.str().empty())
return InitError(strErrors.str());
// Add wallet transactions that aren't already in a block to mapTransactions
pwalletMain->ReacceptWalletTransactions();
#if !defined(QT_GUI)
// Loop until process is exit()ed from shutdown() function,
// called from ThreadRPCServer thread when a "stop" command is received.
while (1)
MilliSleep(5000);
#endif
return true;
}
|
[
"cricketcoin@yahoo.com"
] |
cricketcoin@yahoo.com
|
224b4ac50f7c0e18fa943b38d77ca014683270c3
|
abf8815f54833ecad61ca54326c36b3e1b333a90
|
/CF_ASSIGNMENT4.cpp
|
65148cbd5cc0c108316a61ae23e7932e71dc922d
|
[] |
no_license
|
cflores124568/CS2B
|
5711e15a05f507ccb37a3b8157bfc491955ba094
|
5dacb8f180a157e08ab4d2fc66fe6c7eb925d387
|
refs/heads/main
| 2023-06-05T03:13:19.351025
| 2021-06-19T01:19:36
| 2021-06-19T01:19:36
| 378,297,017
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 17,239
|
cpp
|
//===--------------------------------------------------------------------------------------------------===//
// FileName: CF_ASSIGNMENT4.cpp
// Description: This program is an account managment system for phone numbers and their messages.
// Users can select up to 5 choices.
//
//Date Author Comment
//03.02.20 Chris Flores Implementing Class Skeletons
//03.3.20 Chris Flores Invalid operands to binary expression ('const char [9]' and 'const std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::value_type *' (aka 'const char *'))
//03.07.21 Finished Media and Message<T>
//03.08.21 Stuck on Exception class error: Returning adress of local temporary object
//03.12.21 Still stuck on Exception class
//03.15.21 Member reference base type 'Message<Media> *const' is not a structure or union
//03.19.21 Finished PurgeMessages and DeleteAccount
//03.20.21 Program ran for first time
// Trying to resolve issue where ListAccounts() is showing each message's MB and total charge
// in a separate line as opposed to showing total MB and Dollars in a single line
//03.21.21 Trying to format output by decimal but unable to add dollar sign without sacrificing format
//===--------------------------------------------------------------------------------------------------===//
#include <iostream>
#include <map>
#include <vector>
#include <iomanip>
#include <exception>
using namespace std;
class AccountNotFoundException: public exception{
public:
friend ostream & operator<<(ostream & outputstream, const AccountNotFoundException & other_account);
static const string DEFAULT_PHONE_NUMBER;
AccountNotFoundException();
AccountNotFoundException(const string & phone_number);
~AccountNotFoundException() throw();
virtual const char * what() const noexcept;
private:
string phone_number;
};
class Media{
public:
static const double DEFAULT_SIZE;
static const double DEFAULT_CHARGE_PER_MB;
static const double DEFAULT_MINIMUM_CHARGE;
static const double DEFAULT_SIZE_THRESHOLD;
Media();
Media(double size);
~Media();
void set_size(double size);
double get_size() const;
double GetCharge();
private:
double size;
};
template <class T>
class Message{
public:
static const string DEFAULT_RECIEVER_NUMBER;
Message();
Message(string to, T m_data);
~Message();
void set_to(string to);
string get_to() const;
void set_data(T m_data);
T get_data() const;
private:
string to;
T m_data;
};
class SmartCarrier{
public:
static const string DEFAULT_CARRIER;
static const bool IS_INIT;
SmartCarrier();
SmartCarrier(string carrier_name, bool isInit);
~SmartCarrier();
void Init();
void StartService();
private:
string carrier_name;
bool isInit;
map<string, vector<Message<Media>*>> account_map;
void Menu();
int GetChoice();
void ListAccounts() const;
void InsertMessage();
void PurgeLargeMessages();
void DisconnectAccount();
void Quit();
};
int main(){
SmartCarrier * p_master_store = new SmartCarrier("CS2C Wireless", false);
p_master_store->Init();
p_master_store->StartService();
delete p_master_store;
}
//********************************************************
// AccountNotFoundException Definitions *
//********************************************************
ostream & operator<<(ostream & outputstream, const AccountNotFoundException & other_account){ return outputstream << other_account.phone_number;}
const string AccountNotFoundException::DEFAULT_PHONE_NUMBER = "1-760-989-1474";
//Constructors
AccountNotFoundException::AccountNotFoundException() : exception(), phone_number(AccountNotFoundException::DEFAULT_PHONE_NUMBER){}
AccountNotFoundException::AccountNotFoundException(const string & phone_number) : exception(), phone_number("Account " + phone_number + " not found!"){}
//Destructor
AccountNotFoundException::~AccountNotFoundException() throw(){}
const char * AccountNotFoundException::what() const noexcept{
return phone_number.c_str();
}
//********************************************************
// Media Definitions *
//********************************************************
//Static Data
const double Media::DEFAULT_SIZE = 0.0;
const double Media::DEFAULT_CHARGE_PER_MB = 0.05;
const double Media::DEFAULT_MINIMUM_CHARGE = 1.00;
const double Media::DEFAULT_SIZE_THRESHOLD = 100.0;
//Constructor
Media::Media() : size(Media::DEFAULT_SIZE_THRESHOLD){}
Media::Media(double size) : size(size){}
Media::~Media(){}
void Media::set_size(double size){this->size = size;}
double Media::get_size() const {return size;}
double Media::GetCharge(){
double total_charge = size * Media::DEFAULT_CHARGE_PER_MB;
return (total_charge > Media::DEFAULT_MINIMUM_CHARGE ? total_charge : Media::DEFAULT_MINIMUM_CHARGE);
}
//********************************************************
// Message Definitions *
//********************************************************
//Static Data
template <class T>
const string Message<T>::DEFAULT_RECIEVER_NUMBER = "000-000-0000";
template <class T>
Message<T>::Message() : to(Message::DEFAULT_RECIEVER_NUMBER){}
template <class T>
Message<T>::Message(string to, T m_data) : to(to), m_data(m_data){}
template <class T>
Message<T>::~Message(){}
template <class T>
void Message<T>::set_to(string to){this->to = to;}
template <class T>
string Message<T>::get_to() const{return to;}
template <class T>
void Message<T>::set_data(T m_data){this->m_data = m_data;}
template <class T>
T Message<T>::get_data() const{return m_data;}
//********************************************************
// SmartCarrier Definitions *
//********************************************************
//Static Data
const string SmartCarrier::DEFAULT_CARRIER = "CS2B WIRELESS";
const bool SmartCarrier::IS_INIT = false;
SmartCarrier::SmartCarrier() : carrier_name(SmartCarrier::DEFAULT_CARRIER), isInit(SmartCarrier::IS_INIT){}
SmartCarrier::SmartCarrier(string carrier_name, bool isInit) : carrier_name(carrier_name), isInit(isInit){}
SmartCarrier::~SmartCarrier(){
for(map<string, vector<Message<Media>*>>::iterator account_iter = account_map.begin(); account_iter != account_map.end(); ++account_iter){
for(vector<Message<Media>*>::iterator message_iter = account_iter->second.begin(); message_iter != account_iter->second.begin(); ++message_iter){
delete *message_iter;
}
}
}
void SmartCarrier::Init(){
account_map["1-626-301-7924"].push_back(new Message<Media>("1-920-581-3908", Media(110.5)));
account_map["1-361-285-9964"].push_back(new Message<Media>("1-760-866-1069", Media(106.9)));
account_map["1-920-149-3805"].push_back(new Message<Media>("1-944-629-2778", Media(32.6)));
account_map["1-205-941-3912"].push_back(new Message<Media>("1-203-982-1823", Media(69.4)));
account_map["1-760-291-8371"].push_back(new Message<Media>("1-626-394-8026", Media(35.0)));
account_map["1-818-449-8531"].push_back(new Message<Media>("1-418-603-9218", Media(110.0)));
account_map["1-989-628-5103"].push_back(new Message<Media>("1-919-472-8712", Media(65.2)));
account_map["1-626-301-7924"].push_back(new Message<Media>("1-760-346-4377", Media(34.5)));
account_map["1-361-285-9964"].push_back(new Message<Media>("1-562-759-6632", Media(77.4)));
account_map["1-406-238-4299"].push_back(new Message<Media>("1-920-874-6294", Media(20.75)));
account_map["1-760-291-8371"].push_back(new Message<Media>("1-862-725-9524", Media(45.2)));
account_map["1-920-149-3805"].push_back(new Message<Media>("1-760-628-2731", Media(15.3)));
account_map["1-361-285-9964"].push_back(new Message<Media>("1-787-628-8752", Media(26.0)));
account_map["1-989-628-5103"].push_back(new Message<Media>("1-212-949-6448", Media(22.5)));
account_map["1-626-301-7924"].push_back(new Message<Media>("1-418-866-0352", Media(48.0)));
account_map["1-205-941-3912"].push_back(new Message<Media>("1-920-449-2383", Media(73.8)));
account_map["1-760-291-8371"].push_back(new Message<Media>("1-898-441-0452", Media(17.0)));
account_map["1-361-285-9964"].push_back(new Message<Media>("1-760-989-1474", Media(85.4)));
account_map["1-920-149-3805"].push_back(new Message<Media>("1-441-537-8633", Media(42.8)));
account_map["1-205-941-3912"].push_back(new Message<Media>("1-324-989-1876", Media(24.8)));
account_map["1-989-628-5103"].push_back(new Message<Media>("1-792-184-7293", Media(101.5)));
account_map["1-406-238-4299"].push_back(new Message<Media>("1-989-819-0174", Media(34.7)));
account_map["1-205-941-3912"].push_back(new Message<Media>("1-341-932-1461", Media(45.0)));
account_map["1-920-149-3805"].push_back(new Message<Media>("1-462-531-9305", Media(109.6)));
account_map["1-760-291-8371"].push_back(new Message<Media>("1-911-711-3198", Media(18.6)));
account_map["1-626-301-7924"].push_back(new Message<Media>("1-800-407-1369", Media(135.0)));
account_map["1-361-285-9964"].push_back(new Message<Media>("1-442-696-8275", Media(50.9)));
account_map["1-920-149-3805"].push_back(new Message<Media>("1-562-072-8490", Media(62.5)));
account_map["1-205-941-3912"].push_back(new Message<Media>("1-760-947-1693", Media(113.1)));
account_map["1-626-301-7924"].push_back(new Message<Media>("1-989-175-5329", Media(86.4)));
account_map["1-760-291-8371"].push_back(new Message<Media>("1-862-725-9524", Media(27.9)));
account_map["1-361-285-9964"].push_back(new Message<Media>("1-219-432-4823", Media(15.0)));
account_map["1-562-922-0117"].push_back(new Message<Media>("1-626-341-3814", Media(350.8)));
account_map["1-920-149-3805"].push_back(new Message<Media>("1-441-537-8633", Media(102.8)));
account_map["1-760-291-8371"].push_back(new Message<Media>("1-120-439-7319", Media(133.8)));
account_map["1-989-628-5103"].push_back(new Message<Media>("1-818-214-7821", Media(43.9)));
account_map["1-626-301-7924"].push_back(new Message<Media>("1-218-672-7637", Media(97.5)));
account_map["1-361-285-9964"].push_back(new Message<Media>("1-940-106-8304", Media(49.4)));
account_map["1-989-628-5103"].push_back(new Message<Media>("1-442-299-3719", Media(12.7)));
account_map["1-205-941-3912"].push_back(new Message<Media>("1-794-925-5350", Media(100.0)));
account_map["1-920-149-3805"].push_back(new Message<Media>("1-760-472-2778", Media(100.3)));
account_map["1-205-941-3912"].push_back(new Message<Media>("1-536-816-2294", Media(150.6)));
account_map["1-989-628-5103"].push_back(new Message<Media>("1-293-732-6448", Media(32.3)));
account_map["1-442-823-2891"].push_back(new Message<Media>("1-626-625-3983", Media(49.9)));
account_map["1-626-301-7924"].push_back(new Message<Media>("1-319-294-7194", Media(189.4)));
account_map["1-361-285-9964"].push_back(new Message<Media>("1-487-327-9447", Media(63.6)));
account_map["1-800-324-4500"];
account_map["1-787-462-1932"].push_back(new Message<Media>("1-421-234-8273", Media(38.5)));
account_map["1-626-301-7924"].push_back(new Message<Media>("1-923-824-9127", Media(44.5)));
isInit = true;
}
void SmartCarrier::StartService(){
if(!isInit){
cout << "System Initialization Failure! Aborting program...\n";
Quit();
}
do{
int choice = 0;
try{
Menu();
choice = GetChoice();
switch(choice)
{
case 1:
ListAccounts();
break;
case 2:
InsertMessage();
break;
case 3:
PurgeLargeMessages();
break;
case 4:
DisconnectAccount();
break;
case 5:
Quit();
break;
}
}
catch(AccountNotFoundException & accexcp){
cout << "\n\t\t" << accexcp.what() << "\n";
}
catch(...){
cout << "\n\t\tPlease Enter a valid choice!\n";
cin.clear();
}
}while(isInit);
}
void SmartCarrier::Menu(){
cout << "\n\t\t========================================\n";
cout << setw(28) << "" << "<" << carrier_name << ">\n";
cout << setw(29) << "" << "Account Admin";
cout << "\n\t\t========================================\n";
cout << "\n\t\t1. View All Accounts";
cout << "\n\t\t2. Add Message to an Account";
cout << "\n\t\t3. Delete Message(s) from an Account";
cout << "\n\t\t4. Disconnect an Account";
cout << "\n\t\t5. Quit\n";
}
int SmartCarrier::GetChoice(){
int choice = 0;
cout << "\n\t\tEnter a choice from 1-5: ";
cin >> choice;
if(choice < 1 || choice > 5){
throw "Try again!";
}
else{
return choice;
}
}
void SmartCarrier::ListAccounts() const{
double total_MB = 0.0;
double total_cost = 0.0;
cout << fixed << setprecision(2);
cout << "\nAccount:\t\tTotal messages:\t\tTotal messages' size (MB):\tCharge:(dollar)\n";
for(map<string, vector<Message<Media>*>>::const_iterator account_iter = account_map.begin(); account_iter != account_map.end(); ++account_iter){
cout << account_iter->first << "\t\t\t" << account_iter->second.size() << "\t";
for(vector<Message<Media>*>::const_iterator message_iter = account_iter->second.begin(); message_iter != account_iter->second.end(); ++message_iter){
total_MB += (*message_iter)->get_data().get_size();
total_cost += (*message_iter)->get_data().GetCharge();
}
cout << setw(20) << right << total_MB << setw(28) << right << total_cost << "\n";
total_MB = 0.0;
total_cost = 0.0;
}
}
void SmartCarrier::InsertMessage(){
string phone_number;
string reciever_number;
double mb_size = 0.0;
cout << "\n\t\tEnter the account phone number\n\t\tfor which you want to insert a message: ";
cin>>phone_number;
map<string, vector<Message<Media>*>>::iterator insert_iter = account_map.find(phone_number);
if(insert_iter != account_map.end()){
cout << "\n\t\tNow enter the amount of MB for " << phone_number << "'s message : ";
cin >> mb_size;
cout << "\n\t\tNow enter the message recipient's phone number: ";
cin >> reciever_number;
account_map[phone_number].push_back(new Message<Media>(reciever_number, Media(mb_size)));
cout << "\n\t\tYour message of " << mb_size << " MB, to " << reciever_number << ", was succesfully inserted\n\t\tinto account[" << phone_number << "]\n";
}
else{
throw AccountNotFoundException(phone_number);
}
}
void SmartCarrier::PurgeLargeMessages(){
string account_phone_number;
double total_purged_MB = 0.0;
cout << "\n\t\tEnter the phone number for the account who needs large messages purged: ";
cin >> account_phone_number;
map<string, vector<Message<Media>*>>::iterator account_iter = account_map.find(account_phone_number);
if(account_iter != account_map.end()){
for(vector<Message<Media>*>::iterator message_iter = account_iter->second.begin(); message_iter != account_iter->second.end();){
if(((*message_iter)->get_data().get_size()) >= Media::DEFAULT_SIZE_THRESHOLD){
total_purged_MB += (*message_iter)->get_data().get_size();
delete *message_iter;
message_iter = account_iter->second.erase(message_iter);
}
else{
++message_iter;
}
}
cout << "\n\t\tTotal MB deleted for account[" << account_phone_number << "] : " << total_purged_MB << " MB\n";
}
else{
throw AccountNotFoundException(account_phone_number);
}
}
void SmartCarrier::DisconnectAccount(){
string disconnect_phone_number;
cout << "\n\t\tEnter the phone number of the account to be disconnected: ";
cin >> disconnect_phone_number;
map<string, vector<Message<Media>*>>::iterator disconnect_account_iter = account_map.find(disconnect_phone_number);
if(disconnect_account_iter != account_map.end()){
for(vector<Message<Media>*>::iterator disconnect_message_iter = disconnect_account_iter->second.begin(); disconnect_message_iter != disconnect_account_iter->second.end(); ++disconnect_message_iter){
delete *disconnect_message_iter;
}
disconnect_account_iter->second.clear();
account_map.erase(disconnect_account_iter);
cout << "\n\t\tAccount[" << disconnect_phone_number << "] successfully deleted.\n";
}
else{
throw AccountNotFoundException(disconnect_phone_number);
}
}
void SmartCarrier::Quit(){
cout << "\n\t\tGoodbye and thank you for going wireless with " << carrier_name << "!\n";
isInit = false;
}
|
[
"noreply@github.com"
] |
cflores124568.noreply@github.com
|
2f1f4dcc8e4f127ef9d9273a65b45694fb8961d8
|
d147f9c98bae97ed79cef2597977f61c83724c39
|
/STLWorkspace/Exam/Exam4/ProjectBD/Source/ProjectBD/Zombie/BTTask_CheckBattle.h
|
f92b9e236c086c6e0bf10b6590515625aa725b3d
|
[] |
no_license
|
daaie/SkillTreeLab
|
28ec4bea1057d4c44a5f15bcfb1e0178358f85e1
|
43482b9a4732836ad7b0f2df5c29c6b1debfa913
|
refs/heads/master
| 2020-03-17T05:06:08.824446
| 2018-07-17T04:49:47
| 2018-07-17T04:49:47
| 133,302,446
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 452
|
h
|
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "BehaviorTree/Tasks/BTTask_BlackboardBase.h"
#include "BTTask_CheckBattle.generated.h"
/**
*
*/
UCLASS()
class PROJECTBD_API UBTTask_CheckBattle : public UBTTask_BlackboardBase
{
GENERATED_BODY()
public:
virtual EBTNodeResult::Type ExecuteTask(UBehaviorTreeComponent& OwnerComp, uint8* NodeMemory) override;
};
|
[
"pda4423@gmail.com"
] |
pda4423@gmail.com
|
5ad8331b34cfa870bfe6dcc9539ecddf396f723f
|
fbd5111e817a31fde1cad1a6dd644f08f531e358
|
/C++ 4주차/과제 해설/main.cpp
|
ab23b0ac8f1b7dd3c50c598fd01524ca8d02de9b
|
[] |
no_license
|
Hyeongho/Academic_Materials
|
9b82694d0a82236095def41a5077b1ef7f07c222
|
59ea3557b3403beb9b3a51387ce7c856b767aaa3
|
refs/heads/main
| 2023-05-09T14:29:12.664792
| 2021-05-31T19:29:16
| 2021-05-31T19:29:16
| 359,943,594
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,252
|
cpp
|
#include "Shape.h"
#include <iostream>
#include <string>
using namespace std;
void Calculator(float _a, float _b, char _c, float* pta);
void StringSum(string _s, int* _result);
bool Palindrome(string _s);
int main()
{
Shape s(2, 2, 3);
cout << s.GetRectangle() << endl;
cout << s.GetCircle() << endl;
float a, b;
char c;
float result;
cin >> a >> c >> b;
Calculator(a, b, c, &result);
cout << result << endl;
string str1 = "1234";
int strsum = 0;
StringSum(str1, &strsum);
cout << strsum << endl;
string str2;
cin >> str2;
cout << boolalpha;
cout << Palindrome(str2) << endl;
}
void Calculator(float _a, float _b, char _c, float* _result)
{
switch (_c)
{
case '+':
*_result = _a + _b;
break;
case '-':
*_result = _a - _b;
break;
case '*':
*_result = _a * _b;
break;
case '/':
*_result = _a / _b;
break;
default:
break;
}
}
void StringSum(string _s, int* _result)
{
int s = stoi(_s);
/*for (int i = 0; i < _s.size(); i++)
{
*_result += _s[i] - '0';
}*/
while (s != 0)
{
*_result += s % 10;
s /= 10;
}
}
bool Palindrome(string _s)
{
int len = _s.size();
for (int i = 0; i < len / 2; i++)
{
if (_s[i] != _s[len - i - 1])
{
return false;
}
}
return true;
}
|
[
"rlaguddgh@nate.com"
] |
rlaguddgh@nate.com
|
5864c35f48010fdd964975c01c35acc70a37eafb
|
636deb9dfd8fde646128983c2fac70719485d5ce
|
/source/game/boss/0203_cLeviathanBoss.cpp
|
6d281d4ed2545f9553bb19ae7359c905b83c9d38
|
[
"Zlib",
"CC-BY-4.0"
] |
permissive
|
MausGames/project-one
|
e77fb5d7dce9ece09fe001fa733e869de2c2bd86
|
31a0979e01fde4943da3a81572bddd9569644d95
|
refs/heads/main
| 2023-05-25T17:04:26.507312
| 2023-05-18T08:02:11
| 2023-05-18T08:02:11
| 29,095,906
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 23,610
|
cpp
|
///////////////////////////////////////////////////////
//*-------------------------------------------------*//
//| Part of Project One (https://www.maus-games.at) |//
//*-------------------------------------------------*//
//| Copyright (c) 2010 Martin Mauersics |//
//| Released under the zlib License |//
//*-------------------------------------------------*//
///////////////////////////////////////////////////////
#include "main.h"
// ****************************************************************
// counter identifier
#define JUMP_SIDE (0u)
#define ROTATION_STATUS (1u)
#define FLIP_SIDE (2u)
#define CYCLE_COUNT (3u)
#define OLD_DAMAGE (4u)
// ****************************************************************
// vector identifier
#define FALL_BEHIND (0u)
#define CONTAINER_DATA (1u)
#define ROTATION_ANGLE (2u)
#define OVERDRIVE_HIT (3u) // # uses 3u - 7u
#define SCATTER_FORCE (3u) // # uses 3u - 7u
// ****************************************************************
// constructor
cLeviathanBoss::cLeviathanBoss()noexcept
: m_Ray (LEVIATHAN_RAYS)
, m_RayWave (LEVIATHAN_RAYS)
, m_afRayTime {}
, m_iDecalState (0u)
, m_fAnimation (0.0f)
, m_fMovement (-3.5f)
{
// load models
this->DefineModelHigh(Core::Manager::Object->GetLowQuad());
this->DefineModelLow (Core::Manager::Object->GetLowQuad());
// set object properties
this->SetSize(coreVector3(0.0f,0.0f,0.0f));
// configure the boss
this->Configure(3000, COLOR_SHIP_BLUE);
//
m_Head.DefineModelHigh("ship_boss_leviathan_head_high.md3");
m_Head.DefineModelLow ("ship_boss_leviathan_head_low.md3");
m_Head.SetSize (coreVector3(1.5f,1.5f,1.5f));
m_Head.Configure (500, COLOR_SHIP_BLUE);
m_Head.AddStatus (ENEMY_STATUS_IMMORTAL);
//
for(coreUintW i = 0u; i < LEVIATHAN_PARTS_BODIES; ++i)
{
m_aBody[i].DefineModelHigh("ship_boss_leviathan_body_high.md3");
m_aBody[i].DefineModelLow ("ship_boss_leviathan_body_low.md3");
m_aBody[i].SetSize (coreVector3(1.7f,1.7f,1.7f));
m_aBody[i].Configure (500, COLOR_SHIP_BLUE);
m_aBody[i].AddStatus (ENEMY_STATUS_IMMORTAL);
}
//
m_Tail.DefineModelHigh("ship_boss_leviathan_tail_high.md3");
m_Tail.DefineModelLow ("ship_boss_leviathan_tail_low.md3");
m_Tail.SetSize (coreVector3(1.7f,1.7f,1.7f));
m_Tail.Configure (500, COLOR_SHIP_BLUE);
m_Tail.AddStatus (ENEMY_STATUS_IMMORTAL);
//
m_Ray .DefineProgram("effect_energy_invert_inst_program");
m_RayWave.DefineProgram("effect_energy_direct_inst_program");
{
for(coreUintW i = 0u; i < LEVIATHAN_RAYS_RAWS; ++i)
{
// determine object type
const coreUintW iType = i % 2u;
// load object resources
coreObject3D* pRay = &m_aRayRaw[i];
pRay->DefineModel ("object_tube_open.md3");
pRay->DefineTexture(0u, "effect_energy.png");
pRay->DefineProgram(iType ? "effect_energy_direct_program" : "effect_energy_invert_program");
// set object properties
pRay->SetTexSize(iType ? LEVIATHAN_RAYWAVE_TEXSIZE : LEVIATHAN_RAY_TEXSIZE);
pRay->SetEnabled(CORE_OBJECT_ENABLE_NOTHING);
// add object to the list
if(iType) m_RayWave.BindObject(pRay);
else m_Ray .BindObject(pRay);
}
}
}
// ****************************************************************
//
void cLeviathanBoss::__ResurrectOwn()
{
cNevoMission* pMission = d_cast<cNevoMission*>(g_pGame->GetCurMission());
//
pMission->EnableContainer (coreVector2(0.0f,0.0f));
pMission->SetContainerClamp (false);
pMission->SetContainerOverdraw(false);
//
for(coreUintW i = 0u; i < LEVIATHAN_PARTS; ++i)
{
cEnemy* pPart = this->__GetPart(i);
pPart->Resurrect();
pPart->SetEnabled(CORE_OBJECT_ENABLE_NOTHING); // # after resurrection
}
//
g_pGlow->BindList(&m_Ray);
g_pGlow->BindList(&m_RayWave);
}
// ****************************************************************
//
void cLeviathanBoss::__KillOwn(const coreBool bAnimated)
{
//
for(coreUintW i = 0u; i < LEVIATHAN_RAYS; ++i)
this->__DisableRay(i, bAnimated);
//
for(coreUintW i = 0u; i < LEVIATHAN_PARTS; ++i)
this->__GetPart(i)->Kill(bAnimated);
//
g_pGlow->UnbindList(&m_Ray);
g_pGlow->UnbindList(&m_RayWave);
//
this->_EndBoss(bAnimated);
}
// ****************************************************************
//
void cLeviathanBoss::__RenderOwnOver()
{
if(m_Ray.GetCurEnabled())
{
DEPTH_PUSH
//
m_Ray.Render();
g_pOutline->GetStyle(OUTLINE_STYLE_FULL)->ApplyList(&m_Ray);
glDisable(GL_DEPTH_TEST);
{
//
m_RayWave.Render();
}
glEnable(GL_DEPTH_TEST);
}
}
// ****************************************************************
//
void cLeviathanBoss::__MoveOwn()
{
cNevoMission* pMission = d_cast<cNevoMission*>(g_pGame->GetCurMission());
coreObject3D* pContainer = pMission->GetContainer();
//
m_fAnimation.UpdateMod(-1.0f, 10.0f);
m_fMovement .UpdateMod(0.5f*PI, 4.0f*PI);
//
coreVector2 vNewOri = coreVector2(0.0f,-1.0f);
coreBool bOverdrive = false;
// ################################################################
// ################################################################
//
if(m_aiCounter[ROTATION_STATUS])
{
//
const coreVector2 vBaseDir = coreVector2::Direction(m_avVector[ROTATION_ANGLE].x).Rotated90();
const coreVector3 vRotaDir = coreVector3(vBaseDir.x, -vNewOri.y*vBaseDir.y, vNewOri.x*vBaseDir.y);
const coreVector4 vQuat = coreMatrix4::Orientation(vRotaDir, coreVector3(0.0f, vNewOri)).m123().ToQuat();
for(coreUintW i = 0u; i < LEVIATHAN_PARTS; ++i)
{
cEnemy* pPart = this->__GetPart(i);
//
const coreVector3 vNewDir = vQuat.QuatApply(coreVector3(coreVector2::Direction(I_TO_F(i) * 0.4f*PI), 0.0f));
const coreVector3 vNewPos = vNewDir * LEVIATHAN_RADIUS_INNER;
//
pPart->SetPosition (m_aiCounter[FLIP_SIDE] ? vNewPos.InvertedX() : vNewPos);
pPart->SetDirection(m_aiCounter[FLIP_SIDE] ? vNewDir.InvertedX() : vNewDir);
}
//
m_avVector[ROTATION_ANGLE].x += m_avVector[ROTATION_ANGLE].y * TIME;
}
//
for(coreUintW i = 0u; i < LEVIATHAN_RAYS; ++i)
{
coreObject3D* pRay = (*m_Ray .List())[i];
coreObject3D* pWave = (*m_RayWave.List())[i];
if(!pRay->IsEnabled(CORE_OBJECT_ENABLE_ALL)) continue;
//
const coreFloat fOldTime = m_afRayTime[i];
m_afRayTime[i].Update(0.8f);
const coreFloat fNewTime = m_afRayTime[i];
//
const cEnemy* pPart = this->__GetPart(i);
const coreVector3 vPos = pPart->GetPosition();
const coreVector3 vDir = pPart->GetDirection();
//
const coreVector3 vColor = LERP(coreMath::IsNear(vDir.z, 0.0f, LEVIATHAN_RAY_HEIGHT) ? (COLOR_ENERGY_YELLOW * 0.8f) : (COLOR_ENERGY_BLUE * (0.8f - 0.4f * ABS(vDir.z))), pRay->GetColor3(), FrictionFactor(18.0f));
const coreFloat fAlpha = (fNewTime < 1.0f) ? (0.6f * (1.0f - fNewTime)) : 1.0f;
if(!bOverdrive)
{
//
const coreFloat fLength = (fNewTime < 1.0f) ? 1.0f : (MIN((fNewTime - 1.0f) * 5.0f, 1.0f));
const coreFloat fWidth = 2.0f - fLength;
const coreVector3 vSize = coreVector3(fWidth, fLength, fWidth);
//
pRay ->SetSize(LEVIATHAN_RAY_SIZE * vSize);
pWave->SetSize(LEVIATHAN_RAYWAVE_SIZE * vSize);
}
//
pRay->SetPosition (vPos + vDir * (pRay->GetSize().y + LEVIATHAN_RAY_OFFSET(i)));
pRay->SetDirection(vDir);
pRay->SetColor3 (vColor);
pRay->SetAlpha (fAlpha);
pRay->SetTexSize (coreVector2(LEVIATHAN_RAY_TEXSIZE.x, LEVIATHAN_RAY_TEXSIZE.y * (pRay->GetSize().y * (1.0f/LEVIATHAN_RAY_SIZE.y))));
pRay->SetTexOffset(coreVector2(0.4f,0.3f) * m_fAnimation);
//
pWave->SetPosition (vPos + vDir * (pWave->GetSize().y + LEVIATHAN_RAY_OFFSET(i)));
pWave->SetDirection(-vDir);
pWave->SetColor3 (vColor);
pWave->SetAlpha (fAlpha * 0.85f);
pWave->SetTexOffset(coreVector2(-0.3f,-0.6f) * m_fAnimation);
if((fOldTime < 1.0f) && (fNewTime >= 1.0f))
{
//
pRay->ChangeType(TYPE_LEVIATHAN_RAY);
//
g_pSpecialEffects->MacroEruptionColorBig(vPos + vDir * LEVIATHAN_RAY_OFFSET(i), vDir.xy(), COLOR_ENERGY_YELLOW);
}
}
//
m_Ray .MoveNormal();
m_RayWave.MoveNormal();
if(m_Ray.GetCurEnabled())
{
PHASE_CONTROL_TICKER(3u, 0u, 30.0f, LERP_LINEAR)
{
for(coreUintW i = 0u; i < LEVIATHAN_RAYS; ++i)
{
const coreObject3D* pRay = (*m_Ray.List())[i];
if(!pRay->IsEnabled(CORE_OBJECT_ENABLE_ALL)) continue;
if(!pRay->GetType()) continue;
//
const coreVector3 vPos = pRay->GetPosition();
const coreVector3 vDir = pRay->GetDirection();
const coreFloat fLen = pRay->GetSize().y;
//
const coreVector2 vTestPos = g_pForeground->Project2D(vPos + vDir * fLen);
//
if((ABS(vTestPos.x) > 0.5f) ||
(ABS(vTestPos.y) > 0.5f))
{
const coreVector2 vNorm = vDir.xy().Normalized();
const coreVector2 vEffectPos = vNorm * RCP(vNorm.Processed(ABS).Max()) * (FOREGROUND_AREA * 1.1f);
//
g_pSpecialEffects->CreateSplashFire (coreVector3(vEffectPos, 0.0f), 5.0f, 3u, COLOR_FIRE_ORANGE);
g_pSpecialEffects->CreateSplashColor(coreVector3(vEffectPos, 0.0f), 25.0f, 2u, COLOR_FIRE_ORANGE);
}
}
});
//
cPlayer::TestCollision(PLAYER_TEST_NORMAL, TYPE_LEVIATHAN_RAY, [](cPlayer* OUTPUT pPlayer, coreObject3D* OUTPUT pRay, const coreVector3 vIntersection, const coreBool bFirstHit)
{
if(!bFirstHit) return;
//
if(!coreMath::IsNear(pRay->GetDirection().z, 0.0f, LEVIATHAN_RAY_HEIGHT)) return;
//
pPlayer->TakeDamage(5, ELEMENT_YELLOW, vIntersection.xy());
//
g_pSpecialEffects->MacroExplosionColorSmall(vIntersection, COLOR_ENERGY_YELLOW);
});
}
//
for(coreUintW i = 0u; i < LEVIATHAN_PARTS; ++i)
{
cEnemy* pPart = this->__GetPart(i);
//
const coreVector3 vPos = pPart->GetPosition();
const coreFloat fHeight = g_pEnvironment->RetrieveSafeHeight(pPart->GetPosition().xy());
//
const coreBool bOldEnabled = pPart->IsEnabled(CORE_OBJECT_ENABLE_ALL);
const coreBool bNewEnabled = (pPart->GetPosition().z > fHeight);
//
pPart->SetEnabled(bNewEnabled ? CORE_OBJECT_ENABLE_ALL : CORE_OBJECT_ENABLE_NOTHING);
//
if(bOldEnabled != bNewEnabled)
{
const coreVector2 vProjectedPos = g_pForeground->Project3D(vPos);
//
if(g_pForeground->IsVisiblePoint(vProjectedPos))
{
//
if(pPart == &m_Head)
{
for(coreUintW j = 5u; j--; )
{
const coreVector2 vDir = coreVector2::Direction(DEG_TO_RAD(I_TO_F(j) * 36.0f));
//
g_pGame->GetBulletManagerEnemy()->AddBullet<cWaveBullet>(5, 1.1f, this, vProjectedPos, vDir)->ChangeSize(1.3f);
g_pGame->GetBulletManagerEnemy()->AddBullet<cWaveBullet>(5, 1.0f, this, vProjectedPos, vDir)->ChangeSize(1.3f);
g_pGame->GetBulletManagerEnemy()->AddBullet<cWaveBullet>(5, 1.1f, this, vProjectedPos, -vDir)->ChangeSize(1.3f);
g_pGame->GetBulletManagerEnemy()->AddBullet<cWaveBullet>(5, 1.0f, this, vProjectedPos, -vDir)->ChangeSize(1.3f);
}
//
g_pSpecialEffects->CreateSplashColor(coreVector3(vProjectedPos, 0.0f), SPECIAL_SPLASH_SMALL, COLOR_ENERGY_GREEN);
}
//
g_pSpecialEffects->CreateSplashSmoke(coreVector3(vPos.xy(), fHeight), 30.0f, 30u, coreVector3(1.0f,1.0f,1.0f));
g_pSpecialEffects->CreateSplashColor(coreVector3(vPos.xy(), fHeight), 50.0f, 15u, COLOR_ENERGY_WHITE);
}
}
//
if(bNewEnabled) pPart->DefaultAxiate(m_fMovement * ((i & 0x01u) ? 1.0f : -1.0f));
}
if(m_aiCounter[ROTATION_STATUS])
{
//
const coreVector2 vDiff = pContainer->GetPosition().xy() - m_Head.GetPosition().xy();
const coreVector2 vHeadMove = m_Head.GetMove();
//
if(!vDiff.IsNull() && !vHeadMove.IsNull()) m_avVector[CONTAINER_DATA].y += 100.0f * coreVector2::Dot(vDiff.Normalized().Rotated90(), vHeadMove.Normalized()) * RCP(vDiff.LengthSq()) * TIME;
}
//
m_avVector[CONTAINER_DATA].z += m_avVector[CONTAINER_DATA].y * TIME;
m_avVector[CONTAINER_DATA].y *= FrictionFactor(0.25f);
pContainer->SetDirection(coreVector3(coreVector2::Direction(m_avVector[CONTAINER_DATA].z), 0.0f));
//
this->__UpdateHealth();
//
if(this->ReachedHealthPct(0.75f) || this->ReachedHealthPct(0.5f))
{
//
for(coreUintW i = 0u; i < LEVIATHAN_RAYS; ++i)
this->__DisableRay(i, true);
//
m_aiCounter[ROTATION_STATUS] = 0;
m_aiCounter[CYCLE_COUNT] += 1;
if(m_aiCounter[CYCLE_COUNT] == 1)
{
//
for(coreUintW i = 0u; i < LEVIATHAN_PARTS; ++i)
m_avVector[SCATTER_FORCE + i].xy(coreVector2(1.0f,1.0f) * 30.0f);
//
PHASE_CHANGE_TO(30u)
}
else if(m_aiCounter[CYCLE_COUNT] == 2)
{
//
m_avVector[SCATTER_FORCE].w = ROUND(m_Head.GetPosition().xy().Normalized().Angle() / (0.4f*PI)) * (0.4f*PI);
m_avVector[SCATTER_FORCE + 1u].w = SIGN(-vNewOri.y);
//
for(coreUintW i = 0u; i < LEVIATHAN_PARTS; ++i)
{
const cEnemy* pPart = this->__GetPart(i);
m_avVector[SCATTER_FORCE + i].xy (pPart->GetPosition ().xy() / FOREGROUND_AREA);
m_avVector[SCATTER_FORCE + i].z = pPart->GetDirection().xy().Angle();
}
//
PHASE_CHANGE_TO(40u)
}
}
}
// ****************************************************************
//
void cLeviathanBoss::__EnableRay(const coreUintW iIndex)
{
ASSERT(iIndex < LEVIATHAN_RAYS)
coreObject3D* pRay = (*m_Ray .List())[iIndex];
coreObject3D* pWave = (*m_RayWave.List())[iIndex];
//
WARN_IF(pRay->IsEnabled(CORE_OBJECT_ENABLE_ALL)) return;
//
m_afRayTime[iIndex] = 0.0f;
//
const auto nInitFunc = [](coreObject3D* OUTPUT pObject)
{
pObject->SetColor3 (COLOR_ENERGY_YELLOW * 0.8f);
pObject->SetAlpha (0.0f);
pObject->SetEnabled(CORE_OBJECT_ENABLE_ALL);
};
nInitFunc(pRay);
nInitFunc(pWave);
//
const cEnemy* pPart = this->__GetPart(iIndex);
const coreVector3 vPos = pPart->GetPosition();
const coreVector3 vDir = pPart->GetDirection();
//
g_pSpecialEffects->CreateSplashColor(vPos + vDir * LEVIATHAN_RAY_OFFSET(iIndex), SPECIAL_SPLASH_TINY, COLOR_ENERGY_YELLOW);
}
// ****************************************************************
//
void cLeviathanBoss::__DisableRay(const coreUintW iIndex, const coreBool bAnimated)
{
ASSERT(iIndex < LEVIATHAN_RAYS)
coreObject3D* pRay = (*m_Ray .List())[iIndex];
coreObject3D* pWave = (*m_RayWave.List())[iIndex];
//
if(!pRay->IsEnabled(CORE_OBJECT_ENABLE_ALL)) return;
pRay->ChangeType(0);
//
const auto nExitFunc = [](coreObject3D* OUTPUT pObject)
{
pObject->SetEnabled(CORE_OBJECT_ENABLE_NOTHING);
};
nExitFunc(pRay);
nExitFunc(pWave);
if(bAnimated)
{
//
const cEnemy* pPart = this->__GetPart(iIndex);
const coreVector3 vPos = pPart->GetPosition();
const coreVector3 vDir = pPart->GetDirection();
//
for(coreUintW j = 25u; j--; ) g_pSpecialEffects->CreateSplashColor(vPos + vDir * (LEVIATHAN_RAY_OFFSET(iIndex) + 2.0f*I_TO_F(j)), 10.0f, 1u, COLOR_ENERGY_YELLOW);
}
}
// ****************************************************************
//
void cLeviathanBoss::__CreateOverdrive(const coreUintW iIndex, const coreVector3 vIntersect, const coreFloat fTime, const coreBool bGround)
{
ASSERT(iIndex < LEVIATHAN_RAYS)
//
constexpr coreFloat fMin = 2.5f;
constexpr coreFloat fMax = 5.0f;
coreVector3 vOldHit = m_avVector[OVERDRIVE_HIT + iIndex].xyz();
//
if(vOldHit.IsNull()) vOldHit = vIntersect;
else
{
gtAgain:
//
const coreVector3 vDiff = vIntersect - vOldHit;
const coreFloat fLen = vDiff.Length();
//
if(fLen > fMin)
{
//
const coreVector3 vNewHit = (fLen > fMax) ? LERP(vOldHit, vIntersect, fMax*RCP(fLen)) : vIntersect;
const coreVector2 vOldOnScreen = g_pForeground->Project2D(vOldHit);
const coreVector2 vNewOnScreen = g_pForeground->Project2D(vNewHit);
//
if(((ABS(vOldOnScreen.x) < 0.55f) && (ABS(vOldOnScreen.y) < 0.55f)) ||
((ABS(vNewOnScreen.x) < 0.55f) && (ABS(vNewOnScreen.y) < 0.55f)))
{
STATIC_ASSERT(sizeof(m_iDecalState)*8u >= LEVIATHAN_RAYS*2u)
//
if(HAS_BIT(m_iDecalState, iIndex * 2u)) TOGGLE_BIT(m_iDecalState, iIndex * 2u + 1u)
TOGGLE_BIT(m_iDecalState, iIndex * 2u)
//
const coreBool bRotated = HAS_BIT(m_iDecalState, iIndex * 2u);
const coreBool bFlipped = HAS_BIT(m_iDecalState, iIndex * 2u + 1u);
const coreVector3 vDecalPos = (vOldHit + vNewHit) * 0.5f;
const coreVector2 vDecalSize = coreVector2(Core::Rand->Float(5.0f, 6.5f), MIN(fLen, fMax)*1.8f);
const coreVector2 vDecalDir = vDiff.xy().Normalized();
// load object resources
coreObject3D* pObject = MANAGED_NEW(coreObject3D);
pObject->DefineModel (Core::Manager::Object->GetLowQuad());
pObject->DefineTexture(0u, "effect_soot.png");
pObject->DefineProgram("effect_decal_single_program");
// set object properties
pObject->SetSize (coreVector3((bRotated ? vDecalSize.yx() : vDecalSize), 1.0f));
pObject->SetDirection(coreVector3((bRotated ? vDecalDir.Rotated90() : vDecalDir) * (bFlipped ? -1.0f : 1.0f), 0.0f));
pObject->SetColor3 (coreVector3(0.0f,0.0f,0.0f));
// add object to background or windscreen
if(bGround) g_pEnvironment->GetBackground()->AddDecal (pObject, vDecalPos, 128u, "effect_decal_single_inst_program", LIST_KEY);
else g_pWindscreen ->AddObject(pObject, vDecalPos, 3.0f, 128u, "effect_decal_single_inst_program", LIST_KEY);
//
g_pSpecialEffects->CreateSplashFire (vNewHit, 5.0f, bGround ? 3u : 6u, COLOR_FIRE_ORANGE);
g_pSpecialEffects->CreateSplashColor(vNewHit, 25.0f, bGround ? 2u : 4u, COLOR_FIRE_ORANGE);
}
//
g_pSpecialEffects->ShakeScreen(0.1f + 0.55f * SIN(PI * fTime));
//
vOldHit = vNewHit;
goto gtAgain;
}
}
//
vOldHit.y -= g_pEnvironment->GetSpeed() * TIME * OUTDOOR_DETAIL;
//
m_avVector[OVERDRIVE_HIT + iIndex].xyz(vOldHit);
}
// ****************************************************************
//
void cLeviathanBoss::__UpdateHealth()
{
coreInt32 iNewDamage = 0;
//
for(coreUintW i = 0u; i < LEVIATHAN_PARTS; ++i)
{
cEnemy* pPart = this->__GetPart(i);
//
iNewDamage += pPart->GetMaxHealth() - pPart->GetCurHealth();
if(pPart->ReachedDeath())
{
//
pPart->DefineTexture(0u, "default_black.png");
pPart->AddStatus(ENEMY_STATUS_INVINCIBLE);
//
g_pSpecialEffects->MacroExplosionDarkSmall(pPart->GetPosition());
}
}
//
this->SetCurHealth(this->GetMaxHealth() - m_aiCounter[OLD_DAMAGE] - iNewDamage);
}
// ****************************************************************
//
void cLeviathanBoss::__RefreshHealth()
{
//
m_aiCounter[OLD_DAMAGE] = this->GetMaxHealth() - this->GetCurHealth();
for(coreUintW i = 0u; i < LEVIATHAN_PARTS; ++i)
{
cEnemy* pPart = this->__GetPart(i);
//
pPart->DefineTexture(0u, "ship_enemy.png");
pPart->RemoveStatus(ENEMY_STATUS_INVINCIBLE);
//
ASSERT(pPart->GetCurHealthPct() < 1.0f)
pPart->SetCurHealth(pPart->GetMaxHealth());
pPart->RefreshColor(1.0f);
//
if(pPart->IsEnabled(CORE_OBJECT_ENABLE_ALL))
{
g_pSpecialEffects->CreateSplashSmoke(pPart->GetPosition(), 30.0f, 30u, coreVector3(1.0f,1.0f,1.0f));
g_pSpecialEffects->CreateSplashColor(pPart->GetPosition(), 50.0f, 15u, COLOR_ENERGY_WHITE);
}
}
}
// ****************************************************************
//
FUNC_NOALIAS void cLeviathanBoss::__CalcCurvePosDir(const coreVector3 vAxis, const coreFloat fAngle, const coreVector3 vScale, coreVector3* OUTPUT vPosition, coreVector3* OUTPUT vDirection)
{
ASSERT(vAxis.IsNormalized() && vPosition && vDirection)
//
const coreMatrix3 mRota = coreMatrix4::RotationAxis(fAngle, vAxis).m123();
const coreVector3 vDir = vAxis.xy().IsNull() ? coreVector3(1.0f,0.0f,0.0f) : coreVector3(vAxis.xy().Normalized().Rotated90(), 0.0f);
const coreVector3 vPos = (vDir * mRota).Normalized();
//
(*vPosition) = vPos * vScale;
(*vDirection) = coreVector3::Cross(vAxis, (vPos / vScale)).Normalized();
}
// ****************************************************************
//
FUNC_CONST coreFloat cLeviathanBoss::__CalcAngle(const coreFloat fDistance, const coreFloat fRadius)
{
return (fDistance * RCP(fRadius) * (2.0f*PI));
}
// ****************************************************************
//
cEnemy* cLeviathanBoss::__GetPart(const coreUintW iIndex)
{
ASSERT(iIndex < LEVIATHAN_PARTS)
//
if(iIndex == 0u) return &m_Head;
if(iIndex == 4u) return &m_Tail;
return &m_aBody[iIndex - 1u];
}
// ****************************************************************
//
FUNC_CONST coreFloat cLeviathanBoss::__GetPartDistance(const coreUintW iIndex)
{
return (I_TO_F(iIndex) * 0.17f + (iIndex ? 0.02f : 0.0f));
}
|
[
"revision@maus-games.at"
] |
revision@maus-games.at
|
d4945f3876179d4efb2907506b08a00416a5c86b
|
7491e96c4dc532b3ed7a1e6cb1a900892d182f1e
|
/Graph + Trees/12.Check_a_graph_for_tree.cpp
|
7a02819ac436647aff41b81f8b32b307ffaf36bc
|
[] |
no_license
|
parvezaalam786/Placement-Preparation
|
b4312364d06d9e01118bd872da73f72dc4f6c64e
|
948f546443c0d535bb1ee40bc68ed438125a6cf4
|
refs/heads/master
| 2023-01-19T17:51:46.914941
| 2020-11-11T11:28:14
| 2020-11-11T11:28:14
| 282,716,681
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 301
|
cpp
|
// Handshaking Lemma
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
scanf("%d",&n);
int a,sum=0;
for(int i=0;i<n;i++)
{
scanf("%d",&a);
sum+=a;
}
if(sum == 2*(n-1))
printf("Yes\n");
else
cout<<"No\n";
return 0;
}
|
[
"parvezaalam786.p@gmail.com"
] |
parvezaalam786.p@gmail.com
|
763ac1a413a6bcd676f214cfe2902a566c290f56
|
11cd4f066c28c0b23272b6724f741dd6231c5614
|
/Codeforces/1311-C.cpp
|
6422ebe96ad9691c067a33130e7a2a1e385901b1
|
[] |
no_license
|
Maruf089/Competitive-Programming
|
155161c95a7a517cdbf7e59242c6e3fc25dd02b7
|
26ce0d2884842d4db787b5770c10d7959245086e
|
refs/heads/master
| 2021-06-24T11:00:55.928489
| 2021-06-01T05:45:58
| 2021-06-01T05:45:58
| 222,057,521
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 7,344
|
cpp
|
/**Bismillahir Rahmanir Rahim.**/
#include<bits/stdc++.h>
using namespace std;
#define ln '\n'
#define inp(x) scanf("%lld",&x)
#define inp2(a,b) scanf("%lld %lld",&a,&b)
#define f0(i,b) for(int i=0;i<(b);i++)
#define f1(i,b) for(int i=1;i<=(b);i++)
#define MOD 1000000007
#define countv(v,a) count(v.begin(),v.end(),a)
#define grtsrt(v) sort(v.begin(),v.end(),greater<int>())
#define uniq(v) v.resize( unique(all(v)) - v.begin())
#define PI acos(-1)
#define ll long long int
#define ull unsigned long long
typedef pair<int,int> pii;
typedef pair<ll, ll> pll;
#define pb push_back
#define F first
#define S second
#define sz size()
#define LCM(a,b) (a*(b/__gcd(a,b)))
//#define harmonic(n) 0.57721566490153286060651209+log(n)+1.0/(2*n)
#define SORT_UNIQUE(c) (sort(c.begin(),c.end()), c.resize(distance(c.begin(),unique(c.begin(),c.end()))))
#define all(v) v.begin(),v.end()
#define MEM(a, b) memset(a, b, sizeof(a))
#define fast ios_base::sync_with_stdio(false)
/*
#include <ext/pb_ds/assoc_container.hpp> // Common file
#include <ext/pb_ds/tree_policy.hpp> // Including */
//using namespace __gnu_pbds;
/*
template<typename T>
using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
template<typename F, typename S>
using ordered_map = tree<F, S, less<F>, rb_tree_tag, tree_order_statistics_node_update>;
// find_by_order(k) – ফাংশনটি kth ordered element এর একটা পয়েন্টার রিটার্ন করে। অর্থাৎ তুমি চাইলেই kth ইন্ডেক্সে কি আছে, সেটা জেনে ফেলতে পারছো!
// order_of_key(x) – ফাংশনটি x এলিমࡆɠǍটটޠকোন পজিশনে আছে সেটা বলে দেয়।
*/
///Inline functions
inline bool EQ(double a, double b) { return fabs(a-b) < 1e-9; }
inline bool isLeapYear(ll year) { return (year%400==0) | (year%4==0 && year%100!=0); }
inline void normal(ll &a) { a %= MOD; (a < 0) && (a += MOD); }
inline ll modMul(ll a, ll b) { a %= MOD, b %= MOD; normal(a), normal(b); return (a*b)%MOD; }
inline ll modAdd(ll a, ll b) { a %= MOD, b %= MOD; normal(a), normal(b); return (a+b)%MOD; }
inline ll modSub(ll a, ll b) { a %= MOD, b %= MOD; normal(a), normal(b); a -= b; normal(a); return a; }
inline ll modPow(ll b, ll p) { ll r = 1; while(p) { if(p&1) r = modMul(r, b); b = modMul(b, b); p >>= 1; } return r; }
inline ll modInverse(ll a) { return modPow(a, MOD-2); }
inline ll modDiv(ll a, ll b) { return modMul(a, modInverse(b)); }
inline bool isInside(pii p,ll n,ll m){ return (p.first>=0&&p.first<n&&p.second>=0&&p.second<m); }
inline bool isInside(pii p,ll n){ return (p.first>=0&&p.first<n&&p.second>=0&&p.second<n); }
inline bool isSquare(ll x){ ll s = sqrt(x); return (s*s==x); }
inline bool isFib(ll x) { return isSquare(5*x*x+4)|| isSquare(5*x*x-4); }
inline bool isPowerOfTwo(ll x){ return ((1LL<<(ll)log2(x))==x); }
///**
template < typename F, typename S >
ostream& operator << ( ostream& os, const pair< F, S > & p )
{
return os << "(" << p.first << ", " << p.second << ")";
}
template < typename T >
ostream &operator << ( ostream & os, const vector< T > &v )
{
os << "{";
for (auto it = v.begin(); it != v.end(); ++it)
{
if ( it != v.begin() )
os << ", ";
os << *it;
}
return os << "}";
}
template < typename T >
ostream &operator << ( ostream & os, const set< T > &v )
{
os << "[";
for (auto it = v.begin(); it != v.end(); ++it)
{
if ( it != v.begin())
os << ", ";
os << *it;
}
return os << "]";
}
template < typename F, typename S >
ostream &operator << ( ostream & os, const map< F, S > &v )
{
os << "[";
for (auto it = v.begin(); it != v.end(); ++it)
{
if ( it != v.begin() )
os << ", ";
os << it -> first << " = " << it -> second ;
}
return os << "]";
}
#define dbg(args...) do {cerr << #args << " : "; faltu(args); } while(0)
clock_t tStart = clock();
#define timeStamp dbg("Execution Time: ", (double)(clock() - tStart)/CLOCKS_PER_SEC)
void faltu ()
{
cerr << endl;
}
template <typename T>
void faltu( T a[], int n )
{
for (int i = 0; i < n; ++i)
cerr << a[i] << ' ';
cerr << endl;
}
template <typename T, typename ... hello>
void faltu( T arg, const hello &... rest)
{
cerr << arg << ' ';
faltu(rest...);
}
/// TEMPLATE ----------------------------------------------------------------------->>>>>>
struct func
{
//this is a sample overloading function for sorting stl
bool operator()(pii const &a, pii const &b)
{
if(a.F==b.F)
return (a.S<b.S);
return (a.F<b.F);
}
};
const ll INF = 0x3f3f3f3f3f3f3f3f;
const long double EPS = 1e-9;
const int inf = 0x3f3f3f3f;
const int mx = (int)1e5+9;
/// count set bit C = (num * 0x200040008001ULL & 0x111111111111111ULL) % 0xf; /// 32 bit integer
/*------------------------------Graph Moves----------------------------*/
//Rotation: S -> E -> N -> W
//const int fx[] = {0, +1, 0, -1};
//const int fy[] = {-1, 0, +1, 0};
//const int fx[]={+0,+0,+1,-1,-1,+1,-1,+1}; // Kings Move
//const int fy[]={-1,+1,+0,+0,+1,+1,-1,-1}; // Kings Move
//const int fx[]={-2, -2, -1, -1, 1, 1, 2, 2}; // Knights Move
//const int fy[]={-1, 1, -2, 2, -2, 2, -1, 1}; // Knights Move
/*---------------------------------------------------------------------*/
/// Bit Operations
/// inline bool checkBit(ll n, int i) { return n&(1LL<<i); }
/// inline ll setBit(ll n, int i) { return n|(1LL<<i); }
/// inline ll resetBit(ll n, int i) { return n&(~(1LL<<i)); }
/// inline int msb(ll x) { union { double a; int b[2]; }; a = x;return (b[1] >> 20) - 1023;}
/// inline int rightmostbitposition(ll x) { return x&(-x);}
struct Point
{
ll s,p,x,y;
string name;
/// Point() {}
/// Point(double x,double y) : x(x), y(y) {}
bool operator < (const Point &ob)const /// decreasing sort as same as compare function
{
return s==ob.s ? p<ob.p : s>ob.s;
}
};
double distance(Point a, Point b)
{
return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
}
/// ************************************** Code starts here ****************************************** */
ll n,m,a,b,i,j,d,cs=0,counT=0,k,ans=0,l=0,sum1=0,sum=0,Max,Min,num;
int main()
{
// freopen("in.txt","r",stdin);
int t;
cin >> t ;
while(t--)
{
cin >> n >> m ;
ll arr[m+9];
vector<ll>vc[27];
map<ll,ll>mp;
string s ;
cin >>s ;
for(i=0;i<n;i++)
{
vc[s[i]-'a'].pb(i+1);
mp[s[i]-'a']++;
}
f0(i,m)
{
cin >> arr[i];
for(int k=0;k<26;k++)
{
d = 0 ;
if(vc[k].sz)
d = lower_bound(vc[k].begin(),vc[k].end(),arr[i]+1)-vc[k].begin();
// dbg(d);
mp[k] += d;
}
}
for(i=0;i<26;i++)
{
cout << mp[i] << " ";
}
cout << endl;
}
/// Comment the debugger section
}
|
[
"noreply@github.com"
] |
Maruf089.noreply@github.com
|
70a98c55c6887c9445cf814de581078c1ad1de18
|
ac96b532f7d4cedb044df17d228046704ac25aa5
|
/MPShelpers/include/eigs.h
|
7edb30b0df3f54828f5f47de910d7ad48e09e2a3
|
[] |
no_license
|
Darkdragon84/IMPS_CPP_tools
|
7c6d4d3c3811b82c91d13bf588f561b08a89d852
|
aa94af3e82c05f835f592345c4e2fb691271c2f3
|
refs/heads/master
| 2022-01-06T00:56:28.875188
| 2019-05-06T08:29:18
| 2019-05-06T08:29:18
| 103,420,831
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,207
|
h
|
#ifndef EIGS_H_
#define EIGS_H_
//#include "MPSIncludes.h"
#include <iostream>
#include <assert.h>
#include "Defs.h"
#include "arma_typedefs.h"
/// TODO (valentin#1#2016-12-12): switch to templates of MultOPx to be able to pass temporary lambdas
extern "C"
{
// struct /// variables controlling debugging in ARPACK, see debuc.doc in DOCUMENTS for detail (conflicts with some internal armadillo definition though)
// {
// int logfil, ndigit, mgetv0=0, msaupd=0, msaup2=0, msaitr=0, mseigt=0, msapps=0, msgets=0, mseupd=0, mnaupd=1, mnaup2=0,
// mnaitr=0, mneigh=0, mnapps=0, mngets=3, mneupd=4, mcaupd=0, mcaup2=0, mcaitr=0, mceigh=0, mcapps=0, mcgets=0, mceupd=0;
// } DEBUG_;
/// real symmetric drivers
void dsaupd_(int* IDO, char* BMAT, int* N, char WHICH[], int* NEV, double* TOL, double RESID[], int* NCV, double V[], int* LDV, int IPARAM[],
int IPNTR[], double WORKD[], double WORKL[], int* LWORKL, int* INFO);
void dseupd_(int* RVEC, char* HOWMNY, int SELECT[], double D[], double Z[], int* LDZ, double* SIGMA, char* BMAT, int* N,
char WHICH[], int* NEV, double* TOL, double RESID[], int* NCV, double V[], int* LDV, int IPARAM[], int IPNTR[], double WORKD[], double WORKL[], int* LWORKL, int* INFO);
/// real non-symmetric drivers
void dnaupd_(int* IDO, char* BMAT, int* N, char WHICH[], int* NEV, double* TOL, double RESID[], int* NCV, double V[], int* LDV, int IPARAM[],
int IPNTR[], double WORKD[], double WORKL[], int* LWORKL, int* INFO);
void dneupd_(int* RVEC, char* HOWMNY, int SELECT[], double DR[], double DI[], double Z[], int* LDZ, double* SIGMAR, double* SIGMAI, double WORKEV[], char* BMAT, int* N,
char WHICH[], int* NEV, double* TOL, double RESID[], int* NCV, double V[], int* LDV, int IPARAM[], int IPNTR[], double WORKD[], double WORKL[], int* LWORKL, int* INFO);
/// complex non-symmetric drivers
void znaupd_(int* IDO, char* BMAT, int* N, char WHICH[], int* NEV, double* TOL, Complex RESID[], int* NCV, Complex V[], int* LDV, int IPARAM[],
int IPNTR[], Complex WORKD[], Complex WORKL[], int* LWORKL, double RWORK[], int* INFO);
void zneupd_(int* RVEC, char* HOWMNY, int SELECT[], Complex D[], Complex Z[], int* LDZ, Complex* SIGMA, Complex WORKEV[], char* BMAT, int* N, char WHICH[], int* NEV,
double* TOL, Complex RESID[], int* NCV, Complex V[], int* LDV, int IPARAM[], int IPNTR[], Complex WORKD[], Complex WORKL[], int* LWORKL, double RWORK[], int* INFO);
}
int eigs_rs(std::function<void (double*,double*)> MultOPx, int N, RVecType& vals, RMatType& vecs, int nev,
std::string whch="LM", double tol=1e-14, const RVecType& x0=RVecType(), int maxit=0, int ncv=0);
int eigs_rs(const RMatType& A, RVecType& vals, RMatType& vecs, int nev, std::string whch="LM", double tol=1e-14, const RVecType& x0=RVecType(), int maxit=0, int ncv=0);
//template<typename T>
//int eigs_n(std::function<void (T*,T*)> MultOPx, int N, CVecType& vals, CMatType& vecs, int nev,
// std::string whch="LM", double tol=1e-14, const Col<T>& x0=Col<T>(), int maxit=0, int ncv=0);
//template<>
int eigs_n(std::function<void (double*,double*)> MultOPx, int N, CVecType& vals, CMatType& vecs, int nev,
std::string whch="LM", double tol=1e-14, const RVecType& x0=RVecType(), int maxit=0, int ncv=0);
//template<>
int eigs_n(std::function<void (Complex*,Complex*)> MultOPx, int n, CVecType& vals, CMatType& vecs, int nev,
std::string whch="LM", double tol=1e-14, const CVecType& x0=CVecType(), int maxit=0, int ncv=0);
//template<typename T>
//int eigs_n(const Mat<T>& A, CVecType& vals, CMatType& vecs, int nev, std::string whch="LM", double tol=1e-14, const Col<T>& x0=Col<T>(), int maxit=0, int ncv=0);
//template<>
int eigs_n(const RMatType& A, CVecType& vals, CMatType& vecs, int nev, std::string whch="LM", double tol=1e-14, const RVecType& x0=RVecType(), int maxit=0, int ncv=0);
//template<>
int eigs_n(const CMatType& A, CVecType& vals, CMatType& vecs, int nev, std::string whch="LM", double tol=1e-14, const CVecType& x0=CVecType(), int maxit=0, int ncv=0);
#endif // EIGS_H_
|
[
"stauber.valentin@gmail.com"
] |
stauber.valentin@gmail.com
|
e63d643c1afba9c4cc603b67858a43259a2cc875
|
910f3d783b7d1414764781a0a485e16a4cdb39a3
|
/final/bbcar/bbcar/parallax_servo.cpp
|
db4b60dcbbf6cfc3213e5a1d96118830e4903b34
|
[] |
no_license
|
brianlu90/final
|
8696fa8955fde76990db81a00083ff7b95848a52
|
7747f636e9f418485ff998ed022915311f6eb468
|
refs/heads/master
| 2023-05-15T19:28:13.973841
| 2021-06-16T09:15:25
| 2021-06-16T09:15:25
| 376,781,087
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,567
|
cpp
|
#include "parallax_servo.h"
parallax_servo::parallax_servo (PwmOut& pin) {
pin.period(0.02);
pwm = &pin;
factor = 1;
target_pwm_value = 0;
current_pwm_value = 0;
ramping_factor = 0;
}
// set new target pwm value (speed = pwm value)
void parallax_servo::set_speed( double value ) {
target_pwm_value = value * factor;
// you can determine ramping factor formula by yourself
ramping_factor = abs(target_pwm_value - current_pwm_value) / 50;
if (target_pwm_value > 200) target_pwm_value = 200;
else if (target_pwm_value < -200) target_pwm_value = -200;
}
void parallax_servo::set_speed_normp( double value ) {
target_pwm_value = value * factor;
// you can determine ramping factor formula by yourself
ramping_factor = abs(target_pwm_value - current_pwm_value) / 1;
if (target_pwm_value > 200) target_pwm_value = 200;
else if (target_pwm_value < -200) target_pwm_value = -200;
}
void parallax_servo::set_factor( double value ){
factor = value;
}
// control servo input pwm, also ramping is mainly done in here
void parallax_servo::control(){
if (current_pwm_value > target_pwm_value) {
if (current_pwm_value < target_pwm_value + ramping_factor)
current_pwm_value = target_pwm_value;
else current_pwm_value -= ramping_factor;
}
else if (current_pwm_value < target_pwm_value) {
if (current_pwm_value > target_pwm_value - ramping_factor)
current_pwm_value = target_pwm_value;
else current_pwm_value += ramping_factor;
}
pwm->write((CENTER_BASE + current_pwm_value) / 20000);
}
void parallax_servo::set_calib_table( int len, double pwm_calib_table[], double speed_calib_table[] ) {
table_len = len;
pwm_table = pwm_calib_table;
speed_table = speed_calib_table;
}
// input value is speed : cm/s
void parallax_servo::set_speed_by_cm( double value ){
int i;
double pwm_speed;
double pwm_diff;
double speed_diff;
for (i=0; i<table_len; i++) {
// values of speed table should be stored from small to large
if (value < speed_table[i]) {
// if less then table, take smallest value
if (i==0) {
set_speed(pwm_table[0]);
return;
}
// interpolation
pwm_diff = pwm_table[i] - pwm_table[i-1];
speed_diff = speed_table[i] - speed_table[i-1];
pwm_speed = pwm_table[i-1] + pwm_diff * ((value-speed_table[i-1])/speed_diff);
set_speed(pwm_speed);
return;
}
}
// if exceed the table, take largest value
pwm_speed = pwm_table[table_len-1];
set_speed(pwm_speed);
}
void parallax_servo::set_speed_by_cm_normp( double value ){
int i;
double pwm_speed;
double pwm_diff;
double speed_diff;
for (i=0; i<table_len; i++) {
// values of speed table should be stored from small to large
if (value < speed_table[i]) {
// if less then table, take smallest value
if (i==0) {
set_speed(pwm_table[0]);
return;
}
// interpolation
pwm_diff = pwm_table[i] - pwm_table[i-1];
speed_diff = speed_table[i] - speed_table[i-1];
pwm_speed = pwm_table[i-1] + pwm_diff * ((value-speed_table[i-1])/speed_diff);
set_speed(pwm_speed);
return;
}
}
// if exceed the table, take largest value
pwm_speed = pwm_table[table_len-1];
set_speed_normp(pwm_speed);
}
|
[
"brianlu90@gmail.com"
] |
brianlu90@gmail.com
|
7710b8c09f0564beee78f1a6969fae6a858b063b
|
6d0b035f347765552dd196449e7b1a8b36805525
|
/world/CWorld.cpp
|
6b03a27b8c71d31d021767f53c837b88648f5f9c
|
[] |
no_license
|
AmosZhu/raytracer
|
8932c9f2142cbc2db1794c342c65a2b9646b58bb
|
f0f881b0bfb29fac4867b7c0623d221e24458b16
|
refs/heads/master
| 2021-01-13T00:50:35.502269
| 2016-02-22T05:53:34
| 2016-02-22T05:53:34
| 45,279,728
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,089
|
cpp
|
/*
* CWorld.cpp
*
* Created on: Oct 30, 2015
* Author: Dizhong.Zhu
*/
#include "CWorld.h"
#include "CSingleSphere.h"
#include "CTracerMultipleObjects.h"
#include "CMultiJitteredSampler.h"
#include "common.h"
#include "CPlane.h"
CWorld::CWorld() {
tracer_ptr = nullptr;
camera_ptr = nullptr;
m_screen = CDisplayScreen::GetInstance();
}
CWorld::~CWorld() {
Destroy();
}
void CWorld::Destroy() {
/*
* Clear objects pointer vector
*/
int size = m_objects.size();
for (int i = 0; i < size; i++) {
delete m_objects[i];
m_objects[i] = nullptr;
}
m_objects.clear();
}
void CWorld::Build() {
int num_samples=1024;
vp.SetHorizontalResolution(120);
vp.SetVerticalResolution(120);
vp.SetPixelSize(8);
vp.SetNumSamples(num_samples);
vp.SetSampler(new CMultiJitteredSampler(num_samples));
vp.SetMaxDepth(0);
bg_color = CRGBColor(0, 0, 0);
tracer_ptr = new CTracerMultipleObjects(this);
//
// sphere.SetCenter(0);
// sphere.SetRadius(85.0);
//
CSphere* pSphere = new CSphere(CPoint3D(0, -25, 0), 150);
pSphere->SetColor(CRGBColor(255, 0, 0));
AddObject(pSphere);
pSphere = new CSphere(CPoint3D(0, 100, 0), 60);
pSphere->SetColor(CRGBColor(255, 255, 0));
AddObject(pSphere);
pSphere=new CSphere(CPoint3D(300,300,300),50);
pSphere->SetColor(CRGBColor(0,255,0));
AddObject(pSphere);
CPlane* pPlane = new CPlane(CPoint3D(0, 0, 0), CVector3D(0, 1, 1));
pPlane->SetColor(CRGBColor(100, 100, 0));
AddObject(pPlane);
}
void CWorld::AddObject(CGeometricObject* obj) {
if (obj != nullptr) {
m_objects.push_back(obj);
}
}
void CWorld::Set_Camera(CCamera* _cam) {
camera_ptr = _cam;
}
CShadeRec CWorld::HitObjects(const CRay& _ray) {
CShadeRec sr(this);
CRGBColor color;
int nObjects = m_objects.size();
double tmin;
double t = KINFINITY;
for (int i = 0; i < nObjects; i++) {
if (m_objects[i]->Hit(_ray, tmin, sr) && (tmin < t)) {
sr.isHit = true;
sr.color = m_objects[i]->GetColor();
t = tmin;
}
}
return sr;
}
void CWorld::Render() {
CRGBColor pixel_color;
CRay ray;
double zw = 100;
double x, y;
/*
* Clean before rendering
*/
m_screen->Clear();
m_screen->OpenWindow(vp.hres, vp.vres, vp.size);
ray.d = CVector3D(0, 0, -1);
for (int c = 0; c < vp.hres; c++) {
for (int r = 0; r < vp.vres; r++) {
x = vp.size * (c - vp.hres / 2 + 0.5);
y = vp.size * (r - vp.vres / 2 + 0.5);
ray.o = CPoint3D(x, y, zw);
pixel_color = tracer_ptr->Trace_Ray(ray);
m_screen->SetPixel(c, r, pixel_color);
}
}
}
void CWorld::Render_Scence() {
camera_ptr->Render_Scence(this);
}
void CWorld::Zaxis_aligned_perspective(double _eye, double _d) {
CRGBColor pixel_color;
CRay ray;
double x, y;
m_screen->Clear();
m_screen->OpenWindow(vp.hres, vp.vres, vp.size);
ray.o = CPoint3D(0, 0, _eye);
for (int c = 0; c < vp.hres; c++) {
for (int r = 0; r < vp.vres; r++) {
x = vp.size * (c - vp.hres / 2 + 0.5);
y = vp.size * (r - vp.vres / 2 + 0.5);
ray.d = CVector3D(x, y, -_d);
ray.d.Normalize();
pixel_color = tracer_ptr->Trace_Ray(ray);
m_screen->SetPixel(c, r, pixel_color);
}
}
}
|
[
"Amos.Zhu@hotmail.com"
] |
Amos.Zhu@hotmail.com
|
ae0c7a42c2b1bfba2d576988f60b0dcb331f5f0a
|
688d5a8227bfd8e7e503a06b256d83f707cdb162
|
/plot/TPlotNote.cc
|
e2f44201f8cd9e1be63f2af1a4ddb943d2c3dc1f
|
[] |
no_license
|
pavel1murat/murat
|
ea65ee1baf5b3335d080585b04e18d0304963097
|
d76111a73a18c150e6b5218fc411a2fd05e91e10
|
refs/heads/main
| 2023-06-11T07:22:18.986114
| 2023-05-24T16:35:22
| 2023-05-24T16:35:22
| 118,154,861
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,879
|
cc
|
///////////////////////////////////////////////////////////////////////////////
// base class for plot notes
////////////////////////////////////////////////////////////////////////////////
#include "plot/TPlotNote.hh"
#include "TPaveLabel.h"
#include "TArrow.h"
#include "TObjArray.h"
#include "TObjString.h"
ClassImp(TPlotNote)
//_____________________________________________________________________________
TPlotNote::TPlotNote(int PlotMode, int BlessingMode) {
// const char* hist_dir;
fWorkDir = gSystem->Getenv("WORK_DIR");
fPlotMode = PlotMode;
fBlessingMode = BlessingMode;
for (int i=0; i<100; i++) {
fDebugBit[i] = 0;
}
};
//_____________________________________________________________________________
TPlotNote::~TPlotNote() {
};
//-----------------------------------------------------------------------------
// determine name of the .eps and .gif files in the ./figures directory
// today's default set is 'frr_03', all the plots should be coming from it
//-----------------------------------------------------------------------------
void TPlotNote::get_filename(int Figure, char* Filename) {
if (Figure == -1) sprintf(Filename,"fig_%i.%s",Figure,"undefined");
else {
//-----------------------------------------------------------------------------
// undefined, just figure
//-----------------------------------------------------------------------------
sprintf(Filename,"fig_%i",Figure);
}
}
//-----------------------------------------------------------------------------
// 'Font' - ROOT font number
//-----------------------------------------------------------------------------
int TPlotNote::DrawPaveLabelNDC(TPaveLabel*& Label,
const char* Text ,
double XMin ,
double YMin ,
double XMax ,
double YMax ,
int Font ) {
Label = new TPaveLabel();
Label->SetLabel(Text);
Label->SetTextFont(Font);
Label->SetTextSize(0.8);
Label->SetBorderSize(0);
Label->SetFillStyle(0);
Label->SetX1NDC(XMin);
Label->SetX2NDC(XMax);
Label->SetY1NDC(YMin);
Label->SetY2NDC(YMax);
Label->Draw();
return 0;
}
//_____________________________________________________________________________
void TPlotNote::plot(Int_t Figure, const char* CanvasName) {
}
//_____________________________________________________________________________
const char* TPlotNote::GetFiguresDir() {
return gSystem->Getenv("WORK_DIR");
}
//_____________________________________________________________________________
void TPlotNote::print(int Figure,
const char* Filename,
const char* Dir) {
// print canvas in .gif and .eps
char dir[200], filename[200], canvas_name[200];
sprintf(canvas_name,"fig_%i",Figure);
if (Dir == 0) {
if (fPlotMode == kNoteMode ) {
if (fBlessingMode == 0) sprintf(dir,"%s/note" ,GetFiguresDir());
else sprintf(dir,"%s/public_note",GetFiguresDir());
}
if (fPlotMode == kTalkMode ) sprintf(dir,"%s/talk" ,GetFiguresDir());
if (fPlotMode == kPaperMode) sprintf(dir,"%s/paper",GetFiguresDir());
}
else {
strcpy(dir,Dir);
}
fCanvas = (TCanvas*) gROOT->GetListOfCanvases()->FindObject(canvas_name);
if (fCanvas) {
if (Filename != 0) {
fCanvas->Print(Form("%s/%s.eps",dir,Filename));
fCanvas->Print(Form("%s/%s.gif",dir,Filename));
}
else {
this->get_filename(Figure,filename);
fCanvas->Print(Form("%s/%s.eps",dir,filename));
fCanvas->Print(Form("%s/%s.gif",dir,filename));
}
}
else {
//-----------------------------------------------------------------------------
// an attempt to print a not-yet plotted figure
//-----------------------------------------------------------------------------
printf("ERROR: figure %i has not yet been plotted\n",Figure);
}
}
|
[
"murat@fnal.gov"
] |
murat@fnal.gov
|
4a77bebd7d020024bd882ba83eb604c25532347b
|
134d4357ccc3b3bd75fd94083554059b7e478cf2
|
/Code/nowCode/NC109岛屿数量_dfs.cpp
|
021c5d14495ab2c6242943f157053c03e8acc44b
|
[] |
no_license
|
CaiHuicheng/Project
|
cd7f0cf5516ef14ee17554b1a97b4b1a40872692
|
b76214f9ff469676bb1dfa39c4fe2ac99af06209
|
refs/heads/master
| 2023-02-17T16:16:45.736858
| 2021-01-16T13:14:14
| 2021-01-16T13:14:14
| 293,016,694
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 955
|
cpp
|
class Solution {
public:
/**
* 判断岛屿数量
* @param grid char字符型vector<vector<>>
* @return int整型
*/
int solve(vector<vector<char> >& grid) {
//看成无限图,用dfs或bfs
int r = grid.size();
if(r == 0) return 0;
int c = grid[0].size();
int nums = 0;
for(int i = 0 ;i<r;++i){
for(int j = 0;j<c;++j){
if(grid[i][j] == '1'){
++nums;
dfs(grid,i,j);
}
}
}
return nums;
}
void dfs(vector<vector<char>>& grid,int r,int c){
int nr = grid.size();
int nc = grid[0].size();
grid[r][c] = '0';
if(r-1>=0&&grid[r-1][c] == '1')dfs(grid,r-1,c);
if(r+1<nr&&grid[r+1][c] == '1')dfs(grid,r+1,c);
if(c-1>=0&&grid[r][c-1] == '1')dfs(grid,r,c-1);
if(c+1<nc&&grid[r][c+1] == '1')dfs(grid,r,c+1);
}
};
|
[
"2751886429@qq.com"
] |
2751886429@qq.com
|
a62262e820723b5c7a6c2037baab3cc8101f43a1
|
431a5c28b8dfcc7d6ca6f4f97bf370cd770547a7
|
/src/v2i-hub/CARMAStreetsPlugin/test/test_J2735ToSRMJsonConverter.cpp
|
aacbcaddf98d790ce8f3ae38438b97c3c34beae7
|
[
"Apache-2.0"
] |
permissive
|
usdot-fhwa-OPS/V2X-Hub
|
134061cfb55d8c83e871f7fd4bbfa5d8d3092eb0
|
aae33e6a16b8a30e1faee31a7ee863d191be06b8
|
refs/heads/develop
| 2023-08-26T10:10:59.989176
| 2023-08-24T14:58:21
| 2023-08-24T14:58:21
| 168,020,929
| 106
| 63
| null | 2023-09-11T20:24:45
| 2019-01-28T19:16:45
|
C
|
UTF-8
|
C++
| false
| false
| 7,254
|
cpp
|
#include <gtest/gtest.h>
#include <J2735ToSRMJsonConverter.h>
#include <cassert>
class test_J2735ToSRMJsonConverter : public ::testing::Test
{
public:
test_J2735ToSRMJsonConverter() = default;
~test_J2735ToSRMJsonConverter() = default;
protected:
tmx::messages::SrmMessage *_srmMessage;
SignalRequestMessage_t *_message;
void SetUp() override
{
_message = (SignalRequestMessage_t *)calloc(1, sizeof(SignalRequestMessage_t));
_message->second = 12;
RequestorDescription_t *requestor = (RequestorDescription_t *)calloc(1, sizeof(RequestorDescription_t));
VehicleID_t *veh_id = (VehicleID_t *)calloc(1, sizeof(VehicleID_t));
veh_id->present = VehicleID_PR_entityID;
TemporaryID_t *entity_id = (TemporaryID_t *)calloc(1, sizeof(TemporaryID_t));
uint8_t my_bytes_id[4] = {(uint8_t)1, (uint8_t)12, (uint8_t)12, (uint8_t)10};
entity_id->buf = my_bytes_id;
entity_id->size = sizeof(my_bytes_id);
veh_id->choice.entityID = *entity_id;
requestor->id = *veh_id;
RequestorType_t *requestType = (RequestorType_t *)calloc(1, sizeof(RequestorType_t));
requestType->role = 0;
requestor->type = requestType;
RequestorPositionVector_t *position = (RequestorPositionVector_t *)calloc(1, sizeof(RequestorPositionVector_t));
DSRC_Angle_t *heading_angle = (DSRC_Angle_t *)calloc(1, sizeof(DSRC_Angle_t));
*heading_angle = 123;
position->heading = heading_angle;
Position3D_t *position_point = (Position3D_t *)calloc(1, sizeof(Position3D_t));
DSRC_Elevation_t *elev = (DSRC_Elevation_t *)calloc(1, sizeof(DSRC_Elevation_t));
*elev = 12;
position_point->elevation = elev;
position_point->lat = 3712333;
position_point->Long = 8012333;
position->position = *position_point;
TransmissionAndSpeed_t *speed = (TransmissionAndSpeed_t *)calloc(1, sizeof(TransmissionAndSpeed_t));
speed->speed = 10;
TransmissionState_t *transmission_state = (TransmissionState_t *)calloc(1, sizeof(TransmissionState_t));
*transmission_state = 1111;
speed->transmisson = 7;
position->speed = speed;
requestor->position = position;
_message->requestor = *requestor;
SignalRequestList_t *requests = (SignalRequestList_t *)calloc(1, sizeof(SignalRequestList_t));
//First: Request Package
SignalRequestPackage_t *request_package = (SignalRequestPackage_t *)calloc(1, sizeof(SignalRequestPackage_t));
MinuteOfTheYear_t *min = (MinuteOfTheYear_t *)calloc(1, sizeof(MinuteOfTheYear_t));
*min = 123;
request_package->minute = min;
DSecond_t *duration = (DSecond_t *)calloc(1, sizeof(DSecond_t));
*duration = 122;
request_package->duration = duration;
DSecond_t *second = (DSecond_t *)calloc(1, sizeof(DSecond_t));
*second = 1212;
request_package->second = second;
SignalRequest_t *request = (SignalRequest_t *)calloc(1, sizeof(SignalRequest_t));
IntersectionReferenceID_t *refer_id = (IntersectionReferenceID_t *)calloc(1, sizeof(IntersectionReferenceID_t));
refer_id->id = 1222;
request->id = *refer_id;
request->requestID = 1;
request->requestType = 0;
IntersectionAccessPoint_t *inBoundLane = (IntersectionAccessPoint_t *)calloc(1, sizeof(IntersectionAccessPoint_t));
inBoundLane->present = IntersectionAccessPoint_PR_lane;
inBoundLane->choice.lane = 1;
request->inBoundLane = *inBoundLane;
request_package->request = *request;
asn_sequence_add(&requests->list.array, request_package);
//Second: Request Package
SignalRequestPackage_t *request_package_2 = (SignalRequestPackage_t *)calloc(1, sizeof(SignalRequestPackage_t));
request_package_2->minute = min;
request_package_2->duration = duration;
request_package_2->second = second;
SignalRequest_t *request_2 = (SignalRequest_t *)calloc(1, sizeof(SignalRequest_t));
IntersectionReferenceID_t *referId2 = (IntersectionReferenceID_t *)calloc(1, sizeof(IntersectionReferenceID_t));
referId2->id = 2333;
request_2->id = *referId2;
request_2->requestID = 2;
request_2->requestType = 1;
IntersectionAccessPoint_t *inBoundLane2 = (IntersectionAccessPoint_t *)calloc(1, sizeof(IntersectionAccessPoint_t));
inBoundLane2->present = IntersectionAccessPoint_PR_approach;
inBoundLane2->choice.approach = 1;
request_2->inBoundLane = *inBoundLane2;
request_package_2->request = *request_2;
asn_sequence_add(&requests->list.array, request_package_2);
_message->requests = requests;
tmx::messages::SrmEncodedMessage srmEncodeMessage;
_srmMessage = new tmx::messages::SrmMessage(_message);
}
};
namespace unit_test
{
TEST_F(test_J2735ToSRMJsonConverter, toSRMJson)
{
CARMAStreetsPlugin::J2735ToSRMJsonConverter srmConverter;
std::vector<Json::Value> srmJsonV;
srmConverter.toSRMJsonV(srmJsonV, _srmMessage);
int expectedSrmSize = 2;
ASSERT_EQ(expectedSrmSize, srmJsonV.size());
int i = 0;
for (auto srmJson : srmJsonV)
{
Json::FastWriter fastWriter;
std::string message = fastWriter.write(srmJson);
std::string expectedSrmStr = "";
if (i == 0)
{
expectedSrmStr = "{\"MsgType\":\"SRM\",\"SignalRequest\":{\"basicVehicleRole\":0,\"expectedTimeOfArrival\":{\"ETA_Duration\":122,\"ETA_Minute\":123,\"ETA_Second\":1212},\"heading_Degree\":123,\"inBoundLane\":{\"LaneID\":1},\"intersectionID\":1222,\"minuteOfYear\":123,\"msOfMinute\":1212,\"position\":{\"elevation_Meter\":120,\"latitude_DecimalDegree\":0.37123331427574158,\"longitude_DecimalDegree\":0.80123329162597656},\"priorityRequestType\":0,\"speed_MeterPerSecond\":500.0,\"vehicleID\":\"10c0c0a\"}}\n";
}
else if (i == 1)
{
expectedSrmStr = "{\"MsgType\":\"SRM\",\"SignalRequest\":{\"basicVehicleRole\":0,\"expectedTimeOfArrival\":{\"ETA_Duration\":122,\"ETA_Minute\":123,\"ETA_Second\":1212},\"heading_Degree\":123,\"inBoundLane\":{\"ApproachID\":1},\"intersectionID\":2333,\"minuteOfYear\":123,\"msOfMinute\":1212,\"position\":{\"elevation_Meter\":120,\"latitude_DecimalDegree\":0.37123331427574158,\"longitude_DecimalDegree\":0.80123329162597656},\"priorityRequestType\":1,\"speed_MeterPerSecond\":500.0,\"vehicleID\":\"10c0c0a\"}}\n";
}
ASSERT_EQ(expectedSrmStr, message);
i++;
}
}
TEST_F(test_J2735ToSRMJsonConverter, toSRMJsonNULLObj)
{
CARMAStreetsPlugin::J2735ToSRMJsonConverter srmConverter;
std::vector<Json::Value> invalidSRMJson;
SignalRequestMessage_t *message = (SignalRequestMessage_t *)calloc(1, sizeof(SignalRequestMessage_t));
auto invalidSRMmMessage = new tmx::messages::SrmMessage(message);
srmConverter.toSRMJsonV(invalidSRMJson, invalidSRMmMessage);
int expectedSrmSize = 0;
ASSERT_EQ(expectedSrmSize, invalidSRMJson.size());
}
}
|
[
"noreply@github.com"
] |
usdot-fhwa-OPS.noreply@github.com
|
dcbdc6e335ad10f0f1c15fcfd159d2e486cca070
|
27aef7d39558016993d76c3cbb8be1c6277e251b
|
/cpp/photo.h
|
6085cb9257bfc42222211bc8fec04d5853a4cf84
|
[] |
no_license
|
duan-yingjie/set-top_box
|
0e73cfa4c34754927f9b4e22a1e4dcc57817f346
|
7cbf456f1ccf3e242c696b8e0896314da6a98e75
|
refs/heads/main
| 2023-02-04T13:36:38.725006
| 2020-12-24T17:33:25
| 2020-12-24T17:33:25
| 324,205,857
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,520
|
h
|
#ifndef PHOTO_H
#define PHOTO_H
#include"multimedia.h"
class Photo:public Multimedia
{
/**
* @brief latitude-latitude of photo
* @brief longitude-longitude of photo
*/
double latitude;
double longitude;
public:
~Photo() override;
/**
* @brief getlatitude-get the latitude of photo
* @return -latitiude of photo
*/
double getlatitude();
/**
* @brief getlongitude-get longitude of photo
* @return -longitude of photo
*/
double getlongitude();
/**
* @brief setlatitude-set the latitude of photo
* @param in_latitude-the new latitude
*/
void setlatitude(double in_latitude);
/**
* @brief setlongitude-set the longitude of photo
* @param in_longitude- the new longitude
*/
void setlongitude(double in_longitude);
/**
* @brief play-play the photo
*/
void play() override;
/**
* @brief display- display the attribute of the photo
*/
void display() override;
/**
* @brief retattr- return the attribute of the photo
* @return - attribute of the photo
*/
string retattr() override;
protected:
Photo();
/**
* @brief Photo-constructor of photo.
* put in the protected so wo just can use admi to create it,can't new it.
*/
Photo(string in_name,string in_filename,double longitu,double latitu);
friend class Admi;
};
#endif // PHOTO_H
|
[
"532099692@qq.com"
] |
532099692@qq.com
|
b82753e844162264cdda9bd7bf0bb3239be8ccdb
|
f778e8152800dfe2f6ca3411e34054ab23d843d9
|
/ndn-fw-judge-tag.cc
|
c98b17f1caece232679445d8703236d4006c9ffe
|
[] |
no_license
|
projectsimtest/sim
|
4f29389be537dd357b19b0680f006d1ba759299a
|
73865a37765f144e1d9c091c33a7e5787946a19e
|
refs/heads/master
| 2020-12-24T19:37:06.991311
| 2016-04-23T03:26:22
| 2016-04-23T03:26:22
| 56,898,430
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 759
|
cc
|
/*
* ndn-fw-judge-tag.cc
*
* Created on: 2015年12月3日
* Author: zhuxd
*/
#include "ndn-fw-judge-tag.h"
namespace ns3 {
namespace ndn {
TypeId
FwJudgeTag::GetTypeId ()
{
static TypeId tid = TypeId("ns3::ndn::FwJudgeTag")
.SetParent<Tag>()
.AddConstructor<FwJudgeTag>()
;
return tid;
}
TypeId
FwJudgeTag::GetInstanceTypeId () const
{
return FwJudgeTag::GetTypeId ();
}
/**/
uint32_t
FwJudgeTag::GetSerializedSize () const
{
return sizeof(uint32_t);
}
/**/
void
FwJudgeTag::Serialize (TagBuffer i) const
{
i.WriteU32 (judgeTag);
}
void
FwJudgeTag::Deserialize (TagBuffer i)
{
judgeTag = i.ReadU32 ();
}
void
FwJudgeTag::Print (std::ostream &os) const
{
os << judgeTag;
}
} // namespace ndn
} // namespace ns3
|
[
"badboyaccount@163.com"
] |
badboyaccount@163.com
|
382f957b5bf40eb1bc8fbcb521dd6339aef2c879
|
47b08539e489322471a737e0fa908058c84db1b3
|
/endzone.cpp
|
057cdd7ba1c5f8ec573b4cbbc321aced9a988e88
|
[] |
no_license
|
LuSi2001/mapcreatortest
|
544cd599c9fdf900f6be8ce778308b2b67f5cff8
|
c77b8fb5fc0f9453ae09d616385342a952aee055
|
refs/heads/master
| 2023-02-13T06:01:07.364728
| 2021-01-15T13:09:09
| 2021-01-15T13:09:09
| 329,895,996
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,563
|
cpp
|
#include "endzone.h"
#include "velocityengine.h"
#include "ballcounthandler.h"
#include "QPainter"
#include <QTime>
EndZone::EndZone(CounterMode mode, Zone *parent) :
Zone(parent),
m_countermode(mode)
{
}
void EndZone::setCounterMode(CounterMode mode)
{
m_countermode = mode;
}
CounterMode EndZone::counterMode()
{
return m_countermode;
}
QRectF EndZone::boundingRect() const
{
return {-BALL_RADIUS, -BALL_RADIUS, BALL_RADIUS * 10, BALL_RADIUS * 3};
}
void EndZone::paint(QPainter *painter, const QStyleOptionGraphicsItem *, QWidget *)
{
painter->setPen(Qt::red);
QPainterPath path;
path.addRect(boundingRect());
painter->drawPath(path);
}
QPainterPath EndZone::shape() const
{
QPainterPath path;
path.addRect(boundingRect());
return path;
}
const QString EndZone::name() const
{
return "endZone";
}
void EndZone::handleCollision(Vec3 &m_velocity, Vec3 &m_accl, QTime &time)
{
PinballItem* ball = velo::VelocityEngine::inst().ball();
if(ball->pos().y() - y() <= 0.001)
{
ball->setPos(375, 425 - PLUNGER_PULL_LIMIT + 50 - 5);
if(m_countermode == COUNT_N_DISAPPEAR)
{
BallCountHandler::instance().increaseCount();
m_velocity = Vec3();
return;
}
}
qreal dt = qreal(time.elapsed()) * 0.001;
Vec3 oldVel = m_velocity;
m_velocity = m_velocity + dt * m_accl;
PinballItem* m_ball = velo::VelocityEngine::inst().ball();
m_ball->setPos(m_ball->pos() + v2q((oldVel + m_velocity) * 0.5 * dt * 100.0));
}
|
[
"luca.sievers@rheinmetall.com"
] |
luca.sievers@rheinmetall.com
|
677882db648a5ce806938f7883c8f90922d59848
|
3e4c8432ae6596af13f093c88dbd7d2fe4c6a11d
|
/libraries/RobotOpen/ROWebServer.cpp
|
18e1f22e062d00b5411616056d646c943b7964d0
|
[] |
no_license
|
team3408/RobotOpen-Sasquatch-Library
|
36b175f871a540903f20ef35f7015ae35e448747
|
f248999a8cd3cca17802e15ee2faa3afaf077be8
|
refs/heads/master
| 2020-12-30T22:55:30.017175
| 2014-12-01T04:35:37
| 2014-12-01T04:35:37
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,482
|
cpp
|
#include "RobotOpen.h"
// Initialize our http constants
const char *ROWebServer::http_open[7] = { "HTTP/1.1 200 OK\n",\
"Content-Type: text/html\n",
"Connection: close\n", "\n", \
"<!DOCTYPE HTML>\n",\
"<html>\n",\
"<meta http-equiv=\"refresh\" content=\"1\">\n"};
const char *ROWebServer::http_close = (char*)"</html>\n";
// clear our arrays and allocate
ROWebServer::ROWebServer() : server(80)
{
fields = new char*[NUM_FIELDS];
datas = new char*[NUM_FIELDS];
for(int i = 0; i < NUM_FIELDS; i++)
{
fields[i] = new char[FIELD_LEN];
datas[i] = new char[FIELD_LEN];
strcpy(fields[i], "");
strcpy(datas[i] , "");
}
}
ROWebServer::ROWebServer(int port) : server(port)
{
fields = new char*[NUM_FIELDS];
datas = new char*[NUM_FIELDS];
for(int i = 0; i < NUM_FIELDS; i++)
{
fields[i] = new char[FIELD_LEN];
datas[i] = new char[FIELD_LEN];
strcpy(fields[i], "");
strcpy(datas[i] , "");
}
}
// simple destructor
ROWebServer::~ROWebServer()
{
for(int i = 0; i < NUM_FIELDS; i++)
{
delete fields[i];
delete datas[i];
}
delete fields;
delete datas;
}
// Add field and data, returns 1 on filled array
int ROWebServer::add_field(const char *field, const char *data, byte line)
{
if(line < 23)
{
strcpy(fields[line], field);
strcpy(datas[line], data);
return 0;
}
return 1;
}
int ROWebServer::add_field(const char *label, int data, byte line)
{
char tmp[6];
sprintf(tmp, "%i", data);
return add_field(label, tmp, line);
}
int ROWebServer::add_field(const char *label, double data, byte line)
{
char tmp[10];
dtostrf(data, 4, 2, tmp);
return add_field(label, tmp, line);
}
void ROWebServer::begin_server()
{
server.begin();
}
void ROWebServer::webserver_loop()
{
static int run_count = 0;
static EthernetClient client;
if(((run_count++)%35) == 0)
{
client = server.available();
if(client)
{ // check if connected
Serial.print("client connected\n");
boolean line_blank = true; // keep track if http request is done
while(client.connected()) // another connect check for loop
{
char c = client.read();
Serial.print(c);
if(c == '\n' && line_blank) // blank newline, http request done
{
wdt_reset();
Serial.print("Request done, sending data\n");
// send top of html page
for(unsigned int i = 0; i < (sizeof(http_open)/sizeof(http_open[0])); i++)
{
client.print(http_open[i]);
wdt_reset();
}
Serial.print("Sent http head\n");
// send out our data
for(int i = 0; i < NUM_FIELDS; i++)
{
wdt_reset();
Serial.println(fields[i]);
Serial.println(datas[i]);
if((strlen(fields[i]) > 0 && strlen(fields[i]) < 128) && (strlen(datas[i]) > 0 && strlen(datas[i]) < 128))
{
client.print(fields[i]);
client.print(": ");
client.print(datas[i]);
client.print("</br>");
//client.print("\n");
wdt_reset();
}
}
Serial.print("Sent out data and fields\n");
// closing </html>
client.print(http_close);
Serial.print("Sent out http close\n");
break;
}
if(c == '\n') // Check if line is done
{
line_blank = true;
}
else if (c != '\r') // If not newline, not a blank line
{
line_blank = false;
}
wdt_reset();
}
client.stop(); //Disconnect from client
Serial.print("Disconnecting from client\n");
}
}
}
|
[
"tech2077@gmail.com"
] |
tech2077@gmail.com
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.