blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 3
264
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 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
sequencelengths 1
1
| author_id
stringlengths 0
158
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d9573583cf62a40e0bb865ef631701956de1e1c0 | 1a3787d444da7d93cb3226e44504e458b08e562d | /Day3(ValidPalindrome).cpp | 5baabc69ddda7717079ad932c538d61baf8de91b | [] | no_license | hsanghai20/LeetCodeAugustChallenge | 3646ab8fffba50f60914218e76b03489cf189d6e | 0ba37bad790dbd915fed0eea768c6821450ede0f | refs/heads/master | 2022-11-30T07:24:46.858364 | 2020-08-04T08:51:19 | 2020-08-04T08:51:19 | 284,209,453 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 495 | cpp | // Link: https://leetcode.com/problems/valid-palindrome/
// solution:
bool isPalindrome(string s) {
string str="";
for(int i=0;i<s.length();i++)
{
if(s[i]>='a' && s[i]<='z' || s[i]>='0' && s[i]<='9')
str+=s[i];
else if(s[i]>='A' && s[i]<='Z')
str+=tolower(s[i]);
}
string rev=str;
reverse(rev.begin(),rev.end());
if(rev==str)
return true;
return false;
} | [
"[email protected]"
] | |
8123285aeda00e8ec9d6a7f9df6b4b394b8e72ca | d3c37fd05a18babfc720cd2c98c4ce6f6f465f0a | /Recursion/prog5.cpp | 64368f48fd3bb9365921bef6b6d27b8afb6f4bea | [] | no_license | mallocash05/coding-ash | 686357af9fdeb73fe179c9b751fcaf8e7dc040b5 | b6cf5cf3c9167e53df011de7d5ed837ae6e72f13 | refs/heads/main | 2023-04-28T10:53:01.353396 | 2021-05-10T03:08:46 | 2021-05-10T03:08:46 | 361,511,484 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 661 | cpp | #include<bits/stdc++.h>
using namespace std;
void insert(stack<int>&stk,int elem)
{
if(stk.size()==0)
{
stk.push(elem);
return;
}
int x = stk.top();
stk.pop();
insert(stk,elem);
stk.push(x);
return;
}
void reverseStack(stack<int>&stk)
{
if(stk.size()==1)
return;
int temp = stk.top();
stk.pop();
reverseStack(stk);
insert(stk,temp);
return;
}
int main()
{
stack<int> stk;
stk.push(3);stk.push(5);stk.push(9);stk.push(4);stk.push(6);stk.push(-13);
reverseStack(stk);
cout<<"\n"<<"After Reverse: ";
while(!stk.empty())
{
cout<<stk.top()<<" ";
stk.pop();
}
return 0;
}
// 5 1
// 8 9
// 9 8
// 1 5
// 8 1
// 9 9
// 1 8 | [
"[email protected]"
] | |
0ee0d699a519dc7f9ff1c915af054bc732181d5a | fc8e2556848f1cc37690df551fe6923d214e9dec | /jcsf/banzi.h | c926f26fc6ac07f00980e3043603d763e13ba726 | [] | no_license | lyh666888/233 | ff5a3183cd45a105d07851317f43e3ae67784fa5 | 5f57e2d068af703ded41cad530cce8e4c1ce27c4 | refs/heads/master | 2022-12-23T12:18:44.589174 | 2020-04-22T03:52:01 | 2020-04-22T03:52:01 | 257,784,246 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 375 | h | #include<iostream>
#define maxn 1000001
class bcj
{
int fa[maxn];
int n;
void init()
{
for(int i=1;i<=n;i++)
{
fa[i]=i;
}
}
int find(int x)
{
if(x==fa[x]) return x;
else return fa[x]=find(fa[x]);
}
void merge(int x,int y)
{
int a=find(x),b=find(y);
fa[a]=b;
}
};
| [
"[email protected]"
] | |
27d0ddc3008bd074d6d2b6e9abbfdc9c7d16d9f1 | 84a19fe0b89bb19caa1641aeadc9623c1a181767 | /etc/indeednow_2015_qualb/d/d.cpp | d249c91193ee0454a4e50a3ab8644afde1372645 | [
"MIT"
] | permissive | wotsushi/competitive-programming | 75abae653cff744189c53ad7e6dbd2ca1a62e3a8 | 17ec8fd5e1c23aee626aee70b1c0da8d7f8b8c86 | refs/heads/master | 2021-06-10T06:42:40.846666 | 2021-05-31T10:32:51 | 2021-05-31T10:32:51 | 175,002,279 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 302 | cpp | #include "template.hpp"
int main() {
ll(N, C);
vll(a, N);
vvi X(C + 1);
rep(i, N) { X[a[i]].push_back(i); }
repi(i, C) {
ll l = 0;
ll ans = (N + 1) * N / 2;
X[i].push_back(N);
each(r, X[i]) {
ans -= (r - l + 1) * (r - l) / 2;
l = r + 1;
}
out(ans);
}
}
| [
"[email protected]"
] | |
7dfbe9d766bab53a2bea1715791b7ac69292fef0 | dcc3272aa1f6ef7cc6cace5097566e34e981fab1 | /Engine/elgar/graphics/data/Renderable.hpp | 2e2804bd63c0e5b4d133b204ae151888b1f3eb32 | [] | no_license | jkstpierre/Elgar-Game-Engine | 11edcf0cf61b39c78cb06f2c72318d878a884716 | 47f993e196f6c67c598801a1ac88d3e8c0197302 | refs/heads/master | 2020-04-10T03:07:23.017246 | 2019-03-03T15:19:16 | 2019-03-03T15:19:16 | 160,761,342 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,929 | hpp | /*
Elgar Game Engine
Author: Joseph St. Pierre
Year: 2018
*/
#ifndef _ELGAR_RENDERABLE_HPP_
#define _ELGAR_RENDERABLE_HPP_
// INCLUDES //
#include <glm/glm.hpp>
#include <vector>
#include "elgar/graphics/buffers/VertexArrayObject.hpp"
#include "elgar/graphics/buffers/BufferObject.hpp"
#include "elgar/graphics/data/RGBA.hpp"
#include "elgar/graphics/Shader.hpp"
namespace elgar {
/**
* @brief A Renderable is an abstract base class for encapsulating relevant functionality for
* all objects that get displayed by a Renderer.
*/
class Renderable {
protected:
VertexArrayObject m_vao; // The vertex array object
BufferObject m_vertex_buffer; // Vertex data buffer
BufferObject m_uv_buffer; // UV data buffer
BufferObject m_color_buffer; // Color data buffer
BufferObject m_element_buffer; // The element buffer
public:
/**
* @brief Construct a new Renderable object
*
*/
Renderable();
/**
* @brief Destroy the Renderable object
*
*/
virtual ~Renderable();
/**
* @brief Draw the renderable using a Shader program
*
* @param shader The shader program to render with
* @param color The color to render with
* @parma model_matrix The model matrix to render with
*/
virtual void Draw(
const Shader &shader,
const RGBA &color,
const glm::mat4 &model_matrix) const = 0;
/**
* @brief Draw the renderable using instanced rendering
*
* @param shader The shader program to use
* @param color The color to render with
* @param model_matrices The model matrices to use
*/
virtual void DrawInstanced(
const Shader &shader,
const RGBA &color,
const std::vector<glm::mat4> &model_matrices
) const = 0;
};
}
#endif | [
"[email protected]"
] | |
71427cee92dfc41ec489c20668630ac04331a0e7 | e2f0970da9e12b3b3d00b7b9d2eb8c60f0f68294 | /Elimination_Round_2/Editorials/Island_Queries1.cpp | cbaeb743c670e480015521683d9f859896a7fb33 | [
"MIT"
] | permissive | manojpandey/CodeSprint_India_2014 | c03d37ac1872a21ce32386b9aa656712e058d6e5 | 91ecfc9f565f20ae7517f556a0c414990a84e0d8 | refs/heads/master | 2021-01-23T14:04:24.747620 | 2014-11-03T15:02:28 | 2014-11-03T15:02:28 | 25,863,899 | 0 | 2 | MIT | 2021-06-22T19:20:46 | 2014-10-28T10:23:10 | C++ | UTF-8 | C++ | false | false | 1,288 | cpp | #include<bits/stdc++.h>
using namespace std;
#define LL long long int
#define sd(x) scanf("%d", &x)
#define MP make_pair
#define PB push_back
#define vi vector<int>
#define F first
#define S second
#define INF 2000000000
#define MOD 1000000007
#define D double
#define LD long double
#define N 512345
int p[N], pos[N];
int bit[N];
inline void update(int i, int v){
while(i < N){
bit[i] += v;
i += (i & (-i));
}
}
inline int query(int i){
int ret = 0;
while(i > 0){
ret += bit[i];
i -= (i & (-i));
}
return ret;
}
int main(){
int n, i, x, y, type, q;
sd(n); sd(q);
for(i = 1; i <= n; i++){
sd(p[i]);
pos[p[i]] = i;
}
p[0] = n + 1;
p[n + 1] = n + 1;
for(i = 1; i <= n + 1; i++){
update(max(p[i], p[i - 1]), 1);
}
while(q--){
sd(type);
if(type == 2){
sd(x);
printf("%d\n", x - query(x));
}
else{
sd(x); sd(y);
if(x == y){
continue;
}
x = pos[x];
y = pos[y];
update(max(p[x], p[x - 1]), -1);
update(max(p[x], p[x + 1]), -1);
update(max(p[y], p[y - 1]), -1);
update(max(p[y], p[y + 1]), -1);
swap(p[x], p[y]);
update(max(p[x], p[x - 1]), 1);
update(max(p[x], p[x + 1]), 1);
update(max(p[y], p[y - 1]), 1);
update(max(p[y], p[y + 1]), 1);
pos[p[x]] = x;
pos[p[y]] = y;
}
}
return 0;
}
| [
"[email protected]"
] | |
e742ce0aa7f1e2981eb0c286cd9c9126ee74666a | b865e323d6f13f1e7151f45dd5ffaaa2bac0ee90 | /poj/p1860/p1860.cc | 9bd3003fe185b4fe60bfcccada100ab63eefa91e | [] | no_license | jerryofouc/forStudy | 613f6b5bc78b2e23c537a0130616ac722412cd3c | 112a8a36212c2a80d539529bb6d00f38327df107 | refs/heads/master | 2021-01-25T04:02:52.608332 | 2014-06-14T11:56:04 | 2014-06-14T11:56:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,008 | cc | #include<iostream>
using namespace std;
struct Edge{
int start;
int end;
double rate;
double commission;
};
Edge edges[201];
int d[101];
double esp = 1e-8;
int main(){
int N,M,S;
double V;
cin>>N>>M>>S>>V;
for(int i=0;i<2*M;){
int start,end;
cin>>start>>end;
edges[i].start = start;
edges[i].end = end;
cin>>edges[i].rate;
cin>>edges[i].commission;
i++;
edges[i].start = end;
edges[i].end = start;
cin>>edges[i].rate;
cin>>edges[i].commission;
i++;
}
for(int i=1;i<=N;i++){
d[i] = 0;
}
d[S] = V;
while(d[S]<= V+esp){
bool flag = true;
for(int k=0;k<2*M;k++){
if(d[edges[k].end]+esp<(d[edges[k].start]-edges[k].commission)*edges[k].rate){
d[edges[k].end] = (d[edges[k].start]-edges[k].commission)*edges[k].rate;
flag = false;
}
}
if(flag){
if(d[S]<=V+esp){
cout << "NO"<<endl;
}else{
cout << "YES"<<endl;
}
return 0;
}
}
if(d[S]<=V+esp){
cout << "NO"<<endl;
}else{
cout << "YES"<<endl;
}
return 0;
}
| [
"[email protected]"
] | |
fa199fbc7e1edca71b57dec7733cc5eff385becd | 0d9ae487950ee528c06a24113f207707f364df35 | /Lesson4HomeWorkLocal.cpp | ef71dacb94eb7dfde434ccfee064c84e4cbf59c5 | [] | no_license | f0rmat4/Lesson4HomeWorkLocal | 7ed41fad6e564c35b20d9faf2022630276c5ca6b | 9b695d9559c05aa86ffe2f0ffc65f9f97a0c5a0e | refs/heads/master | 2023-03-02T04:22:46.939412 | 2021-02-12T22:53:02 | 2021-02-12T22:53:02 | 336,904,800 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,232 | cpp | #include <iostream>
#include <cmath>
#include <Windows.h>
using namespace std;
int main(int argc, const char* argv[]) {
/*double Task1();
double a, b;
double sum = a + b;
cout << "Enter number" << endl;
cin >> a >> b;
if ((sum >= 10) && (sum <= 20)) {
cout << true << endl;
}*/
/*bool Task2();
cout << "Enter number" << endl;
int n;
int x = 2;
cin >> n;
while (x / x <= n) {
if (n % x == 0){
cout << "Natural number" << endl;
break;
}
cout << "NOT Natural number" << endl;
break;
}
*/
//Написать программу, выводящую на экран “истину”, если две целочисленные константы, объявленные в её начале либо равны десяти сами по себе, либо их сумма равна десяти.
int num1;
int num2;
cin >> num1 >> num2;
int sum = num1 + num2;
do {
if (num1 == 10) {
cout << true << endl;
break;
}else
continue;
if (num2 == 10) {
cout << true << endl;
break;
}else
continue;
if (sum == 10) {
cout << true << endl;
break;
}else
cout << false << endl;
break;
} while (false);
} | [
"[email protected]"
] | |
7bab428ae2de739fa2cf92a5df3b3ea4a932ad58 | 9ecf6a678a0a21fdc0a2cfed3e421cf64fe6f52b | /main_analysis.cpp | 534a0d0bf3bff465e6470572056343d10a12f7c7 | [] | no_license | riccardomarabini/lab_root | 4c4f6b35774f3a5ec029db7ab3e2a8427fc9da96 | f7211767de774c960d70e9ed876b03b33dd9f5ab | refs/heads/main | 2023-09-05T13:38:06.543181 | 2021-10-29T14:28:59 | 2021-10-29T14:28:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 376 | cpp | #include "TH1F.h"
#include "TFile.h"
#include "TMath.h"
#include <iostream>
void analysis()
{
// analysing histo of types
TFile *particleRootFile_ = new TFile("particleRootFile.root");
TH1F *hParType_ = (TH1F *)particleRootFile_->Get("hParType");
hParType_->Draw();
// fitting angular histos
TH1F *hPhi = (TH1F *)particleRootFile_->Get("hPhi");
}
| [
"[email protected]"
] | |
510c2be4d979f3f6a72eb107ca6744a52b37e8dc | 7d3cd89be65cb65572f7e2951faa693fa5db2fac | /kernel/pci/pci.cpp | 60def824b6e1665d33b5454fb8824aa084ca3446 | [] | no_license | 3to5thpower/my-mikan-os | a1897e60d24aa1f7fbd5e588d4315c30d799c285 | 0e7c257d906d9f2571480e51efe67763077b618b | refs/heads/master | 2023-04-19T19:51:46.015195 | 2021-05-05T20:28:17 | 2021-05-05T20:28:17 | 363,453,548 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,479 | cpp | #include "pci.hpp"
#include "asmfunc.h"
namespace {
using namespace pci;
Error ScanBus(uint8_t bus);
/** @brief devices[num_devices]に情報を書き込み、
* num_devicesをインクリメントする
*/
Error AddDevice(const Device& device) {
if (num_device == devices.size()) {
return MAKE_ERROR(Error::kFull);
}
devices[num_device] = device;
++num_device;
return MAKE_ERROR(Error::kSuccess);
}
/** @brief 指定のファンクションをdevicesに追加する
* もしPCI-PCIブリッジならセカンダリパスに対してScanBusを実行する
*/
Error ScanFunction(uint8_t bus, uint8_t device, uint8_t function) {
auto class_code = ReadClassCode(bus, device, function);
auto header_type = ReadHeaderType(bus, device, function);
Device dev{bus, device, function, header_type, class_code};
if (auto err = AddDevice(dev)) {
return err;
}
if (class_code.Match(0x06u, 0x04u)) {
// standard PCI-PCI bridge
auto bus_numbers = ReadBusNumbers(bus, device, function);
uint8_t secondary_bus = (bus_numbers >> 8) & 0xffu;
return ScanBus(secondary_bus);
}
return MAKE_ERROR(Error::kSuccess);
}
/** @brief 指定のデバイス番号の各ファンクションをスキャンする
* 有効なファンクションを見つけたらScanFunctionを実行する
*/
Error ScanDevice(uint8_t bus, uint8_t device) {
if (auto err = ScanFunction(bus, device, 0)) {
return err;
}
if (IsSingleFunctionDevice(ReadHeaderType(bus, device, 0))) {
return MAKE_ERROR(Error::kSuccess);
}
for (uint8_t function = 1; function < 8; ++function) {
if (ReadVendorId(bus, device, function)) {
continue;
}
if (auto err = ScanFunction(bus, device, function)) {
return err;
}
}
return MAKE_ERROR(Error::kSuccess);
}
/** @brief 指定のバス番号の各デバイスをスキャンする
* 有効なデバイスを見つけたらScanDeviceを実行する
*/
Error ScanBus(uint8_t bus) {
for (uint8_t device = 0; device < 32; ++device) {
if (ReadVendorId(bus, device, 0) == 0xffffu) {
continue;
}
if (auto err = ScanDevice(bus, device)) {
return err;
}
}
return MAKE_ERROR(Error::kSuccess);
}
/** @brief CONFIG_ADDRESS用の32ビット整数を生成する */
uint32_t MakeAddress(uint8_t bus, uint8_t device, uint8_t function,
uint8_t reg_addr) {
auto shl = [](uint32_t x, unsigned int bits) { return x << bits; };
return shl(1, 31) // enable bit
| shl(bus, 16) | shl(device, 11) | shl(function, 8) |
(reg_addr & 0xfcu);
}
} // namespace
namespace pci {
void WriteAddress(uint32_t address) { IoOut32(kConfigAddress, address); }
void WriteData(uint32_t value) { IoOut32(kConfigData, value); }
uint32_t ReadData() { return IoIn32(kConfigData); };
uint16_t ReadVendorId(uint8_t bus, uint8_t device, uint8_t function) {
// ベンダIDはコンフィギュレーション空間の先頭
WriteAddress(MakeAddress(bus, device, function, 0x00));
return ReadData() & 0xffffu;
}
uint16_t ReadDeviceId(uint8_t bus, uint8_t device, uint8_t function) {
WriteAddress(MakeAddress(bus, device, function, 0x00));
return ReadData() >> 16;
}
uint8_t ReadHeaderType(uint8_t bus, uint8_t device, uint8_t function) {
WriteAddress(MakeAddress(bus, device, function, 0x0c));
return (ReadData() >> 16) & 0xffu;
}
ClassCode ReadClassCode(uint8_t bus, uint8_t device, uint8_t function) {
WriteAddress(MakeAddress(bus, device, function, 0x08));
auto reg = ReadData();
ClassCode cc;
cc.base = (reg >> 24) & 0xffu;
cc.sub = (reg >> 16) & 0xffu;
cc.interface = (reg >> 8) & 0xffu;
return cc;
}
uint32_t ReadBusNumbers(uint8_t bus, uint8_t device, uint8_t function) {
WriteAddress(MakeAddress(bus, device, function, 0x18));
return ReadData();
}
bool IsSingleFunctionDevice(uint8_t header_type) {
return (header_type & 0x80u) == 0;
}
Error ScanAllBus() {
num_device = 0;
auto header_type = ReadHeaderType(0, 0, 0);
if (IsSingleFunctionDevice(header_type)) {
return ScanBus(0);
}
for (uint8_t function = 1; function < 8; ++function) {
if (ReadVendorId(0, 0, function) == 0xffffu) {
continue;
}
if (auto err = ScanBus(function)) {
return err;
}
}
return MAKE_ERROR(Error::kSuccess);
}
uint32_t ReadConfReg(const Device& dev, uint8_t reg_addr) {
WriteAddress(MakeAddress(dev.bus, dev.device, dev.function, reg_addr));
return ReadData();
}
void WriteConfReg(const Device& dev, uint8_t reg_addr, uint32_t value) {
WriteAddress(MakeAddress(dev.bus, dev.device, dev.function, reg_addr));
WriteData(value);
}
WithError<uint64_t> ReadBar(Device& device, unsigned int bar_index) {
if (bar_index >= 6) {
return {0, MAKE_ERROR(Error::kIndexOutOfRange)};
}
const auto addr = CalcBarAddress(bar_index);
const auto bar = ReadConfReg(device, addr);
if ((bar & 4u) == 0) {
return {bar, MAKE_ERROR(Error::kSuccess)};
}
if (bar_index >= 5) {
return {0, MAKE_ERROR(Error::kIndexOutOfRange)};
}
const auto bar_upper = ReadConfReg(device, addr + 4);
return {bar | (static_cast<uint64_t>(bar_upper) << 32),
MAKE_ERROR(Error::kSuccess)};
}
} // namespace pci | [
"[email protected]"
] | |
ec92510f2712db124f9ad73ad2dbeb420352086b | 74a31a9666df200ab18c44566f2227d031823b23 | /myst0189g/Classes/game/ScoringSystem.h | 1fa6ffc3906fca4cf519ce2bbf5289fd70984d57 | [] | no_license | Crasader/Demo_Earlier_CC | 448f3447fc3fb237c2346069bf2344f44bd552db | 320c57f91b7d6603a6293b65a6702f76b1e035ba | refs/heads/master | 2020-12-04T12:24:47.254647 | 2018-05-31T02:51:24 | 2018-05-31T02:51:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,615 | h | //
// ScoringSystem.h
// proj.ios
//
// Created by Steven.Xc.Tian on 13-6-14.
//
//
#ifndef __proj_ios__ScoringSystem__
#define __proj_ios__ScoringSystem__
#include "../AppGlobal.h"
class ScoringSystem : public cocos2d::CCObject
{
// and the final score of current level
int finalScore;
// game limited time
int lifetime;
// hint recharge time
float rechargeTime;
public:
ScoringSystem();
~ScoringSystem();
static ScoringSystem* create();
/**
* @brief calculate hit bonus
*
* @param hit times
*/
void hitBonus(int times);
/**
* @brief calculate skill bonus
*/
void skillBonus();
/**
* @brief calculate time bonus
*/
void timeBonus();
/**
* @brief get the rest time of current level
*/
int getLifeTime();
std::string getLifeTimeString();
/**
* @brief get the final score of current level
*/
int getFinalScore();
std::string getFinalScoreString();
/**
* @brief count down game lifetime
*
* @return false if game time is NOT run out, true means time up, game over.
*/
bool updateLifetime();
/**
* @brief get hint recharge time
*
* @return when time less than 0, disable hint function.
*/
float getRechargeTime();
private:
// in Blitz mode, user player level number
unsigned playedNumber;
// to restart game in Blitz mode, we need save data when level is started
unsigned preLevelIndex;
};
#endif /* defined(__proj_ios__ScoringSystem__) */
| [
"[email protected]"
] | |
4afed620e049169bea8fa2730a21ba7973ea3936 | 230a3023f92075e60c58a4d2aff7ffa8845ea367 | /shaderClass.h | ebacad22e5b4b84470f28ade86afcae54cc22145 | [] | no_license | Nyuu-s/OpenGl_base | 66cb0182785109ec96b4a44a281243846b98ae09 | 3caabf024a2e87c459da8d1e1a0bf8c119572ef2 | refs/heads/master | 2023-07-01T23:02:21.822976 | 2021-08-09T17:57:25 | 2021-08-09T17:57:25 | 389,968,559 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 600 | h | #ifndef SHADER_CLASS_H
#define SHADER_CLASS_H
#include<glad/glad.h>
#include<string>
#include<fstream>
#include<sstream>
#include<iostream>
#include<cerrno>
std::string get_file_contents(const char* filename);
class Shader
{
public:
// Reference ID of the Shader Program
GLuint ID;
// Constructor that build the Shader Program from 2 different shaders
Shader(const char* vertexFile, const char* fragmentFile);
// Activates the Shader Program
void Activate();
// Deletes the Shader Program
void Delete();
private:
void compileErrors(unsigned int shader, const char* type);
};
#endif | [
"edgar@DESKTOP-69TJ7NA"
] | edgar@DESKTOP-69TJ7NA |
45a32ab810ff0f803b50491b2cddd5fea57737e9 | 2728b551ea11cf5de3e793099e02d43d76e72e7b | /3rd/boost_headers/boost/spirit/home/x3/version.hpp | 799e152e1d4618d29d10d9b0ee102ac718307a0f | [] | no_license | Robien/acharn | 0d38317bd1eb40b61f18089288ad6a029105732d | e4b9c657a52edbd08962fe0df890c98c27d8b383 | refs/heads/master | 2021-01-10T18:42:38.169223 | 2020-04-08T05:48:19 | 2020-04-08T05:48:19 | 39,433,207 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 769 | hpp | /*=============================================================================
Copyright (c) 2001-2011 Joel de Guzman
Copyright (c) 2001-2011 Hartmut Kaiser
http://spirit.sourceforge.net/
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_SPIRIT_X3_VERSION_HPP
#define BOOST_SPIRIT_X3_VERSION_HPP
///////////////////////////////////////////////////////////////////////////////
//
// This is the version of the current Spirit X3 distribution
//
///////////////////////////////////////////////////////////////////////////////
#define SPIRIT_X3_VERSION 0x3005
#endif
| [
"[email protected]"
] | |
b22bf5e31e63d71806703fd47ebf80adc6083bcc | ef2588ffc23695239fa9c30458e397a47e776f3f | /keysettingsdialog.cpp | c3ed86be29b15055b694280ef0cdc9cf3ed0de5c | [] | no_license | dennn66/bb_qt_client | b67dbc5c4d89c4720cfb573cabc384cdaadc4293 | 38fa14a051e0ba9e4603123e03989865b1583a4d | refs/heads/master | 2018-11-01T22:53:15.481799 | 2017-10-03T11:47:37 | 2017-10-03T11:47:37 | 104,205,416 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,302 | cpp | #include "keysettingsdialog.h"
KeySettingsDialog::KeySettingsDialog(KeyCondition* con, L2Window* l2w, int tool, QWidget *parent) :
QDialog(parent),
ui(new Ui::KeySettingsDialog)
{
ui->setupUi(this);
QDoubleValidator *vd = new QDoubleValidator();
QIntValidator * vi = new QIntValidator();
condition = con;
QString value;
QTextStream out(&value);
currentl2w = l2w;
toolNumber = tool;
controlf[idCoolDown ] = ui->leCoolDown;
controlf[idPause ] = ui->lePause;
controlf[idCondition ] = ui->leCondition;
controlf[idSkillPause ] = ui->leSkillPause;
controli[idMinCP ] = ui->leCPMin;
controli[idMinHP ] = ui->leHPMin;
controli[idMinMP ] = ui->leMPMin;
controli[idMinVP ] = ui->leVPMin;
controli[idMinMobHP ] = ui->leMobHPMin;
controli[idMinMobMP ] = ui->leMobMPMin;
controli[idMinPet1HP ] = ui->lePet1HPMin;
controli[idMinPet2HP ] = ui->lePet2HPMin;
controli[idMaxCP ] = ui->leCPMax;
controli[idMaxHP ] = ui->leHPMax;
controli[idMaxMP ] = ui->leMPMax;
controli[idMaxVP ] = ui->leVPMax;
controli[idMaxMobHP ] = ui->leMobHPMax;
controli[idMaxMobMP ] = ui->leMobMPMax;
controli[idMaxPet1HP ] = ui->lePet1HPMax;
controli[idMaxPet2HP ] = ui->lePet2HPMax;
controlb[idCheckSkillTimeout] = ui->cbCheckSkill;
controlb[idCheckPet ] = ui->cbCheckPet;
controlb[idPetState ] = ui->cbPetState;
controlb[idCtrl ] = ui->cbCtrl;
controlb[idShift ] = ui->cbShift;
for(int i = 0; i<KEY_DB_SIZE; i++){
ui->cbKeyMnemonic->addItem(condition->getKeyMnemonicDB(i));
if(strcmp(condition->getKeyMnemonicDB(i), condition->getKeyString().toStdString().c_str()) == 0){
ui->cbKeyMnemonic->setCurrentIndex(i);
}
}
controlb[idCheckSkillTimeout]->setChecked (condition->getConditionB(idCheckSkillTimeout));
controlb[idCheckPet]->setChecked (condition->getConditionB(idCheckPet));
controlb[idPetState]->setChecked (condition->getConditionB(idPetState));
controlb[idPetState]->setEnabled(condition->getConditionB(idCheckPet));
controlb[idCtrl]->setChecked (condition->getConditionB(idCtrl));
controlb[idShift]->setChecked (condition->getConditionB(idShift));
connect(ui->cbKeyMnemonic, SIGNAL(activated(int)), SLOT(cbKeyMnemonicActivated(int)));
connect(ui->pbReload, SIGNAL(clicked()), SLOT(pbReloadClicked()));
if(!currentl2w->getSkillbar()->getSkillImg(toolNumber)->isNull()) ui->tool_label->setPixmap(QPixmap::fromImage(*currentl2w->getSkillbar()->getSkillImg(toolNumber)));
for(int i = idCoolDown; i<CONDFNUM; i++){
value = "";
controlf[i]->setValidator(vd);
connect(controlf[i], SIGNAL(textChanged(QString)), SLOT(textFChanged(QString)));
out << condition->getConditionF(i);
controlf[i]->setText(value);
}
ui->leMPMin->setValidator(vi);
for(int i = idMinCP; i <= idMaxPet2HP; i++){
value = "";
controli[i]->setValidator(vi);
connect(controli[i], SIGNAL(textChanged(QString)), SLOT(textIChanged(QString)));
if( condition->getConditionI(i)<=100){
out << condition->getConditionI( i);
}
controli[i]->setText(value);
}
QGridLayout *layout_2 = new QGridLayout;
QString key_label = "B";
QTextStream key_label_stream(&key_label);
for(int i=0;i<GROUPSNUM;i++)
{
int j=0;
key_label = "B";
key_label_stream << i+1;
QGridLayout *sell = new QGridLayout;
controlb[idGroupB1+i] = new QCheckBox(key_label.toStdString().c_str());
sell->addWidget(controlb[idGroupB1+i],0, 0);
controlb[idGroupB1+i]->setChecked (condition->getGroupState(i));
layout_2->addLayout(sell,i, j);
}
ui->chkbox_widget_2->setLayout(layout_2);
QGridLayout *layout_3 = new QGridLayout;
for(int i=0;i<TokensNum;i++)
{
int j=0;
key_label = condition->conditionb_name[idCheckToken+i];
QGridLayout *sell = new QGridLayout;
controlb[idCheckToken+i] = new QCheckBox(key_label.toStdString().c_str());
sell->addWidget(controlb[idCheckToken+i],0, 0);
controlb[idCheckToken+i]->setChecked (condition->getGroupState(i));
controlb[idCheckToken+i]->setChecked (condition->getConditionB(idCheckToken+i));
layout_3->addLayout(sell,i, j);
j=1;
key_label = condition->conditionb_name[idTokenCondition+i];
QGridLayout *sell2 = new QGridLayout;
controlb[idTokenCondition+i] = new QCheckBox(key_label.toStdString().c_str());
sell2->addWidget(controlb[idTokenCondition+i],0, 0);
controlb[idTokenCondition+i]->setChecked (condition->getConditionB(idTokenCondition+i));
controlb[idTokenCondition+i]->setEnabled (condition->getConditionB(idCheckToken+i));
layout_3->addLayout(sell2,i, j);
}
ui->chkbox_widget_3->setLayout(layout_3);
lstAllSkills = new QListWidget(this);
lstAllSkills->resize( 4 + 32*12 + 6*(12-1) + 8, 2 + 32*3 + 5*(3 - 1) + 6);
lstAllSkills->move(this->width() - lstAllSkills->width() - 5, this->height() - lstAllSkills->height() - 5);
lstAllSkills->setIconSize( QSize( 32, 32 ) );
lstAllSkills->setViewMode( QListWidget::IconMode );
lstAllSkills->setSelectionMode(QAbstractItemView::SingleSelection);
lstAllSkills->setDragEnabled(false);
lstAllSkills->setDragDropMode(QAbstractItemView::NoDragDrop);
lstAllSkills->viewport()->setAcceptDrops(false);
lstAllSkills->setDropIndicatorShown(false);
lstAllSkills->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
lstAllSkills->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
for(int i = 0; i < idNoUseSkillNum; i ++){
listNoUseSkill[i] = new QListWidgetItem;
QString label;
QTextStream label_stream(&label);
label_stream << i+1;
if(!currentl2w->getSkillbar()->getSkillImg(toolNumber)->isNull()) listNoUseSkill[i]->setIcon( QPixmap::fromImage(*currentl2w->getSkillbar()->getSkillImg(i)) );
if( condition->getConditionI(idPauseSkillNum) == i){
listNoUseSkill[i]->setFlags( Qt::ItemIsEnabled);
} else {
listNoUseSkill[i]->setFlags( Qt::NoItemFlags);
}
lstAllSkills->addItem(listNoUseSkill[i]);
}
lstAllSkills->show();
connect(lstAllSkills, SIGNAL(itemClicked(QListWidgetItem*)), SLOT(itemChanged(QListWidgetItem*)));
QGridLayout *layout_4 = new QGridLayout;
for(int i=0;i<4;i++)
{
for(int j=0;j<1;j++)
{
//int j=0;
key_label = condition->conditionb_name[idTargetMeOrPet+i+j*2];
QGridLayout *sell = new QGridLayout;
controlb[idTargetMeOrPet+i+j*2] = new QCheckBox(key_label.toStdString().c_str());
sell->addWidget(controlb[idTargetMeOrPet+i+j*2],0, 0);
controlb[idTargetMeOrPet+i+j*2]->setChecked (condition->getConditionB(idTargetMeOrPet+i+j*2));
layout_4->addLayout(sell,i, j);
}
}
ui->gbTargetType->setLayout(layout_4);
for(int i=0;i<CONDBNUM;i++){
if((i != idCheckStar) && (i != idStarCondition)) connect(controlb[i], SIGNAL(clicked(bool)), SLOT(cbKeyEnableBxClicked(bool)));
}
}
KeySettingsDialog::~KeySettingsDialog()
{
delete ui;
}
void KeySettingsDialog::itemChanged(QListWidgetItem* item){
int index = -1;
for(index=0; index < idNoUseSkillNum; index++){
if(listNoUseSkill[index] == item) break;
}
if(index != -1 && (index != toolNumber)) {
if(listNoUseSkill[index]->flags() == Qt::ItemIsEnabled){
listNoUseSkill[index]->setFlags( Qt::NoItemFlags);
condition->setConditionI(idPauseSkillNum, 0xFF);
} else {
if(condition->getConditionI(idPauseSkillNum) < idNoUseSkillNum) listNoUseSkill[condition->getConditionI(idPauseSkillNum)]->setFlags( Qt::NoItemFlags);
listNoUseSkill[index]->setFlags( Qt::ItemIsEnabled);
condition->setConditionI(idPauseSkillNum, index);
}
//condition->setConditionB(idNoUseSkillState+index, (listNoUseSkill[index]->flags() == Qt::ItemIsEnabled));
}
}
void KeySettingsDialog::cbKeyEnableBxClicked(bool checked){
qDebug("KeySettingsDialog::cbKeyEnableBxClicked(bool checked): %d", checked);
QCheckBox* cb = dynamic_cast<QCheckBox*>(QObject::sender());
if( cb != NULL )
{
int i = 0;
while( (i < CONDBNUM) && controlb[i] != cb){i++;}
if(i<CONDBNUM){
condition->setConditionB(i, checked);
if((i>=idCheckToken)&&(i<idCheckToken+4)) controlb[i+TokensNum]->setEnabled (checked);
controlb[idPetState]->setEnabled(condition->getConditionB(idCheckPet));
}
}
}
void KeySettingsDialog::textFChanged(QString text)
{
QLineEdit* le = dynamic_cast<QLineEdit*>(QObject::sender());
int i = idCoolDown;
while( (i< CONDFNUM) && controlf[i] != le){i++;}
if(i<CONDFNUM){
condition->setConditionF(i, atof(text.toStdString().c_str()));
}
}
void KeySettingsDialog::textIChanged(QString text)
{
QLineEdit* le = dynamic_cast<QLineEdit*>(QObject::sender());
int i = idMinCP;
qDebug("%s",text.toStdString().c_str() );
while( (i <= idMaxPet2HP) && controli[i] != le){i++;}
if(i <= idMaxPet2HP){
if(text == "") {
condition->setConditionI( i, 0xFF);
} else {
condition->setConditionI( i, atoi(text.toStdString().c_str()));
if( condition->getConditionI( i)>100){
condition->setConditionI( i, 0xFF);
}
}
}
}
void KeySettingsDialog::pbReloadClicked(){
qDebug("void KeySettingsDialog::pbReloadClicked()");
currentl2w->setSkillImg(toolNumber);
if(!currentl2w->getSkillbar()->getSkillImg(toolNumber)->isNull()) ui->tool_label->setPixmap(QPixmap::fromImage(*currentl2w->getSkillbar()->getSkillImg(toolNumber)));
}
void KeySettingsDialog::cbKeyMnemonicActivated(int index)
{
condition->selectKey(index);
}
| [
"[email protected]"
] | |
0cde3a6096e635585678b8a32c370ee8fd12eb55 | df3b0cd2099cb303c53914b6a67b7995af23cda9 | /RVO/rvo_ros/src/KdTree.cpp | 83200049b51a7169f3e564fc1cd5d0ef8fe46d71 | [] | no_license | idombanker/samples | de5e2b777e55f139212d4a428f5d25de153b18de | 996f4a1b33ab1fa709a068a2e0350f49d14286ed | refs/heads/master | 2021-05-31T15:02:03.760791 | 2016-04-11T07:18:20 | 2016-04-11T07:18:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,082 | cpp | /*
* KdTree.cpp
* RVO2 Library
*
* Copyright (c) 2008-2010 University of North Carolina at Chapel Hill.
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for educational, research, and non-profit purposes, without
* fee, and without a written agreement is hereby granted, provided that the
* above copyright notice, this paragraph, and the following four paragraphs
* appear in all copies.
*
* Permission to incorporate this software into commercial products may be
* obtained by contacting the Office of Technology Development at the University
* of North Carolina at Chapel Hill <[email protected]>.
*
* This software program and documentation are copyrighted by the University of
* North Carolina at Chapel Hill. The software program and documentation are
* supplied "as is," without any accompanying services from the University of
* North Carolina at Chapel Hill or the authors. The University of North
* Carolina at Chapel Hill and the authors do not warrant that the operation of
* the program will be uninterrupted or error-free. The end-user understands
* that the program was developed for research purposes and is advised not to
* rely exclusively on the program for any reason.
*
* IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL OR THE
* AUTHORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
* CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS
* SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF NORTH CAROLINA AT
* CHAPEL HILL OR THE AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*
* THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL AND THE AUTHORS SPECIFICALLY
* DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND ANY
* STATUTORY WARRANTY OF NON-INFRINGEMENT. THE SOFTWARE PROVIDED HEREUNDER IS ON
* AN "AS IS" BASIS, AND THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL AND THE
* AUTHORS HAVE NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
* ENHANCEMENTS, OR MODIFICATIONS.
*
* Please send all bug reports to <[email protected]>.
*
* The authors may be contacted via:
*
* Jur van den Berg, Stephen J. Guy, Jamie Snape, Ming C. Lin, Dinesh Manocha
* Dept. of Computer Science
* 201 S. Columbia St.
* Frederick P. Brooks, Jr. Computer Science Bldg.
* Chapel Hill, N.C. 27599-3175
* United States of America
*
* <http://gamma.cs.unc.edu/RVO2/>
*/
#include "KdTree.h"
#include "Agent.h"
#include "RVOSimulator.h"
#include "Obstacle.h"
#include <iostream>
namespace RVO {
KdTree::KdTree(RVOSimulator *sim) : obstacleTree_(NULL), sim_(sim) { }
KdTree::~KdTree()
{
deleteObstacleTree(obstacleTree_);
}
void KdTree::buildAgentTree()
{
// HACK: force rebuild
// std::cout << "[KdTree] buildAgentTree started." << std::endl;
agents_.clear();
agentTree_.clear();
// std::cout << "[KdTree] buildAgentTree cleared." << std::endl;
// if (agents_.size() < sim_->agents_.size()) {
// for (size_t i = agents_.size(); i < sim_->agents_.size(); ++i) {
// agents_.push_back(sim_->agents_[i]);
// }
// agentTree_.resize(2 * agents_.size() - 1);
// }
for (std::map<size_t, Agent*>::const_iterator it = sim_->agents_.begin(); it != sim_->agents_.end(); ++it){
agents_.push_back(it->second);
}
// std::cout << "[KdTree] buildAgentTree agents_ looped." << std::endl;
if (!agents_.empty()) {
agentTree_.resize(2 * agents_.size() - 1);
// std::cout << "[KdTree] buildAgentTree resized." << std::endl;
buildAgentTreeRecursive(0, agents_.size(), 0);
}
// std::cout << "[KdTree] buildAgentTree done." << std::endl;
}
void KdTree::buildAgentTreeRecursive(size_t begin, size_t end, size_t node)
{
// std::cout << "[KdTree] buildAgentTreeRecursive started." << std::endl;
agentTree_[node].begin = begin;
agentTree_[node].end = end;
// std::cout << "[KdTree] buildAgentTreeRecursive begin:" << begin << " agents_.size(): " << agents_.size() << std::endl;
agentTree_[node].minX = agentTree_[node].maxX = agents_[begin]->position_.x();
agentTree_[node].minY = agentTree_[node].maxY = agents_[begin]->position_.y();
// std::cout << "[KdTree] buildAgentTreeRecursive init done." << std::endl;
for (size_t i = begin + 1; i < end; ++i) {
agentTree_[node].maxX = std::max(agentTree_[node].maxX, agents_[i]->position_.x());
agentTree_[node].minX = std::min(agentTree_[node].minX, agents_[i]->position_.x());
agentTree_[node].maxY = std::max(agentTree_[node].maxY, agents_[i]->position_.y());
agentTree_[node].minY = std::min(agentTree_[node].minY, agents_[i]->position_.y());
}
// std::cout << "[KdTree] buildAgentTreeRecursive max min done." << std::endl;
if (end - begin > MAX_LEAF_SIZE) {
/* No leaf node. */
const bool isVertical = (agentTree_[node].maxX - agentTree_[node].minX > agentTree_[node].maxY - agentTree_[node].minY);
const float splitValue = (isVertical ? 0.5f * (agentTree_[node].maxX + agentTree_[node].minX) : 0.5f * (agentTree_[node].maxY + agentTree_[node].minY));
size_t left = begin;
size_t right = end;
while (left < right) {
while (left < right && (isVertical ? agents_[left]->position_.x() : agents_[left]->position_.y()) < splitValue) {
++left;
}
while (right > left && (isVertical ? agents_[right - 1]->position_.x() : agents_[right - 1]->position_.y()) >= splitValue) {
--right;
}
if (left < right) {
std::swap(agents_[left], agents_[right - 1]);
++left;
--right;
}
}
if (left == begin) {
++left;
++right;
}
agentTree_[node].left = node + 1;
agentTree_[node].right = node + 2 * (left - begin);
buildAgentTreeRecursive(begin, left, agentTree_[node].left);
buildAgentTreeRecursive(left, end, agentTree_[node].right);
}
}
void KdTree::buildObstacleTree()
{
deleteObstacleTree(obstacleTree_);
std::vector<Obstacle *> obstacles(sim_->obstacles_.size());
for (size_t i = 0; i < sim_->obstacles_.size(); ++i) {
obstacles[i] = sim_->obstacles_[i];
}
obstacleTree_ = buildObstacleTreeRecursive(obstacles);
}
KdTree::ObstacleTreeNode *KdTree::buildObstacleTreeRecursive(const std::vector<Obstacle *> &obstacles)
{
if (obstacles.empty()) {
return NULL;
}
else {
ObstacleTreeNode *const node = new ObstacleTreeNode;
size_t optimalSplit = 0;
size_t minLeft = obstacles.size();
size_t minRight = obstacles.size();
for (size_t i = 0; i < obstacles.size(); ++i) {
size_t leftSize = 0;
size_t rightSize = 0;
const Obstacle *const obstacleI1 = obstacles[i];
const Obstacle *const obstacleI2 = obstacleI1->nextObstacle_;
/* Compute optimal split node. */
for (size_t j = 0; j < obstacles.size(); ++j) {
if (i == j) {
continue;
}
const Obstacle *const obstacleJ1 = obstacles[j];
const Obstacle *const obstacleJ2 = obstacleJ1->nextObstacle_;
const float j1LeftOfI = leftOf(obstacleI1->point_, obstacleI2->point_, obstacleJ1->point_);
const float j2LeftOfI = leftOf(obstacleI1->point_, obstacleI2->point_, obstacleJ2->point_);
if (j1LeftOfI >= -RVO_EPSILON && j2LeftOfI >= -RVO_EPSILON) {
++leftSize;
}
else if (j1LeftOfI <= RVO_EPSILON && j2LeftOfI <= RVO_EPSILON) {
++rightSize;
}
else {
++leftSize;
++rightSize;
}
if (std::make_pair(std::max(leftSize, rightSize), std::min(leftSize, rightSize)) >= std::make_pair(std::max(minLeft, minRight), std::min(minLeft, minRight))) {
break;
}
}
if (std::make_pair(std::max(leftSize, rightSize), std::min(leftSize, rightSize)) < std::make_pair(std::max(minLeft, minRight), std::min(minLeft, minRight))) {
minLeft = leftSize;
minRight = rightSize;
optimalSplit = i;
}
}
/* Build split node. */
std::vector<Obstacle *> leftObstacles(minLeft);
std::vector<Obstacle *> rightObstacles(minRight);
size_t leftCounter = 0;
size_t rightCounter = 0;
const size_t i = optimalSplit;
const Obstacle *const obstacleI1 = obstacles[i];
const Obstacle *const obstacleI2 = obstacleI1->nextObstacle_;
for (size_t j = 0; j < obstacles.size(); ++j) {
if (i == j) {
continue;
}
Obstacle *const obstacleJ1 = obstacles[j];
Obstacle *const obstacleJ2 = obstacleJ1->nextObstacle_;
const float j1LeftOfI = leftOf(obstacleI1->point_, obstacleI2->point_, obstacleJ1->point_);
const float j2LeftOfI = leftOf(obstacleI1->point_, obstacleI2->point_, obstacleJ2->point_);
if (j1LeftOfI >= -RVO_EPSILON && j2LeftOfI >= -RVO_EPSILON) {
leftObstacles[leftCounter++] = obstacles[j];
}
else if (j1LeftOfI <= RVO_EPSILON && j2LeftOfI <= RVO_EPSILON) {
rightObstacles[rightCounter++] = obstacles[j];
}
else {
/* Split obstacle j. */
const float t = det(obstacleI2->point_ - obstacleI1->point_, obstacleJ1->point_ - obstacleI1->point_) / det(obstacleI2->point_ - obstacleI1->point_, obstacleJ1->point_ - obstacleJ2->point_);
const Vector2 splitpoint = obstacleJ1->point_ + t * (obstacleJ2->point_ - obstacleJ1->point_);
Obstacle *const newObstacle = new Obstacle();
newObstacle->point_ = splitpoint;
newObstacle->prevObstacle_ = obstacleJ1;
newObstacle->nextObstacle_ = obstacleJ2;
newObstacle->isConvex_ = true;
newObstacle->unitDir_ = obstacleJ1->unitDir_;
newObstacle->id_ = sim_->obstacles_.size();
sim_->obstacles_.push_back(newObstacle);
obstacleJ1->nextObstacle_ = newObstacle;
obstacleJ2->prevObstacle_ = newObstacle;
if (j1LeftOfI > 0.0f) {
leftObstacles[leftCounter++] = obstacleJ1;
rightObstacles[rightCounter++] = newObstacle;
}
else {
rightObstacles[rightCounter++] = obstacleJ1;
leftObstacles[leftCounter++] = newObstacle;
}
}
}
node->obstacle = obstacleI1;
node->left = buildObstacleTreeRecursive(leftObstacles);
node->right = buildObstacleTreeRecursive(rightObstacles);
return node;
}
}
void KdTree::computeAgentNeighbors(Agent *agent, float &rangeSq) const
{
queryAgentTreeRecursive(agent, rangeSq, 0);
}
void KdTree::computeObstacleNeighbors(Agent *agent, float rangeSq) const
{
queryObstacleTreeRecursive(agent, rangeSq, obstacleTree_);
}
void KdTree::deleteObstacleTree(ObstacleTreeNode *node)
{
if (node != NULL) {
deleteObstacleTree(node->left);
deleteObstacleTree(node->right);
delete node;
}
}
void KdTree::queryAgentTreeRecursive(Agent *agent, float &rangeSq, size_t node) const
{
if (agentTree_[node].end - agentTree_[node].begin <= MAX_LEAF_SIZE) {
for (size_t i = agentTree_[node].begin; i < agentTree_[node].end; ++i) {
agent->insertAgentNeighbor(agents_[i], rangeSq);
}
}
else {
const float distSqLeft = sqr(std::max(0.0f, agentTree_[agentTree_[node].left].minX - agent->position_.x())) + sqr(std::max(0.0f, agent->position_.x() - agentTree_[agentTree_[node].left].maxX)) + sqr(std::max(0.0f, agentTree_[agentTree_[node].left].minY - agent->position_.y())) + sqr(std::max(0.0f, agent->position_.y() - agentTree_[agentTree_[node].left].maxY));
const float distSqRight = sqr(std::max(0.0f, agentTree_[agentTree_[node].right].minX - agent->position_.x())) + sqr(std::max(0.0f, agent->position_.x() - agentTree_[agentTree_[node].right].maxX)) + sqr(std::max(0.0f, agentTree_[agentTree_[node].right].minY - agent->position_.y())) + sqr(std::max(0.0f, agent->position_.y() - agentTree_[agentTree_[node].right].maxY));
if (distSqLeft < distSqRight) {
if (distSqLeft < rangeSq) {
queryAgentTreeRecursive(agent, rangeSq, agentTree_[node].left);
if (distSqRight < rangeSq) {
queryAgentTreeRecursive(agent, rangeSq, agentTree_[node].right);
}
}
}
else {
if (distSqRight < rangeSq) {
queryAgentTreeRecursive(agent, rangeSq, agentTree_[node].right);
if (distSqLeft < rangeSq) {
queryAgentTreeRecursive(agent, rangeSq, agentTree_[node].left);
}
}
}
}
}
void KdTree::queryObstacleTreeRecursive(Agent *agent, float rangeSq, const ObstacleTreeNode *node) const
{
if (node == NULL) {
return;
}
else {
const Obstacle *const obstacle1 = node->obstacle;
const Obstacle *const obstacle2 = obstacle1->nextObstacle_;
const float agentLeftOfLine = leftOf(obstacle1->point_, obstacle2->point_, agent->position_);
queryObstacleTreeRecursive(agent, rangeSq, (agentLeftOfLine >= 0.0f ? node->left : node->right));
const float distSqLine = sqr(agentLeftOfLine) / absSq(obstacle2->point_ - obstacle1->point_);
if (distSqLine < rangeSq) {
if (agentLeftOfLine < 0.0f) {
/*
* Try obstacle at this node only if agent is on right side of
* obstacle (and can see obstacle).
*/
agent->insertObstacleNeighbor(node->obstacle, rangeSq);
}
/* Try other side of line. */
queryObstacleTreeRecursive(agent, rangeSq, (agentLeftOfLine >= 0.0f ? node->right : node->left));
}
}
}
bool KdTree::queryVisibility(const Vector2 &q1, const Vector2 &q2, float radius) const
{
return queryVisibilityRecursive(q1, q2, radius, obstacleTree_);
}
bool KdTree::queryVisibilityRecursive(const Vector2 &q1, const Vector2 &q2, float radius, const ObstacleTreeNode *node) const
{
if (node == NULL) {
return true;
}
else {
const Obstacle *const obstacle1 = node->obstacle;
const Obstacle *const obstacle2 = obstacle1->nextObstacle_;
const float q1LeftOfI = leftOf(obstacle1->point_, obstacle2->point_, q1);
const float q2LeftOfI = leftOf(obstacle1->point_, obstacle2->point_, q2);
const float invLengthI = 1.0f / absSq(obstacle2->point_ - obstacle1->point_);
if (q1LeftOfI >= 0.0f && q2LeftOfI >= 0.0f) {
return queryVisibilityRecursive(q1, q2, radius, node->left) && ((sqr(q1LeftOfI) * invLengthI >= sqr(radius) && sqr(q2LeftOfI) * invLengthI >= sqr(radius)) || queryVisibilityRecursive(q1, q2, radius, node->right));
}
else if (q1LeftOfI <= 0.0f && q2LeftOfI <= 0.0f) {
return queryVisibilityRecursive(q1, q2, radius, node->right) && ((sqr(q1LeftOfI) * invLengthI >= sqr(radius) && sqr(q2LeftOfI) * invLengthI >= sqr(radius)) || queryVisibilityRecursive(q1, q2, radius, node->left));
}
else if (q1LeftOfI >= 0.0f && q2LeftOfI <= 0.0f) {
/* One can see through obstacle from left to right. */
return queryVisibilityRecursive(q1, q2, radius, node->left) && queryVisibilityRecursive(q1, q2, radius, node->right);
}
else {
const float point1LeftOfQ = leftOf(q1, q2, obstacle1->point_);
const float point2LeftOfQ = leftOf(q1, q2, obstacle2->point_);
const float invLengthQ = 1.0f / absSq(q2 - q1);
return (point1LeftOfQ * point2LeftOfQ >= 0.0f && sqr(point1LeftOfQ) * invLengthQ > sqr(radius) && sqr(point2LeftOfQ) * invLengthQ > sqr(radius) && queryVisibilityRecursive(q1, q2, radius, node->left) && queryVisibilityRecursive(q1, q2, radius, node->right));
}
}
}
}
| [
"[email protected]"
] | |
74d71e5479b6b0f47ec021f163a390cb11ba4efa | 61a62af6e831f3003892abf4f73bb1aa4d74d1c7 | /USACO/Contests/Silver/2015-2016/Contest 3/silver16feb1.cpp | c42726fde94e49c06654edd0c15243265e05fb3a | [] | no_license | amsraman/Competitive_Programming | 7e420e5d029e8adfbe7edf845db77f96bd1ae80d | 6f869a1e1716f56b081769d7f36ffa23ae82e356 | refs/heads/master | 2023-03-17T00:20:19.866063 | 2023-03-11T00:24:29 | 2023-03-11T00:24:29 | 173,763,104 | 16 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 678 | cpp | #include <fstream>
#include <iostream>
#define INF 0x3f3f3f3f
using namespace std;
int main()
{
ifstream infile("cbarn.in");
ofstream outfile("cbarn.out");
int n;
infile >> n;
int pos[n];
int a, c = 0;
for(int i = 0; i<n; i++)
{
infile >> a;
for(int j = 0; j<a; j++)
{
pos[c] = i;
c++;
}
}
int ans = INF;
for(int i = 0; i<n; i++)
{
a = 0;
for(int j = 0; j<n; j++)
{
c = j-pos[j]+i;
if(c<0){c+=n;}
a+=c*c;
}
ans=min(ans,a);
}
outfile << ans << endl;
}
| [
"[email protected]"
] | |
1f81d9c2b7ad58b040ebb93f368fac81173c9cf4 | ba48a88ed9c3eb938d9a4f833bec906df7443700 | /ItemModule.hpp | 1fdc3ae06b8aed4ac9e9ef3c5578d5cc708f1b63 | [] | no_license | Sammi-Husky/smash-ultimate-module-defs | fc70ff00c579134cc64459ec4bd5fa47f6447f66 | b633d1265d61ac0c984c7aad9127d86cb24e3005 | refs/heads/master | 2020-05-29T18:27:31.308150 | 2019-06-07T08:31:08 | 2019-06-07T08:31:08 | 189,300,244 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,504 | hpp | #ifndef ITEMMODULE_H
#define ITEMMODULE_H
namespace app::lua_bind {
namespace ItemModule {
u64 attach_item(app::BattleObjectModuleAccessor *,app::ItemKind,int,bool) asm("_ZN3app8lua_bind28ItemModule__attach_item_implEPNS_26BattleObjectModuleAccessorENS_8ItemKindEib") LINKABLE;
u64 attach_item_2(app::BattleObjectModuleAccessor *,app::Item *,bool) asm("_ZN3app8lua_bind30ItemModule__attach_item_2_implEPNS_26BattleObjectModuleAccessorEPNS_4ItemEb") LINKABLE;
u64 attach_item_instance(app::BattleObjectModuleAccessor *,app::Item *,bool) asm("_ZN3app8lua_bind37ItemModule__attach_item_instance_implEPNS_26BattleObjectModuleAccessorEPNS_4ItemEb") LINKABLE;
u64 born_item(app::BattleObjectModuleAccessor *,int) asm("_ZN3app8lua_bind26ItemModule__born_item_implEPNS_26BattleObjectModuleAccessorEi") LINKABLE;
u64 drop_attach_group(app::BattleObjectModuleAccessor *,unsigned char,float,float) asm("_ZN3app8lua_bind34ItemModule__drop_attach_group_implEPNS_26BattleObjectModuleAccessorEhff") LINKABLE;
u64 drop_item(app::BattleObjectModuleAccessor *,float,float,int) asm("_ZN3app8lua_bind26ItemModule__drop_item_implEPNS_26BattleObjectModuleAccessorEffi") LINKABLE;
u64 eject_attach(app::BattleObjectModuleAccessor *,app::ItemKind,bool,bool) asm("_ZN3app8lua_bind29ItemModule__eject_attach_implEPNS_26BattleObjectModuleAccessorENS_8ItemKindEbb") LINKABLE;
u64 eject_have_item(app::BattleObjectModuleAccessor *,int,bool,bool) asm("_ZN3app8lua_bind32ItemModule__eject_have_item_implEPNS_26BattleObjectModuleAccessorEibb") LINKABLE;
u64 get_have_item_id(app::BattleObjectModuleAccessor *,int) asm("_ZN3app8lua_bind33ItemModule__get_have_item_id_implEPNS_26BattleObjectModuleAccessorEi") LINKABLE;
u64 get_have_item_kind(app::BattleObjectModuleAccessor *,int) asm("_ZN3app8lua_bind35ItemModule__get_have_item_kind_implEPNS_26BattleObjectModuleAccessorEi") LINKABLE;
u64 get_have_item_size(app::BattleObjectModuleAccessor *,int) asm("_ZN3app8lua_bind35ItemModule__get_have_item_size_implEPNS_26BattleObjectModuleAccessorEi") LINKABLE;
u64 get_have_item_status_param_bool(app::BattleObjectModuleAccessor *,app::ItemStatusParamBool,int) asm("_ZN3app8lua_bind48ItemModule__get_have_item_status_param_bool_implEPNS_26BattleObjectModuleAccessorENS_19ItemStatusParamBoolEi") LINKABLE;
u64 get_have_item_status_param_float(app::BattleObjectModuleAccessor *,app::ItemStatusParamFloat,int) asm("_ZN3app8lua_bind49ItemModule__get_have_item_status_param_float_implEPNS_26BattleObjectModuleAccessorENS_20ItemStatusParamFloatEi") LINKABLE;
u64 get_have_item_status_param_int(app::BattleObjectModuleAccessor *,app::ItemStatusParamInt,int) asm("_ZN3app8lua_bind47ItemModule__get_have_item_status_param_int_implEPNS_26BattleObjectModuleAccessorENS_18ItemStatusParamIntEi") LINKABLE;
u64 get_have_item_trait(app::BattleObjectModuleAccessor *,int) asm("_ZN3app8lua_bind36ItemModule__get_have_item_trait_implEPNS_26BattleObjectModuleAccessorEi") LINKABLE;
u64 get_pickable_item_kind(app::BattleObjectModuleAccessor *) asm("_ZN3app8lua_bind39ItemModule__get_pickable_item_kind_implEPNS_26BattleObjectModuleAccessorE") LINKABLE;
u64 get_pickable_item_object_id(app::BattleObjectModuleAccessor *) asm("_ZN3app8lua_bind44ItemModule__get_pickable_item_object_id_implEPNS_26BattleObjectModuleAccessorE") LINKABLE;
u64 get_pickable_item_size(app::BattleObjectModuleAccessor *) asm("_ZN3app8lua_bind39ItemModule__get_pickable_item_size_implEPNS_26BattleObjectModuleAccessorE") LINKABLE;
u64 get_shoot_item_bullet(app::BattleObjectModuleAccessor *,int) asm("_ZN3app8lua_bind38ItemModule__get_shoot_item_bullet_implEPNS_26BattleObjectModuleAccessorEi") LINKABLE;
u64 have_item(app::BattleObjectModuleAccessor *,app::ItemKind,int,int,bool,bool) asm("_ZN3app8lua_bind26ItemModule__have_item_implEPNS_26BattleObjectModuleAccessorENS_8ItemKindEiibb") LINKABLE;
u64 have_item_instance(app::BattleObjectModuleAccessor *,app::Item *,int,bool,bool,bool,bool) asm("_ZN3app8lua_bind35ItemModule__have_item_instance_implEPNS_26BattleObjectModuleAccessorEPNS_4ItemEibbbb") LINKABLE;
u64 is_have_item(app::BattleObjectModuleAccessor *,int) asm("_ZN3app8lua_bind29ItemModule__is_have_item_implEPNS_26BattleObjectModuleAccessorEi") LINKABLE;
u64 is_success_auto_pickup_item(app::BattleObjectModuleAccessor *) asm("_ZN3app8lua_bind44ItemModule__is_success_auto_pickup_item_implEPNS_26BattleObjectModuleAccessorE") LINKABLE;
u64 is_success_pickup_item(app::BattleObjectModuleAccessor *) asm("_ZN3app8lua_bind39ItemModule__is_success_pickup_item_implEPNS_26BattleObjectModuleAccessorE") LINKABLE;
u64 pickup_item(app::BattleObjectModuleAccessor *,app::ItemSize,int,int,app::QuickItemTreatType,app::ItemPickupSearchMode) asm("_ZN3app8lua_bind28ItemModule__pickup_item_implEPNS_26BattleObjectModuleAccessorENS_8ItemSizeEiiNS_18QuickItemTreatTypeENS_20ItemPickupSearchModeE") LINKABLE;
u64 remove_all(app::BattleObjectModuleAccessor *) asm("_ZN3app8lua_bind27ItemModule__remove_all_implEPNS_26BattleObjectModuleAccessorE") LINKABLE;
u64 remove_item(app::BattleObjectModuleAccessor *,int) asm("_ZN3app8lua_bind28ItemModule__remove_item_implEPNS_26BattleObjectModuleAccessorEi") LINKABLE;
u64 reset_have_item_constraint_node(app::BattleObjectModuleAccessor *,int) asm("_ZN3app8lua_bind48ItemModule__reset_have_item_constraint_node_implEPNS_26BattleObjectModuleAccessorEi") LINKABLE;
u64 set_attach_item_action(app::BattleObjectModuleAccessor *,app::ItemKind,int,float) asm("_ZN3app8lua_bind39ItemModule__set_attach_item_action_implEPNS_26BattleObjectModuleAccessorENS_8ItemKindEif") LINKABLE;
u64 set_attach_item_visibility(app::BattleObjectModuleAccessor *,bool,unsigned char) asm("_ZN3app8lua_bind43ItemModule__set_attach_item_visibility_implEPNS_26BattleObjectModuleAccessorEbh") LINKABLE;
u64 set_change_status_event(app::BattleObjectModuleAccessor *,bool) asm("_ZN3app8lua_bind40ItemModule__set_change_status_event_implEPNS_26BattleObjectModuleAccessorEb") LINKABLE;
u64 set_have_item_action(app::BattleObjectModuleAccessor *,int,float,int) asm("_ZN3app8lua_bind37ItemModule__set_have_item_action_implEPNS_26BattleObjectModuleAccessorEifi") LINKABLE;
u64 set_have_item_constraint_joint(app::BattleObjectModuleAccessor *,u64,int) asm("_ZN3app8lua_bind47ItemModule__set_have_item_constraint_joint_implEPNS_26BattleObjectModuleAccessorEN3phx6Hash40Ei") LINKABLE;
u64 set_have_item_hold_anim(app::BattleObjectModuleAccessor *,bool,int) asm("_ZN3app8lua_bind40ItemModule__set_have_item_hold_anim_implEPNS_26BattleObjectModuleAccessorEbi") LINKABLE;
u64 set_have_item_scale_anim(app::BattleObjectModuleAccessor *,int,float,int) asm("_ZN3app8lua_bind41ItemModule__set_have_item_scale_anim_implEPNS_26BattleObjectModuleAccessorEifi") LINKABLE;
u64 set_have_item_visibility(app::BattleObjectModuleAccessor *,bool,int) asm("_ZN3app8lua_bind41ItemModule__set_have_item_visibility_implEPNS_26BattleObjectModuleAccessorEbi") LINKABLE;
u64 shoot_item_bullet(app::BattleObjectModuleAccessor *,int,float,int) asm("_ZN3app8lua_bind34ItemModule__shoot_item_bullet_implEPNS_26BattleObjectModuleAccessorEifi") LINKABLE;
u64 shoot_item_bullet_blanks(app::BattleObjectModuleAccessor *,int,int) asm("_ZN3app8lua_bind41ItemModule__shoot_item_bullet_blanks_implEPNS_26BattleObjectModuleAccessorEii") LINKABLE;
u64 success_auto_pickup_item(app::BattleObjectModuleAccessor *) asm("_ZN3app8lua_bind41ItemModule__success_auto_pickup_item_implEPNS_26BattleObjectModuleAccessorE") LINKABLE;
u64 throw_item(app::BattleObjectModuleAccessor *,float,float,float,int,bool,float) asm("_ZN3app8lua_bind27ItemModule__throw_item_implEPNS_26BattleObjectModuleAccessorEfffibf") LINKABLE;
u64 update_have_item_action_info(app::BattleObjectModuleAccessor *,int) asm("_ZN3app8lua_bind45ItemModule__update_have_item_action_info_implEPNS_26BattleObjectModuleAccessorEi") LINKABLE;
u64 use_item(app::BattleObjectModuleAccessor *,int,bool) asm("_ZN3app8lua_bind25ItemModule__use_item_implEPNS_26BattleObjectModuleAccessorEib") LINKABLE;
u64 use_item_instance(app::BattleObjectModuleAccessor *,app::Item *,bool) asm("_ZN3app8lua_bind34ItemModule__use_item_instance_implEPNS_26BattleObjectModuleAccessorEPNS_4ItemEb") LINKABLE;
}
}
#endif // ITEMMODULE_H
| [
"[email protected]"
] | |
b77d41bdae9b897e4aab02104a6c1368d7068f53 | bc56aa80d0417b002cb1381e3911ff1d0df40d06 | /KalmanTrack/KalSite.hh | 5310fc6081c166aaf5f3dee3a2654df48dc309f0 | [
"Apache-2.0"
] | permissive | brownd1978/FastSim | 177d79e8ce7bbd71df6f24295b157a8651962981 | 05f590d72d8e7f71856fd833114a38b84fc7fd48 | refs/heads/master | 2023-01-08T07:48:49.843154 | 2020-11-04T00:52:23 | 2020-11-04T00:52:23 | 284,155,237 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,258 | hh | // ------------------------------------------------------------------------------
// File and Version Information:
// $Id: KalSite.hh,v 1.62 2006/05/16 18:18:31 brownd Exp $
//
// Description:
// Class to describe a generic Kalman filter 'site'. A site is
// defined as somewhere along the trajectory where something happens.
// Specific daughter classes inherit from this to describe either
// material interactions or measurements. This abstract base class serves
// as a placeholder in a list of sites used to compute the Kalman
// filter track fit. It also holds information used in the non-gaussian
// kalman extension.
//
// Copyright Information:
// Copyright (C) 1996 Lawrence Berkeley Laboratory
//
// Authors: Dave Brown, 12/18/96
//------------------------------------------------------------------------------
//
#ifndef KALSITE_HH
#define KALSITE_HH
#include <iostream>
#include "PDT/PdtPid.hh"
#include "TrkBase/TrkDirection.hh"
#include "TrkBase/TrkEnums.hh"
#include "KalmanTrack/KalParams.hh"
#include "KalmanTrack/KalWeight.hh"
//
class TrkSimpTraj;
class TrkDifPieceTraj;
class HepPoint;
class KalRep;
class KalHit;
class KalBend;
class KalMaterial;
class KalPairSite;
class KalConstraint;
class KalSmear;
class KalScatter;
class KalBrems;
class KalBetaCons;
//
class KalSite{
// friend class KalPairRep;
public:
// Enums
enum siteType{matSite=0,hitSite,bendSite,endSite,pairSite,constraintSite,smearSite,scatterSite,bremsSite,betaConsSite,unknown};
// Constructors; 'default'
KalSite(const siteType);
// copy constructor.
KalSite(const KalSite&);
// clone onto a new rep
virtual KalSite* clone(const KalRep*) const = 0;
// destructor
virtual ~KalSite();
// Fit functions
virtual bool process(const KalSite*,trkDirection) = 0;
// updating
virtual bool update(const TrkDifPieceTraj*,double momentum) = 0;
// Basic information
virtual void printAll(std::ostream& os=std::cout) const;
void print(std::ostream& os=std::cout) const;
bool hasFit(trkDirection idir) const {return !needsFit(idir); }
virtual bool needsFit(trkDirection idir) const {return !_siteflag[idir];}
const siteType& type() const { return _stype; }
// trajectory information
double globalLength() const { return _globlen; }
double localLength() const { return _loclen; }
const TrkSimpTraj* localTrajectory() const { return _loctraj;}
const HepVector& localParameters() const { return _lparams; }
// does the site carry information? If so, how much. Boolean indicates
// whether the site contributed at all to chisq in the fit
virtual bool chisquared(double& chsiq,const KalSite*,trkDirection) const;
virtual unsigned nDof(TrkEnums::TrkViewInfo view=TrkEnums::bothView) const;
// activity of the site (ie, does it have any impact on the fit)
virtual bool isActive() const;
// Filtering results: these just return the data member if it's been built,
// otherwise it tries to build them (a kind of lazy evaluation).
const KalParams& filterParameters(trkDirection idir) const;
const KalWeight& filterWeights(trkDirection idir) const;
// Force a site to be invalid in a particular direction
void invalidateSite(trkDirection idir) { _siteflag[idir] = false; }
// set the state (parameters and vectors) of TrkSimpTraj
// according to the state of this site (in the specified direction)
bool setTrajState(trkDirection tdir,TrkSimpTraj* straj) const;
// Functions for rw vectors
bool operator == (const KalSite& other) const {
return _globlen == other._globlen; }
bool operator < (const KalSite& other) const {
return _globlen < other._globlen; }
// momentum change on traversing this site in the specified direction
virtual double momentumChange(trkDirection idir) const { return 0.0; }
// gap incured by this site
double gap() const { return _gap; }
// merge parameters with another sites: this takes care of (potential)
// reference point differences. The matrixOK flag of the output KalParams
// object describes the status.
void mergeParams(const KalSite* other,KalParams& addparams) const;
// add and subtract parameters, accounting for reference point differences
void addParams(const KalSite* other,KalParams& addparams) const;
// chisq wrt parameters of another site, optionally only for a subset of parameters
double parameterChisq(const KalSite* other,bool* tparams=0) const;
// add weights (weight difference has no meaning)
void addWeights(const KalSite* other,KalWeight& addweights) const;
// safe downcasting
KalMaterial* kalMaterial() {
return (_stype == matSite) ? (KalMaterial*) this : 0;
}
KalHit* kalHit() {
return (_stype == hitSite) ? (KalHit*) this : 0;
}
KalBend* kalBend() {
return (_stype == bendSite) ? (KalBend*) this : 0;
}
KalPairSite* kalPairSite() {
return (_stype == pairSite) ? (KalPairSite*) this : 0;
}
KalConstraint* kalConstraint() {
return (_stype == constraintSite) ? (KalConstraint*) this : 0;
}
//
const KalMaterial* kalMaterial() const {
return (_stype == matSite) ? (const KalMaterial*) this : 0;
}
const KalHit* kalHit() const {
return (_stype == hitSite) ? (const KalHit*) this : 0;
}
const KalBend* kalBend() const {
return (_stype == bendSite) ? (const KalBend*) this : 0;
}
const KalPairSite* kalPairSite() const {
return (_stype == pairSite) ? (const KalPairSite*) this : 0;
}
const KalConstraint* kalConstraint() const {
return (_stype == constraintSite) ? (const KalConstraint*) this : 0;
}
const KalSmear* kalSmear() const {
return (_stype == smearSite) ? (const KalSmear*) this : 0;
}
const KalScatter* kalScatter() const {
return (_stype == scatterSite) ? (const KalScatter*) this : 0;
}
const KalBrems* kalBrems() const {
return (_stype == bremsSite) ? (const KalBrems*) this : 0;
}
const KalBetaCons* kalBetaCons() const {
return (_stype == betaConsSite) ? (const KalBetaCons*) this : 0;
}
// simple utility to decide if a site is outwards or inwards of myself
trkDirection relativeDirection(const KalSite* other) const {
return (other->globalLength() > globalLength()) ? trkOut : trkIn; }
// reset the fit flags
void reset();
void reset(trkDirection);
virtual void invert(); // invert the direction (sign of flightlength) for this site
// set the gap
void setGap(double gap) { _gap = gap; }
private:
// Filtering results; these are lazy-evaluated caches
KalParams _params[2];
KalWeight _weight[2];
bool _siteflag[2]; // flag to keep track of the condition of the site
siteType _stype;
double _globlen; // global trajectory flight length of this site
double _loclen; // local (simple traj) flight length of this site
const TrkSimpTraj* _loctraj; // local trajectory
HepVector _lparams; // local trajectory parameters
double _gap; // gap incured in trajectory by this site
protected:
// equivalence
KalSite& operator = (const KalSite& other);
// default constructor
KalSite();
// Access the filtering results by reference
KalParams& params(trkDirection tdir) const {
return (KalParams&)_params[tdir]; }
KalWeight& weight(trkDirection tdir) const {
return (KalWeight&)_weight[tdir]; }
// Helpful functions for internal manipulations
void setFit(trkDirection idir,bool sval = true) {_siteflag[idir] = sval;}
// set the trajectory parameters
virtual bool setTraj(const TrkDifPieceTraj*,double globlen);
// update the parameters: this can handle the case that the reference points
// aren't the same
void copyParams(const KalSite* other,trkDirection idir);
// same for weights
void copyWeights(const KalSite* other,trkDirection idir);
// copy whatever is active in the site
void copySite(const KalSite* other,trkDirection idir);
// test if the site has valid weight or parameters
bool validSite(trkDirection idir) const;
// generic parameter-space processing.
bool processParams(const KalSite* prevsite,
trkDirection tdir,
const KalParams& transport);
// generic weight-space processing
bool processWeight(const KalSite* prevsite,
trkDirection tdir,
const KalWeight& hweight);
// update parameters for a given (large) momentum fraction change
void processDeltaP(KalParams& params,double dpfract) const;
};
#endif
| [
"[email protected]"
] | |
9e3b4dd2ac5d9103f6916724927f64b925ae13c0 | e11e6a42a0e3235618d2ff87cff9428b346fa1ed | /src/2000/2754.cpp | d4e011dcc7d84de47fc4927e51deae7937768093 | [] | no_license | khm2034/baekjoonAlgorithms | 53c9fb48e13e325a00746d33ea9be3aeb7389848 | 382303611c1334801e1e74a58f20bf7f3921914c | refs/heads/master | 2021-05-13T20:23:33.397069 | 2018-11-09T12:44:19 | 2018-11-09T12:44:19 | 116,910,526 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 603 | cpp | #include<cstdio>
char s[3];
int main() {
scanf("%s", s);
if (s[0] == 'A') {
if (s[1] == '+') printf("4.3");
if (s[1] == '0') printf("4.0");
if (s[1] == '-') printf("3.7");
}
if (s[0] == 'B') {
if (s[1] == '+') printf("3.3");
if (s[1] == '0') printf("3.0");
if (s[1] == '-') printf("2.7");
}
if (s[0] == 'C') {
if (s[1] == '+') printf("2.3");
if (s[1] == '0') printf("2.0");
if (s[1] == '-') printf("1.7");
}
if (s[0] == 'D') {
if (s[1] == '+') printf("1.3");
if (s[1] == '0') printf("1.0");
if (s[1] == '-') printf("0.7");
}
if (s[0] == 'F') printf("0.0");
return 0;
} | [
"[email protected]"
] | |
f5654f152652b0057907870c37e200f9030fc976 | 416beb9f70ffc5c520b00039224e89bbe21e8be7 | /addon/src/window.h | 070e4691cc5dec9e801fc7cb2789c5dc37d6e31c | [] | no_license | 1j01/ahk.js | 14103701cb24b22109f7e7fe7e3eb8b06fc6752b | 527f26ee445eb47098cb7fd2dcf4cce68c1753a6 | refs/heads/master | 2021-06-06T21:29:09.726072 | 2014-05-29T06:22:33 | 2014-05-29T06:22:33 | 20,083,159 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,973 | h | /*
AutoHotkey
Copyright 2003-2009 Chris Mallett ([email protected])
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.
*/
#ifndef window_h
#define window_h
#include "defines.h"
#include "globaldata.h"
#include "util.h" // for strlcpy()
#include "WinGroup.h"
typedef UINT_PTR VarSizeType;
// Note: it is apparently possible for a hidden window to be the foreground
// window (it just looks strange). If DetectHiddenWindows is off, set
// target_window to NULL if it's hidden. Doing this prevents, for example,
// WinClose() from closing the hidden foreground if it's some important hidden
// window like the shell or the desktop:
#define USE_FOREGROUND_WINDOW(title, text, exclude_title, exclude_text)\
((*title == 'A' || *title == 'a') && !*(title + 1) && !*text && !*exclude_title && !*exclude_text)
#define SET_TARGET_TO_ALLOWABLE_FOREGROUND(detect_hidden_windows) \
{\
if (target_window = GetForegroundWindow())\
if (!(detect_hidden_windows) && !IsWindowVisible(target_window))\
target_window = NULL;\
}
#define IF_USE_FOREGROUND_WINDOW(detect_hidden_windows, title, text, exclude_title, exclude_text)\
if (USE_FOREGROUND_WINDOW(title, text, exclude_title, exclude_text))\
{\
SET_TARGET_TO_ALLOWABLE_FOREGROUND(detect_hidden_windows)\
}
/* SHOULDN'T BE NEEDED; DO TEXT STUFF IN JAVASCRIPT
inline bool IsTextMatch(LPTSTR aHaystack, LPTSTR aNeedle)
// Generic helper function used by WindowSearch and other things.
// To help performance, it's the caller's responsibility to ensure that all params are not NULL.
{
if (!*aNeedle) // The empty string is always found, regardless of mode.
return true;
switch(g->TitleMatchMode)
{
case FIND_ANYWHERE: return _tcsstr(aHaystack, aNeedle);
case FIND_REGEX: return RegExMatch(aHaystack, aNeedle);
case FIND_IN_LEADING_PART: return !_tcsncmp(aHaystack, aNeedle, _tcslen(aNeedle));
default: // Otherwise: Exact match.
return !_tcscmp(aHaystack, aNeedle);
}
}*/
#define SEARCH_PHRASE_SIZE 1024
// Info from AutoIt3 source: GetWindowText fails under 95 if >65535, WM_GETTEXT randomly fails if > 32767.
// My: And since 32767 is what AutoIt3 passes to the API functions as the size (not the length, i.e.
// it can only store 32766 if room is left for the zero terminator) we'll use that for the size too.
// Note: MSDN says (for functions like GetWindowText): "Specifies the maximum number of characters to
// copy to the buffer, including the NULL character. If the text exceeds this limit, it is truncated."
#define WINDOW_TEXT_SIZE 32767
#define WINDOW_CLASS_SIZE 257 // MSDN implies length can't be greater than 256: "The maximum length for [WNDCLASS] lpszClassName is 256. If lpszClassName is greater than the maximum length, the RegisterClass function will fail."
// Bitwise fields to support multiple criteria in v1.0.36.02
#define CRITERION_TITLE 0x01
#define CRITERION_ID 0x02
#define CRITERION_PID 0x04
#define CRITERION_CLASS 0x08
#define CRITERION_GROUP 0x10
#define CRITERION_PATH 0x20
class WindowSearch
{
// One of the reasons for having this class is to avoid fetching PID, Class, and Window Text
// when only the criteria have changed but not the candidate window. This happens when called
// from the WinGroup class. Another reason is that it's probably more understandable than
// the old way, while eliminating some redundant code as well.
public:
DWORD mCriteria; // Which criteria are currently in effect (ID, PID, Class, Title, etc.)
// Controlled and initialized by SetCriteria():
global_struct *mSettings; // Settings such as TitleMatchMode and DetectHiddenWindows.
TCHAR mCriterionTitle[SEARCH_PHRASE_SIZE]; // For storing the title.
TCHAR mCriterionClass[SEARCH_PHRASE_SIZE]; // For storing the "ahk_class" class name.
size_t mCriterionTitleLength; // Length of mCriterionTitle.
LPTSTR mCriterionExcludeTitle; // ExcludeTitle.
size_t mCriterionExcludeTitleLength; // Length of the above.
LPTSTR mCriterionText; // WinText.
LPTSTR mCriterionExcludeText; // ExcludeText.
HWND mCriterionHwnd; // For "ahk_id".
DWORD mCriterionPID; // For "ahk_pid".
WinGroup *mCriterionGroup; // For "ahk_group".
TCHAR mCriterionPath[SEARCH_PHRASE_SIZE]; // For "ahk_exe".
bool mCriterionPathIsNameOnly;
bool mFindLastMatch; // Whether to keep searching even after a match is found, so that last one is found.
int mFoundCount; // Accumulates how many matches have been found (either 0 or 1 unless mFindLastMatch==true).
HWND mFoundParent; // Must be separate from mCandidateParent because some callers don't have access to IsMatch()'s return value.
HWND mFoundChild; // Needed by EnumChildFind() to store its result, and other things.
HWND *mAlreadyVisited; // Array of HWNDs to exclude from consideration.
int mAlreadyVisitedCount; // Count of items in the above.
WindowSpec *mFirstWinSpec; // Linked list used by the WinGroup commands.
ActionTypeType mActionType; // Used only by WinGroup::PerformShowWindow().
int mTimeToWaitForClose; // Same.
Var *mArrayStart; // Used by WinGetList() to fetch an array of matching HWNDs.
// Controlled by the SetCandidate() method:
HWND mCandidateParent;
DWORD mCandidatePID;
TCHAR mCandidateTitle[WINDOW_TEXT_SIZE]; // For storing title or class name of the given mCandidateParent.
TCHAR mCandidateClass[WINDOW_CLASS_SIZE]; // Must not share mem with mCandidateTitle because even if ahk_class is in effect, ExcludeTitle can also be in effect.
TCHAR mCandidatePath[MAX_PATH];
void SetCandidate(HWND aWnd) // Must be kept thread-safe since it may be called indirectly by the hook thread.
{
// For performance reasons, update the attributes only if the candidate window changed:
if (mCandidateParent != aWnd)
{
mCandidateParent = aWnd;
UpdateCandidateAttributes(); // In case mCandidateParent isn't NULL, update the PID/Class/etc. based on what was set above.
}
}
ResultType SetCriteria(global_struct &aSettings, LPTSTR aTitle, LPTSTR aText, LPTSTR aExcludeTitle, LPTSTR aExcludeText);
void UpdateCandidateAttributes();
HWND IsMatch(bool aInvert = false);
WindowSearch() // Constructor.
// For performance and code size, only the most essential members are initialized.
// The others do not require it or are initialized by SetCriteria() or SetCandidate().
: mCriteria(0), mCriterionExcludeTitle(_T("")) // ExcludeTitle is referenced often, so should be initialized.
, mFoundCount(0), mFoundParent(NULL) // Must be initialized here since none of the member functions is allowed to do it.
, mFoundChild(NULL) // ControlExist() relies upon this.
, mCandidateParent(NULL)
// The following must be initialized because it's the object user's responsibility to override
// them in those relatively rare cases when they need to be. WinGroup::ActUponAll() and
// WinGroup::Deactivate() (and probably other callers) rely on these attributes being retained
// after they were overridden even upon multiple subsequent calls to SetCriteria():
, mFindLastMatch(false), mAlreadyVisited(NULL), mAlreadyVisitedCount(0), mFirstWinSpec(NULL), mArrayStart(NULL)
{
}
};
struct control_list_type
{
// For something this simple, a macro is probably a lot less overhead that making this struct
// non-POD and giving it a constructor:
#define CL_INIT_CONTROL_LIST(cl) \
cl.is_first_iteration = true;\
cl.total_classes = 0;\
cl.total_length = 0;\
cl.buf_free_spot = cl.class_buf; // Points to the next available/writable place in the buf.
bool fetch_hwnds; // True if fetching HWND of each control rather than its ClassNN.
bool is_first_iteration; // Must be initialized to true by Enum's caller.
int total_classes; // Must be initialized to 0.
VarSizeType total_length; // Must be initialized to 0.
VarSizeType capacity; // Must be initialized to size of the below buffer.
LPTSTR target_buf; // Caller sets it to NULL if only the total_length is to be retrieved.
#define CL_CLASS_BUF_SIZE (32 * 1024) // Even if class names average 50 chars long, this supports 655 of them.
TCHAR class_buf[CL_CLASS_BUF_SIZE];
LPTSTR buf_free_spot; // Must be initialized to point to the beginning of class_buf.
#define CL_MAX_CLASSES 500 // The number of distinct class names that can be supported in a single window.
LPTSTR class_name[CL_MAX_CLASSES]; // Array of distinct class names, stored consecutively in class_buf.
int class_count[CL_MAX_CLASSES]; // The quantity found for each of the above classes.
};
struct MonitorInfoPackage // A simple struct to help with EnumDisplayMonitors().
{
int count;
#define COUNT_ALL_MONITORS INT_MIN // A special value that can be assigned to the below.
int monitor_number_to_find; // If this is left as zero, it will find the primary monitor by default.
MONITORINFOEX monitor_info_ex;
};
struct pid_and_hwnd_type
{
DWORD pid;
HWND hwnd;
};
struct length_and_buf_type
{
size_t total_length;
size_t capacity;
LPTSTR buf;
};
struct class_and_hwnd_type
{
LPTSTR class_name;
bool is_found;
int class_count;
HWND hwnd;
};
struct point_and_hwnd_type
{
POINT pt;
RECT rect_found;
HWND hwnd_found;
double distance;
};
HWND WinActivate(global_struct &aSettings, LPTSTR aTitle, LPTSTR aText, LPTSTR aExcludeTitle, LPTSTR aExcludeText
, bool aFindLastMatch = false
, HWND aAlreadyVisited[] = NULL, int aAlreadyVisitedCount = 0);
HWND SetForegroundWindowEx(HWND aTargetWindow);
// Defaulting to a non-zero wait-time solves a lot of script problems that would otherwise
// require the user to specify the last param (or use WinWaitClose):
#define DEFAULT_WINCLOSE_WAIT 20
HWND WinClose(global_struct &aSettings, LPTSTR aTitle, LPTSTR aText, int aTimeToWaitForClose = DEFAULT_WINCLOSE_WAIT
, LPTSTR aExcludeTitle = _T(""), LPTSTR aExcludeText = _T(""), bool aKillIfHung = false);
HWND WinClose(HWND aWnd, int aTimeToWaitForClose = DEFAULT_WINCLOSE_WAIT, bool aKillIfHung = false);
HWND WinActive(global_struct &aSettings, LPTSTR aTitle, LPTSTR aText, LPTSTR aExcludeTitle, LPTSTR aExcludeText
, bool aUpdateLastUsed = false);
HWND WinExist(global_struct &aSettings, LPTSTR aTitle, LPTSTR aText, LPTSTR aExcludeTitle, LPTSTR aExcludeText
, bool aFindLastMatch = false, bool aUpdateLastUsed = false
, HWND aAlreadyVisited[] = NULL, int aAlreadyVisitedCount = 0);
HWND GetValidLastUsedWindow(global_struct &aSettings);
BOOL CALLBACK EnumParentFind(HWND hwnd, LPARAM lParam);
BOOL CALLBACK EnumChildFind(HWND hwnd, LPARAM lParam);
// Use a fairly long default for aCheckInterval since the contents of this function's loops
// might be somewhat high in overhead (especially SendMessageTimeout):
#define SB_DEFAULT_CHECK_INTERVAL 50
ResultType StatusBarUtil(Var *aOutputVar, HWND aBarHwnd, int aPartNumber = 1, LPTSTR aTextToWaitFor = _T("")
, int aWaitTime = -1, int aCheckInterval = SB_DEFAULT_CHECK_INTERVAL);
HWND ControlExist(HWND aParentWindow, LPTSTR aClassNameAndNum = NULL);
BOOL CALLBACK EnumControlFind(HWND aWnd, LPARAM lParam);
#define MSGBOX_NORMAL (MB_OK | MB_SETFOREGROUND)
#define MSGBOX_TEXT_SIZE (1024 * 8)
#define DIALOG_TITLE_SIZE 1024
int MsgBox(int aValue);
int MsgBox(LPCTSTR aText = _T(""), UINT uType = MSGBOX_NORMAL, LPTSTR aTitle = NULL, double aTimeout = 0, HWND aOwner = NULL);
HWND FindOurTopDialog();
BOOL CALLBACK EnumDialog(HWND hwnd, LPARAM lParam);
HWND WindowOwnsOthers(HWND aWnd);
BOOL CALLBACK EnumParentFindOwned(HWND aWnd, LPARAM lParam);
HWND GetNonChildParent(HWND aWnd);
HWND GetTopChild(HWND aParent);
bool IsWindowHung(HWND aWnd);
// Defaults to a low timeout because a window may have hundreds of controls, and if the window
// is hung, each control might result in a delay of size aTimeout during an EnumWindows.
// It shouldn't need much time anyway since the moment the call to SendMessageTimeout()
// is made, our thread is suspended and the target thread's WindowProc called directly.
// In addition:
// Whenever using SendMessageTimeout(), our app will be unresponsive until
// the call returns, since our message loop isn't running. In addition,
// if the keyboard or mouse hook is installed, the events will lag during
// this call. So keep the timeout value fairly short. UPDATE: Need a longer
// timeout because otherwise searching will be inconsistent / unreliable for the
// slow Title Match method, since some apps are lazy about keeping their
// message pumps running, such as during long disk I/O operations, and thus
// may sometimes (randomly) take a long time to respond to the WM_GETTEXT message.
// 5000 seems about the largest value that should ever be needed since this is what
// Windows uses as the cutoff for determining if a window has become "unresponsive":
int GetWindowTextTimeout(HWND aWnd, LPTSTR aBuf = NULL, INT_PTR aBufSize = 0, UINT aTimeout = 5000);
void SetForegroundLockTimeout();
// Notes about the below macro:
// Update for v1.0.40.01:
// In earlier versions, a critical thread that displayed a dialog would discard any pending events
// that were waiting to start new threads (since in most cases, the dialog message pump would
// route those events directly to a window proc, which would then repost them with a NULL hwnd
// to prevent bouncing, which in turn would cause the dialog pump to discard them). To avoid
// this and make the behavior more useful and intuitive, this has been changed so that any
// pending threads will launch right before the dialog is displayed. But later, when the user
// dismisses the dialog, the thread becomes critical again.
//
// Update for v1.0.38.04: Rather than setting AllowInterruption unconditionally to
// true, make it reflect the state of g->ThreadIsCritical. This increases flexibility by allowing
// threads to stay interrruptible even when they're displaying a dialog. In such cases, an
// incoming thread-event such as a hotkey will get routed to our MainWindowProc by the dialog's
// message pump; and from there it will get reposted to our queue, and then get pumped again.
// This bouncing effect may impact performance slightly but seems warranted to maintain
// flexibility of the "Critical" command as well as its ability to buffer incoming events.
//
// If our thread's message queue has any message pending whose HWND member is NULL -- or even
// normal messages which would be routed back to the thread by the WindowProc() -- clean them
// out of the message queue before launching the dialog's message pump below. That message pump
// doesn't know how to properly handle such messages (it would either lose them or dispatch them
// at times we don't want them dispatched). But first ensure the current quasi-thread is
// interruptible, since it's about to display a dialog so there little benefit (and a high cost)
// to leaving it uninterruptible. The "high cost" is that MsgSleep (our main message pump) would
// filter out (leave queued) certain messages if the script were uninterruptible. Then when it
// returned, the dialog message pump below would start, and it would discard or misroute the
// messages.
// If this is not done, the following scenario would also be a problem:
// A newly launched thread (in its period of uninterruptibility) displays a dialog. As a consequence,
// the dialog's message pump starts dispatching all messages. If during this brief time (before the
// thread becomes interruptible) a hotkey/hotstring/custom menu item/gui thread is dispatched to one
// of our WindowProc's, and then posted to our thread via PostMessage(NULL,...), the item would be lost
// because the dialog message pump discards messages that lack an HWND (since it doesn't know how to
// dispatch them to a Window Proc).
// GetQueueStatus() is used because unlike PeekMessage() or GetMessage(), it might not yield
// our timeslice if the CPU is under heavy load, which would be good to improve performance here.
#define DIALOG_PREP bool thread_was_critical = DialogPrep();
// v1.0.40.01: Turning off critical during the dialog is relied upon by ResumeUnderlyingThread(),
// UninterruptibleTimeout(), and KILL_AUTOEXEC_TIMER. Doing it this way also seems more maintainable
// than some other approach such as storing a new flag in the "g" struct that says whether it is currently
// displaying a dialog and waiting for it to finish.
#define DIALOG_END \
{\
g->ThreadIsCritical = thread_was_critical;\
g->AllowThreadToBeInterrupted = !thread_was_critical;\
}
bool DialogPrep();
#endif
| [
"[email protected]"
] | |
257e35704e05a683470741b67da79ba623f516c8 | 492976adfdf031252c85de91a185bfd625738a0c | /src/Game/AI/Action/actionCheckExistenceOfParticipant.h | f02455c44b312334235a92be0dfbe85f0d95e5d3 | [] | no_license | zeldaret/botw | 50ccb72c6d3969c0b067168f6f9124665a7f7590 | fd527f92164b8efdb746cffcf23c4f033fbffa76 | refs/heads/master | 2023-07-21T13:12:24.107437 | 2023-07-01T20:29:40 | 2023-07-01T20:29:40 | 288,736,599 | 1,350 | 117 | null | 2023-09-03T14:45:38 | 2020-08-19T13:16:30 | C++ | UTF-8 | C++ | false | false | 741 | h | #pragma once
#include "KingSystem/ActorSystem/actAiAction.h"
namespace uking::action {
class CheckExistenceOfParticipant : public ksys::act::ai::Action {
SEAD_RTTI_OVERRIDE(CheckExistenceOfParticipant, ksys::act::ai::Action)
public:
explicit CheckExistenceOfParticipant(const InitArg& arg);
~CheckExistenceOfParticipant() override;
bool init_(sead::Heap* heap) override;
void enter_(ksys::act::ai::InlineParamPack* params) override;
void leave_() override;
void loadParams_() override;
protected:
void calc_() override;
// dynamic_param at offset 0x20
sead::SafeString mActorName_d{};
// dynamic_param at offset 0x30
sead::SafeString mInstanceName_d{};
};
} // namespace uking::action
| [
"[email protected]"
] | |
0470669cdd145d80b05f49bdf61059043d2efa16 | a2b0ccdfd1a3f385bc364d7330049a0273415fd7 | /Engine/Engine/src/systems/CollisionManager.h | e6193d1d49bd0ba53ad9575450fddb5422da9f54 | [] | no_license | TheGreenBridge/bridgeengine | c38d4115fec818aed842a29af48f1860cbfa9502 | fd13d261a9f537a04b8b5a11fb76033ef7ec4708 | refs/heads/master | 2021-01-24T00:15:29.504844 | 2018-02-24T18:18:27 | 2018-02-24T18:18:27 | 122,758,838 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 590 | h | #pragma once
#include "System.h"
namespace engine {
namespace collision {
struct AABB3D;
}
struct Event;
using namespace collision;
class CollisionManager : public ISystem{
private:
AABB3D* m_aCollidables;
U32 numCollidables = 0;
public:
CollisionManager();
~CollisionManager();
bool testAABBOverlap(AABB3D* a, AABB3D *b);
AABB3D *getCollidables() { return m_aCollidables; }
U32 getNumCollidables();
AABB3D *requestAABB3D();
void update(const float dTime);
void onEvent(Event *e);
void startUp();
void shutDown();
};
}
| [
"[email protected]"
] | |
9b3196a5a8218d39684c188fd85eebe23b1d1509 | c3a56f70668f5d46679750e3a781ab7d610142a2 | /Rok I/KluczPrzeszukiwanie_2D.cpp | 2c5559ee72f019719c7ec2094657e3097003e4d4 | [] | no_license | M4thez/UczelniaCDV | cf43fb341e52a947422c5fdef3550fc53e35a5a1 | 4b335279b3b26097d8b3149ff354da4012d68e64 | refs/heads/master | 2023-04-16T08:52:12.366261 | 2021-04-27T18:49:24 | 2021-04-27T18:49:24 | 279,605,240 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,402 | cpp | #include <iostream>
using namespace std;
int main()
{
int tab[5][5] = {{4, 2, 3, 6, 7}, {14, 12, 17, 15, 6}, {4, 27, 14, 17, 3}, {15, 12, 6, 81, 92}, {11, 3, 64, 21, 11}};
int klucz, pw, pk, kw, kk; // pw - poczatek wiersza, pk - poczatek kolumny, kw - koniec wiersza, kk - koniec kolumny
int i = 0;
cout << "Wpisz wartosc klucza wedlug ktorego chcesz przeszukac tablice: ";
cin >> klucz;
cout << "Tablica ma wymiary [5][5], indeksowanie od [0][0] do [4][4].\n"
<< "Na jakim obszarze chcesz przeszukac tablice?\n\n"
<< "Wpisz nr wiersza poczatku obszaru: ";
cin >> pw;
cout << "Kolumna: ";
cin >> pk;
cout << "Wpisz nr wiersza konca obszaru: ";
cin >> kw;
cout << "Kolumna: ";
cin >> kk;
cout << "Wartosc odp. kluczowi znajduje sie w tablicy na miejscach:\n";
for (; pw <= kw; pw++, pk = 1)
{
for (; pk <= kk; pk++)
{
if (klucz == tab[pw][pk])
{
i++;
cout << i << ". pojawienie sie na indeksach\n";
cout << "Wiersz: " << pw << "\n"
<< "Kolumna: " << pk << "\n\n";
}
}
}
if (i == 0)
cout << "Brak.\n";
else
cout << "Wartosc odp. kluczowi, na zadanym obszarze, znajduje sie w tablicy w " << i << ". miejscach.\n";
cout << "\nKoniec Programu.\n";
} | [
"[email protected]"
] | |
05f2c9fd968c31fe5af82d41c899302a1946b714 | 2f6dcbbd8530518ca8a2fdec860acac83c9caaf5 | /src/mvc_get_image.cpp | 141d82974880ba92426d9ffea0bc3ead8220bf47 | [] | no_license | liucc09/microview | 8fc872e9b123c60667dceaf0887d4eddb7b9c03c | 1b50fe57327803be8bec31a4df49193b58431fdc | refs/heads/master | 2021-01-01T04:39:26.881697 | 2016-04-24T08:35:40 | 2016-04-24T08:35:40 | 56,961,893 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,236 | cpp | #include <stdio.h>
#include <tchar.h>
#include <windows.h>
#include "MVCAPI.h"
#include "mex.h"
HANDLE* m_phMVCs;
struct CapInfoStruct* m_pCapInfos;
double* pprhs0;
int* pprhs1;
BYTE* pImage;
/***
*输入参数:相机Id(行向量),m_phMVCs指针地址(行向量)
*输出参数:Matlab的Cell类型,每个单元存一副图像
***/
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) {
int camera_num,image_num,i,j,h,w,num;
int camera_ids[6];
int image_ids[6];
int im2ca[6] = {-1,-1,-1,-1,-1,-1 }; //图像序号转相机序号
mxArray *pIms[6];
mwSize dims[4];
/*
*[id id id
* hMVC hMVC hMVC
* Cap Cap Cap]
*/
//相机ids、mvcMgr
if(nrhs != 2) {
mexErrMsgIdAndTxt("MyToolbox:mvc_get_image:nrhs",
"Two inputs required.");
}
//输出图像结构体
if(nlhs != 1) {
mexErrMsgIdAndTxt("MyToolbox:mvc_get_image:nlhs",
"One output required.");
}
image_num = mxGetN(prhs[0]);
camera_num = mxGetN(prhs[1]);
pprhs0 = mxGetPr(prhs[0]);
pprhs1 = (int*)mxGetData(prhs[1]);
for (i=0;i<camera_num;++i){
camera_ids[i] = (int)(pprhs1[i*3]);
//mexPrintf("camera: %d\n",camera_ids[i]);
}
for (i=0;i<image_num;++i){
image_ids[i] = (int)(pprhs0[i]);
//mexPrintf("image: %d\n",image_ids[i]);
}
m_phMVCs = (HANDLE*)pprhs1[1];
m_pCapInfos = (struct CapInfoStruct*)pprhs1[2];
for (i=0;i<image_num;++i){
for (j=0;j<camera_num;++j){
if (image_ids[i]==camera_ids[j]){
MV_Usb2GetRawData(m_phMVCs[j],&m_pCapInfos[j]);
im2ca[i] = j;
}
}
if (im2ca[i]<0){
mexErrMsgTxt("Camera id not exist");
}
}
dims[0] = m_pCapInfos[0].Width;;
dims[1] = m_pCapInfos[0].Height;;
plhs[0] = mxCreateCellMatrix(1,image_num);
for (i=0;i<image_num;++i){
num = im2ca[i];
w = m_pCapInfos[num].Width;
h = m_pCapInfos[num].Height;
pIms[i] = mxCreateNumericMatrix(w,h,mxUINT8_CLASS,mxREAL);
pImage = (BYTE*)mxGetData(pIms[i]);
memcpy(pImage,m_pCapInfos[num].Buffer,w*h);
mxSetCell(plhs[0],i,pIms[i]);
}
} | [
"[email protected]"
] | |
4178fefe8e56dcf4bef95e2fa80dd39a9ce8c5b2 | a13d0142d33bed0bf8e2d6f2a6524a787f6b170e | /source/gc/gc.cpp | 704e0b81f50d960b72ba80fb8e6a15011d989946 | [] | no_license | einsteinx2/wiiflow-lite-einstein-mod | 6ec3347089fe763d06145dc49ad34a9b13b98c8c | 163f4645a970b2fb90e403b86e256af044855c04 | refs/heads/master | 2020-03-17T02:23:37.185157 | 2018-05-26T23:31:21 | 2018-05-26T23:31:21 | 133,188,269 | 7 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 11,745 | cpp | /****************************************************************************
* Copyright (C) 2012 FIX94
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#include <gccore.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <ogc/machine/processor.h>
#include <ogc/lwp_threads.h>
// for directory parsing and low-level file I/O
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <dirent.h>
#include "gc/gc.hpp"
#include "gui/text.hpp"
#include "devicemounter/DeviceHandler.hpp"
#include "gecko/gecko.hpp"
#include "fileOps/fileOps.h"
#include "homebrew/homebrew.h"
#include "loader/utils.h"
#include "loader/disc.h"
#include "loader/sys.h"
#include "memory/memory.h"
#include "memory/mem2.hpp"
// Languages
#define SRAM_ENGLISH 0
#define SRAM_GERMAN 1
#define SRAM_FRENCH 2
#define SRAM_SPANISH 3
#define SRAM_ITALIAN 4
#define SRAM_DUTCH 5
extern "C" {
syssram* __SYS_LockSram();
u32 __SYS_UnlockSram(u32 write);
u32 __SYS_SyncSram(void);
}
u8 get_wii_language()
{
switch (CONF_GetLanguage())
{
case CONF_LANG_GERMAN:
return SRAM_GERMAN;
case CONF_LANG_FRENCH:
return SRAM_FRENCH;
case CONF_LANG_SPANISH:
return SRAM_SPANISH;
case CONF_LANG_ITALIAN:
return SRAM_ITALIAN;
case CONF_LANG_DUTCH:
return SRAM_DUTCH;
default:
return SRAM_ENGLISH;
}
}
// Nintendont
NIN_CFG NinCfg;
/* since Nintendont v1.98 argsboot is supported.
since v3.324 '$$Version:' string was added for loaders to detect.
since wiiflow lite doesn't support versions less than v3.358
we will use argsboot and version detection every time. */
void Nintendont_SetOptions(const char *gamePath, const char *gameID, const char *CheatPath, u8 lang,
u32 n_cfg, u32 n_vm, s8 vidscale, s8 vidoffset)
{
memset(&NinCfg, 0, sizeof(NIN_CFG));
NinCfg.Magicbytes = 0x01070CF6;
NinCfg.MaxPads = 4;
/* check nintendont version so we can set the proper config version */
u32 NIN_cfg_version = NIN_CFG_VERSION;
char NINVersion[7]= "";
u32 NINRev = 0;
for(u8 i = SD; i < MAXDEVICES; ++i)
{
const char *dol_path = fmt(NIN_LOADER_PATH, DeviceName[i]);
if(!fsop_FileExist(dol_path))
continue;
u8 *buffer = NULL;
u32 filesize = 0;
const char *str = "$$Version:";
buffer = fsop_ReadFile(dol_path, &filesize);
// if buffer is NULL then out of memory - hopefully that doesn't happen and shouldn't
for(u32 i = 0; i < filesize; i += 32)
{
if(memcmp(buffer+i, str, strlen(str)) == 0)
{
// get nintendont version (NINVersion) from current position in nintendont boot.dol (buffer)
snprintf(NINVersion, sizeof(NINVersion), "%s", buffer+i+strlen(str));
// get revision from version and use it to get NinCfg version
NINRev = atoi(strchr(NINVersion, '.')+1);
break;
}
}
free(buffer);
break;
}
if(NINRev == 0 || NINRev < 358)
NIN_cfg_version = 2;// nintendont not found or revision is less than 358 thus too old for wiiflow lite
else if(NINRev >= 358 && NINRev < 368)
NIN_cfg_version = 5;
else if(NINRev >= 368 && NINRev < 424)
NIN_cfg_version = 6;
else if(NINRev >= 424 && NINRev < 431)
NIN_cfg_version = 7;
NinCfg.Version = NIN_cfg_version;
/* set config options */
NinCfg.Config = n_cfg;
/* VideoMode setup */
NinCfg.VideoMode = n_vm;
NinCfg.VideoScale = vidscale;
NinCfg.VideoOffset = vidoffset;
/* language setup */
if(lang == 0)
lang = get_wii_language();
else
lang--;
switch(lang)
{
case SRAM_GERMAN:
NinCfg.Language = NIN_LAN_GERMAN;
break;
case SRAM_FRENCH:
NinCfg.Language = NIN_LAN_FRENCH;
break;
case SRAM_SPANISH:
NinCfg.Language = NIN_LAN_SPANISH;
break;
case SRAM_ITALIAN:
NinCfg.Language = NIN_LAN_ITALIAN;
break;
case SRAM_DUTCH:
NinCfg.Language = NIN_LAN_DUTCH;
break;
default:
NinCfg.Language = NIN_LAN_ENGLISH;
break;
}
/* MemCard Blocks Setup */
if(NinCfg.Config & NIN_CFG_MC_MULTI)
NinCfg.MemCardBlocks = 0x4; //1019 blocks (8MB)
else
NinCfg.MemCardBlocks = 0x2; //251 blocks (2MB)
/* CheatPath Setup */
if(CheatPath != NULL && (NinCfg.Config & NIN_CFG_CHEATS))
snprintf(NinCfg.CheatPath, sizeof(NinCfg.CheatPath), strchr(CheatPath, '/'));
/* GamePath Setup */
if(strcmp(gamePath, "di") == 0)// should check for length of gamePath =2
strncpy(NinCfg.GamePath, gamePath, sizeof(NinCfg.GamePath));
else
{
strncpy(NinCfg.GamePath, strchr(gamePath, '/'), 254);
if(strstr(NinCfg.GamePath, "boot.bin") != NULL)
{
*strrchr(NinCfg.GamePath, '/') = '\0'; //boot.bin
*(strrchr(NinCfg.GamePath, '/')+1) = '\0'; //sys
}
}
/* GameID Setup */
memcpy(&NinCfg.GameID, gameID, 4);
gprintf("Nintendont Game Path: %s, ID: %08x\n", NinCfg.GamePath, NinCfg.GameID);
gprintf("Writing Arguments\n");
AddBootArgument((char*)&NinCfg, sizeof(NIN_CFG));
}
bool Nintendont_Installed()
{
for(u8 i = SD; i < MAXDEVICES; ++i)
{
const char *dol_path = fmt(NIN_LOADER_PATH, DeviceName[i]);
if(fsop_FileExist(dol_path) == true)
{
gprintf("Nintendont found\n");
return true;
}
}
return false;
}
bool Nintendont_GetLoader()
{
bool ret = false;
for(u8 i = SD; i < MAXDEVICES; ++i)
{
const char *dol_path = fmt(NIN_LOADER_PATH, DeviceName[i]);
ret = (LoadHomebrew(dol_path) == 1);
if(ret == true)
{
gprintf("Nintendont loaded: %s\n", dol_path);
AddBootArgument(dol_path);
break;
}
}
return ret;
}
// Devolution
u8 *tmp_buffer = NULL;
u8 *loader_bin = NULL;
u32 loader_size = 0;
extern "C" { extern void __exception_closeall(); }
static gconfig *DEVO_CONFIG = (gconfig*)0x80000020;
#define DEVO_ENTRY ((entry)loader_bin)
bool DEVO_Installed(const char *path)
{
loader_size = 0;
bool devo = false;
fsop_GetFileSizeBytes(fmt(DEVO_LOADER_PATH, path), &loader_size);
if(loader_size > 0x80) //Size should be more than 128b
{
gprintf("Devolution found\n");
devo = true;
}
return devo;
}
void DEVO_GetLoader(const char *path)
{
loader_size = 0;
tmp_buffer = fsop_ReadFile(fmt(DEVO_LOADER_PATH, path), &loader_size);
if(tmp_buffer == NULL)
gprintf("Devolution: Loader not found!\n");
}
void DEVO_SetOptions(const char *isopath, const char *gameID, u8 videomode, u8 lang,
bool memcard_emu, bool widescreen, bool activity_led, bool wifi)
{
// re-mount device we need
//DeviceHandle.MountDevolution();
//start writing cfg to mem
struct stat st;
int data_fd;
char iso2path[256];
iso2path[255] = '\0';
stat(isopath, &st);
FILE *f = fopen(isopath, "rb");
gprintf("Devolution: ISO Header %s\n", isopath);
fread((u8*)Disc_ID, 1, 32, f);
fclose(f);
f = NULL;
// fill out the Devolution config struct
memset(DEVO_CONFIG, 0, sizeof(gconfig));
DEVO_CONFIG->signature = DEVO_CONFIG_SIG;
DEVO_CONFIG->version = DEVO_CONFIG_VERSION;
DEVO_CONFIG->device_signature = st.st_dev;
DEVO_CONFIG->disc1_cluster = st.st_ino;
// Pergame options
if(wifi)
DEVO_CONFIG->options |= DEVO_CONFIG_WIFILOG;
if(widescreen)
DEVO_CONFIG->options |= DEVO_CONFIG_WIDE;
if(!activity_led)
DEVO_CONFIG->options |= DEVO_CONFIG_NOLED;
// If 2nd iso file tell Devo about it
strncpy(iso2path, isopath, 255);
char *ptz = strstr(iso2path, "game.iso");
if(ptz != NULL)
{
strncpy(ptz, "gam1.iso", 8);
f = fopen(iso2path, "rb");
if(f == NULL)
{
strncpy(ptz, "gam2.iso", 8);
f = fopen(iso2path, "rb");
if(f == NULL)
{
strncpy(ptz, "disc2.iso", 9);
f = fopen(iso2path, "rb");
}
}
if(f != NULL)
{
gprintf("Devolution: 2nd ISO File for Multi DVD Game %s\n", iso2path);
stat(iso2path, &st);
DEVO_CONFIG->disc2_cluster = st.st_ino;
fclose(f);
}
}
// make sure these directories exist, they are required for Devolution to function correctly
fsop_MakeFolder(fmt("%s:/apps", DeviceName[currentPartition]));
fsop_MakeFolder(fmt("%s:/apps/gc_devo", DeviceName[currentPartition]));
if(memcard_emu)
{
const char *memcard_dir = NULL;
// find or create a 16MB memcard file for emulation
// this file can be located anywhere since it's passed by cluster, not name
// it must be at least 512KB (smallest possible memcard = 59 blocks)
if(gameID[3] == 'J') //Japanese Memory Card
memcard_dir = fmt("%s:/apps/gc_devo/memcard_jap.bin", DeviceName[currentPartition]);
else
memcard_dir = fmt("%s:/apps/gc_devo/memcard.bin", DeviceName[currentPartition]);
gprintf("Devolution: Memory Card File %s\n", memcard_dir);
// check if file doesn't exist
if(stat(memcard_dir, &st) == -1 || st.st_size < (1<<19))
{
// need to enlarge or create it
data_fd = open(memcard_dir, O_WRONLY|O_CREAT);
if(data_fd >= 0)
{
// try to make it 16MB (largest possible memcard = 2043 blocks)
gprintf("Devolution: Resizing Memory Card File...\n");
ftruncate(data_fd, 16<<20);
if(fstat(data_fd, &st) == -1 || st.st_size < (1<<19))
{
// it still isn't big enough. Give up.
st.st_ino = 0;
}
close(data_fd);
}
else
{
// couldn't open or create the memory card file
st.st_ino = 0;
}
}
gprintf("Devolution: Memory Card at %08x\n", st.st_ino);
}
else
st.st_ino = 0;
// set FAT cluster for start of memory card file
// if this is zero memory card emulation will not be used
DEVO_CONFIG->memcard_cluster = st.st_ino;
// flush disc ID and Devolution config out to memory
DCFlushRange((void*)Disc_ID, 64);
//DeviceHandle.UnMountDevolution();
// GX Render Mode (rmode) and register (rmode_reg)
GXRModeObj *rmode = VIDEO_GetPreferredMode(0);
int rmode_reg = 0;// VI_NTSC
switch (videomode)
{
case 1:// PAL50
rmode = &TVPal528IntDf;
rmode_reg = 1;// VI_PAL
break;
case 2:// PAL60 480i
rmode = &TVEurgb60Hz480IntDf;
rmode_reg = 5;// VI_EURGB60
default:
case 3:// NTSC 480i
rmode = &TVNtsc480IntDf;
break;
}
/* Set video mode register */
*Video_Mode = rmode_reg;
DCFlushRange((void*)Video_Mode, 4);
/* Set video mode */
if(rmode != 0)
VIDEO_Configure(rmode);
/* Setup video */
VIDEO_SetBlack(TRUE);
VIDEO_Flush();
VIDEO_WaitVSync();
if(rmode->viTVMode & VI_NON_INTERLACE)
VIDEO_WaitVSync();
else while(VIDEO_GetNextField())
VIDEO_WaitVSync();
/* language setup */
if(lang == 0)
lang = get_wii_language();
else
lang--;
// sram settins for devo language only
syssram *sram;
sram = __SYS_LockSram();
sram->lang = lang;
__SYS_UnlockSram(1); // 1 -> write changes
while(!__SYS_SyncSram());
}
void DEVO_Boot()
{
/* Move our loader into low MEM1 */
loader_bin = (u8*)MEM1_lo_alloc(loader_size);
memcpy(loader_bin, tmp_buffer, loader_size);
DCFlushRange(loader_bin, ALIGN32(loader_size));
MEM2_free(tmp_buffer);
gprintf("%s\n", (loader_bin+4));
/* Boot that binary */
JumpToEntry(DEVO_ENTRY);
}
| [
"[email protected]"
] | |
715c467a2ddb963ec7cd12854e3f48b855c3f6e9 | 8db71681e2a2f797ed3306207e3f99fea35c28b0 | /main.cpp | 949d32d2f8d770c16428534f4b9ea37fb1ba9e72 | [] | no_license | Aleksandra1818/OJP | 425fa3b75f277945a66d0934986a51a452055816 | 47d89486e795f05b060f40e594ae03876517c9ea | refs/heads/master | 2020-04-25T11:18:24.252329 | 2019-06-13T20:21:49 | 2019-06-13T20:21:49 | 172,740,303 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,256 | cpp | #include <SFML/Graphics.hpp>
#include <SFML/Audio.hpp>
#include "Ball.h"
#include "Paddle.h"
#include "Block.h"
#include <iostream>
#include <cstdlib>
using namespace sf;
using namespace std;
vector<int>life;
template <typename Object1, typename Object2> bool collision(Object1& a, Object2& b)
{
return a.right() >= b.left() && a.left() <= b.right() && a.bottom() >= b.top() && a.top() <= b.bottom();
}
bool collision_handle(Paddle& paddle, Ball& ball, Sound& sound)
{
if(!collision(paddle,ball)) return false;
ball.bounce_up();
sound.play();
if(ball.getPosition().x < paddle.getPosition().x) ball.bounce_left();
else if(ball.getPosition().x > paddle.getPosition().x) ball.bounce_right();
}
bool collision_handle_with_block(Ball& ball, Block& block)
{
if(!collision(ball,block)) return false;
if(ball.getPosition().x < block.getPosition().x && (ball.getPosition().y > block.getPosition().y))
{
block.update();
ball.bounce_down();
ball.bounce_left();
}
else if(ball.getPosition().x > block.getPosition().x && (ball.getPosition().y > block.getPosition().y))
{
block.update();
ball.bounce_down();
ball.bounce_right();
}
else if(ball.getPosition().x < block.getPosition().x && ball.getPosition().y < block.getPosition().y)
{
block.update();
ball.bounce_up();
ball.bounce_left();
}
else if(ball.getPosition().x > block.getPosition().x && ball.getPosition().y < block.getPosition().y)
{
block.update();
ball.bounce_up();
ball.bounce_right();
}
}
int main()
{
Ball ball(400,300);
Paddle paddle(400,580);
Block block(100,100);
Block block2(165,100);
Block block3(230,100);
Block block4(295,100);
Block block5(360,100);
Block block6(425,100);
Block block7(490,100);
Block block8(135,145);
Block block9(200,145);
Block block10(265,145);
Block block11(330,145);
Block block12(395,145);
Block block13(155,190);
Block block14(220,190);
RenderWindow window{VideoMode(800, 600), "Magic_ball", Style::Fullscreen};
window.setMouseCursorVisible(false);
Texture tekstura;
tekstura.loadFromFile("niebo.jpg");
SoundBuffer buffer;
buffer.loadFromFile("Startup.wav");
Sound sound;
sound.setBuffer(buffer);
Font font;
font.loadFromFile("arial.ttf");
window.setFramerateLimit(60);
while(window.isOpen())
{
Event zdarzenie;
window.clear();
Sprite stlo(tekstura);
while(window.pollEvent(zdarzenie))
{
if(zdarzenie.type==sf::Event::Closed) window.close();
if(zdarzenie.type==sf::Event::KeyPressed && zdarzenie.key.code==sf::Keyboard::Escape) window.close();
if(zdarzenie.type==sf::Event::MouseButtonPressed &&zdarzenie.mouseButton.button==sf::Mouse::Middle) window.close();
}
ball.update();
paddle.update();
window.draw(stlo);
collision_handle(paddle,ball,sound);
collision_handle_with_block(ball,block);
collision_handle_with_block(ball,block2);
collision_handle_with_block(ball,block3);
collision_handle_with_block(ball,block4);
collision_handle_with_block(ball,block5);
collision_handle_with_block(ball,block6);
collision_handle_with_block(ball,block7);
collision_handle_with_block(ball,block8);
collision_handle_with_block(ball,block9);
collision_handle_with_block(ball,block10);
collision_handle_with_block(ball,block11);
collision_handle_with_block(ball,block12);
collision_handle_with_block(ball,block13);
collision_handle_with_block(ball,block14);
window.draw(block);
window.draw(block2);
window.draw(block3);
window.draw(block4);
window.draw(block5);
window.draw(block6);
window.draw(block7);
window.draw(block8);
window.draw(block9);
window.draw(block10);
window.draw(block11);
window.draw(block12);
window.draw(block13);
window.draw(block14);
window.draw(ball);
window.draw(paddle);
if(ball.getPosition().y > paddle.getPosition().y)
{
Text tekst("-1 zycie",font);
tekst.setCharacterSize(40);
tekst.setStyle(sf::Text::Regular);
tekst.setFillColor(sf::Color::Red);
window.draw(tekst);
life.push_back(1);
cout << life.size();
}
if(life.size()/7==3) {
Text tekst2("THE END",font);
tekst2.setCharacterSize(60);
tekst2.setStyle(sf::Text::Bold);
tekst2.setFillColor(sf::Color::White);
window.draw(tekst2);
}
window.display();
}
life.clear();
return EXIT_SUCCESS;
}
| [
"[email protected]"
] | |
26268ae37decd85d926123451cb87bcc324c00b9 | 9e520130445d1a37a9ff0df2934a6d32a2d22fd0 | /lib/include/rmi/dds_service_sdk.h | d4988b1d25567640db1e68dfca34a7ec9b80a21f | [] | no_license | locke12456/DDS-Sample | 53727b6a562f24d302fa2cee07b81109f312d5af | 46b776ec4ba1fd9bd6325d7e649f1c6e191636fb | refs/heads/master | 2021-01-17T16:02:29.126507 | 2016-08-08T04:13:34 | 2016-08-08T04:13:34 | 64,986,376 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 35,484 | h | /*
* OpenSplice DDS
*
* This software and documentation are Copyright 2006 to 2015 PrismTech
* Limited and its licensees. All rights reserved. See file:
*
* $OSPL_HOME/LICENSE
*
* for full copyright notice and license terms.
*
*/
/**
* @brief Definition of all the base classes of RMI as well as the templates
* and the data types
*/
#ifndef _DDS_SERVICE_SDK_H_
#define _DDS_SERVICE_SDK_H_
// For Windows build
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
#include "WindowsBuild.h"
// For error C2065 || C2143
//TODO remove this everywhere else
// now defined from posix sched.h in ospl==> include\dcps\C++\SACPP\eOrbC\os\win32
#define SCHED_OTHER 0
#else
#define DDS_SERVICE_API
#endif
#include <map>
#include <string>
#include <vector>
#include "sdk_shared_ptr.h"
#include "sdk_sync_print.h"
#include "ccpp_dds_rmi.h"
#ifdef _WRS_KERNEL
#include <sched.h>
#endif
namespace org
{
namespace opensplice
{
namespace DDS_RMI
{
class DDS_SERVICE_API CRuntime;
class DDS_SERVICE_API CInterfaceManager;
class DDS_SERVICE_API CSchedulingTraits;
class DDS_SERVICE_API CInterfaceRegistry;
class DDS_SERVICE_API CInterface;
class DDS_SERVICE_API CInterfaceProxy;
class DDS_SERVICE_API TIMEOUT;
class DDS_SERVICE_API CAsyncReplyHandler;
class DDS_SERVICE_API SystemException;
class DDS_SERVICE_API INTERNAL_ERROR;
class DDS_SERVICE_API SERVICE_NOT_FOUND;
class DDS_SERVICE_API BAD_PARAM;
class DDS_SERVICE_API DDS_ServiceInterface;
///@cond
/**
* \internal
* @brief Qos structure for the CWriter template
* \endinternal
*/
struct CWriterQoSTemplate
{
DDS::ReliabilityQosPolicy reliability;
DDS::DurabilityQosPolicy durability;
DDS::TransportPriorityQosPolicy transportPriority;
DDS::DeadlineQosPolicy deadline;
DDS::LatencyBudgetQosPolicy latency;
DDS::OwnershipQosPolicy ownership;
DDS::OwnershipStrengthQosPolicy ownershipStrength;
DDS::LifespanQosPolicy lifespan;
DDS::DestinationOrderQosPolicy destinationOrder;
DDS::PartitionQosPolicy partition;
};
/**
* \internal
* @brief Qos structure for the CReader template
* \endinternal
*/
struct CReaderQoSTemplate
{
DDS::ReliabilityQosPolicy reliability;
DDS::DurabilityQosPolicy durability;
DDS::DestinationOrderQosPolicy destinationOrder;
DDS::PartitionQosPolicy partition;
};
// Other QoS template have similar structure. Notice that
// constant with specific QoS values identifying common use cases
// will be predefined by the SDK.
const DDS::ReliabilityQosPolicy DEFAULT_WRITER_RELIABILITY_QOS =
{ DDS::RELIABLE_RELIABILITY_QOS,
{ 0, 100000000 }
#ifndef LITE
, false
#endif
};
const DDS::ReliabilityQosPolicy DEFAULT_READER_RELIABILITY_QOS =
{ DDS::BEST_EFFORT_RELIABILITY_QOS,
{ 0, 100000000 }
#ifndef LITE
, false
#endif
};
const DDS::DurabilityQosPolicy DEFAULT_DURABILITY_QOS =
{ DDS::VOLATILE_DURABILITY_QOS };
const DDS::TransportPriorityQosPolicy DEFAULT_TRANSPORT_PRIORITY_QOS =
{ 0 };
const DDS::DeadlineQosPolicy DEFAULT_DEADLINE_QOS =
{
{ DDS::DURATION_INFINITE_SEC, DDS::DURATION_INFINITE_NSEC } };
const DDS::LatencyBudgetQosPolicy DEFAULT_LATENCY_BUDGET_QOS =
{
{ 0, 0 } };
const DDS::OwnershipQosPolicy DEFAULT_OWNERSHIP_QOS =
{ DDS::SHARED_OWNERSHIP_QOS };
const DDS::OwnershipStrengthQosPolicy DEFAULT_OWNERSHIP_STRENGTH_QOS =
{ 0 };
const DDS::LifespanQosPolicy DEFAULT_LIFESPAN_QOS =
{
{ DDS::DURATION_INFINITE_SEC, DDS::DURATION_INFINITE_NSEC } };
const DDS::DestinationOrderQosPolicy DEFAULT_DESTINATION_ORDER_QOS =
{ DDS::BY_RECEPTION_TIMESTAMP_DESTINATIONORDER_QOS };
const DDS::PartitionQosPolicy DEFAULT_PARTITION_QOS =
DDS::PartitionQosPolicy();
const CWriterQoSTemplate DEFAULT_WRITER_QOS_TEMPLATE =
{ DEFAULT_WRITER_RELIABILITY_QOS, DEFAULT_DURABILITY_QOS,
DEFAULT_TRANSPORT_PRIORITY_QOS, DEFAULT_DEADLINE_QOS,
DEFAULT_LATENCY_BUDGET_QOS, DEFAULT_OWNERSHIP_QOS,
DEFAULT_OWNERSHIP_STRENGTH_QOS, DEFAULT_LIFESPAN_QOS,
DEFAULT_DESTINATION_ORDER_QOS, DEFAULT_PARTITION_QOS };
const CReaderQoSTemplate DEFAULT_READER_QOS_TEMPLATE =
{ DEFAULT_READER_RELIABILITY_QOS, DEFAULT_DURABILITY_QOS,
DEFAULT_DESTINATION_ORDER_QOS, DEFAULT_PARTITION_QOS };
const long DDS_SERVICE_SDK_INFINITE = -1;
const int DEFAULT_STATUS_MASK = 0;
/**
* \internal
* @brief Structure for a refined interface resolution
* \endinternal
*/
struct TInterfaceProperty
{
std::string server_class;
std::string server_impl;
std::map<std::string, std::string> properties;
};
/**
* \internal
* @brief real time rules for the remote interface implementation
* \endinternal
*/
struct TSchedulingTraits
{
unsigned short thread_num;
int sched_policy; // e.g. SCHED_OTHER, SCHED_RR, SCHED_FIFO
int priority;
};
const TSchedulingTraits DEFAULT_SCHEDULING_TRAITS =
{ 0, SCHED_OTHER, 0 };
// Shared pointers typedefs
typedef shared_ptr<CInterfaceManager> CInterfaceManager_ref;
typedef shared_ptr<CInterface> CInterface_ref;
typedef shared_ptr<CInterfaceProxy> CInterfaceProxy_ref;
typedef shared_ptr<CRuntime> CRuntime_ref;
typedef shared_ptr<CInterfaceRegistry> CInterfaceRegistry_ref;
typedef ::DDS::DataWriter_var CDDSWriter_ref;
typedef ::DDS::DataReader_var CDDSReader_ref;
typedef ::DDS::DataReaderListener_var CReaderListener_ref;
typedef shared_ptr<DDS_ServiceInterface> DDS_ServiceInterface_ref;
///@endcond
/**
* @brief It is the base exception of all the system exceptions
* indicating middleware-related errors.
*/
class SystemException : public virtual std::exception
{
public:
DDS::ReturnCode_t dds_code;
std::string m_Msg;
SystemException();
SystemException(const char* msg, DDS::ReturnCode_t code =
DDS::RETCODE_OK);
virtual const char*
what() const throw ();
virtual
~SystemException() throw ();
};
/**
* @brief Indicates timeout expiration.
*/
class TIMEOUT : public virtual SystemException
{
public:
TIMEOUT();
};
/**
* @brief Indicates invalid parameter error.
*/
class BAD_PARAM : public virtual SystemException
{
public:
BAD_PARAM(const char* msg);
virtual
~BAD_PARAM() throw ();
};
/**
* @brief Indicates a middleware-internal error.
*/
class INTERNAL_ERROR : public virtual SystemException
{
public:
INTERNAL_ERROR(const char* msg, DDS::ReturnCode_t code =
DDS::RETCODE_OK);
virtual
~INTERNAL_ERROR() throw ();
};
/**
* @brief Reports failure to find a given service.
*/
class SERVICE_NOT_FOUND : public virtual SystemException
{
public:
SERVICE_NOT_FOUND();
virtual
~SERVICE_NOT_FOUND() throw ();
};
/**
* @brief Reports a bad invocation order of the API.
*/
class BAD_INV_ORDER : public virtual SystemException
{
public:
BAD_INV_ORDER(const char* msg);
virtual
~BAD_INV_ORDER() throw ();
};
///@cond
/**
* \internal
* @brief This class allows to manage all the aspects related to the execution of
* a Interface instance (on the server side), such as threading, scheduling class,
* priority, as well as status, e.g., running, paused, etc.
* \endinternal
*/
class CInterfaceManager : public virtual RefCounted
{
public:
virtual
~CInterfaceManager()
{
}
/**
* @brief Start by default single threaded interfaces running in non-realtime scheduling class,
* at nominal priority, with the given timeout.
* @deprecated
*/
virtual void
manage(const TSchedulingTraits& sched = DEFAULT_SCHEDULING_TRAITS,
bool paused = true) = 0;
/**
* @brief To suspend the processing of the managed interface,
* causes also the call of the suspend callback of the interface
* @deprecated
*/
virtual void
suspend() = 0;
/**
* @brief To resume the processing of the managed interface,
* causes also the call of the resume callback of the interface
* @deprecated
*/
virtual void
resume() = 0;
/**
* @brief To get the managed interface
*/
virtual CInterface_ref&
getInterface() = 0;
/**
* @brief starts waiting for incoming requests
*/
virtual void
run() = 0;
/**
* @brief stops waiting for incoming requests
*/
virtual void
shutdown(bool wait_for_completion = true) = 0;
virtual bool
is_running() = 0;
};
///@endcond
/**
* @brief A class providing APIs to manage the runtime that allows clients to communicate with
* servers.This runtime is an abstraction of the underlying DDS environment.
*/
class CRuntime : public virtual RefCounted
{
public:
virtual
~CRuntime()
{
}
// ------------------------------------------------------------
// Common (Server or Client) Operations
// ------------------------------------------------------------
/**
* @brief Gets the Runtime for the default domain (id = 0).
*/
static CRuntime_ref
getDefaultRuntime();
/**
* @brief Gets the Runtime instance for the given domain.
*/
static CRuntime_ref
getRuntime(const DDS::Long domain);
/**
* @brief Sets the default timeout for all the created proxies to
* waiting for replies.
* @param millis timeout in milliseconds
*/
virtual void
setTimeout(unsigned int millis) = 0;
/**
* @brief Get the maximum number in milliseconds to wait before
* considering that the reply will not come
*/
virtual unsigned int
getTimeout() = 0;
/**
* @brief Starts the DDS infrastructure entities.
* Supported arguments :
* --RMIClientThreadingModel=[ST|MT]
* --RMIServiceDiscoveryTimeout=seconds
*
* @param argc configuration arguments count
* @param argv configuration arguments
* @return true if successful
*/
virtual bool
start(int argc, const char* argv[]) = 0;
/**
* @brief Stops the runtime and releases resources.
*/
virtual bool
stop() = 0;
/**
* @brief Indicates if this runtime can be used (not stopped)
*/
virtual bool
isUsable() = 0;
/**
* @brief Gets the DDS Domain Participant used by this runtime
*/
virtual DDS::DomainParticipant_var&
get_dds_domain_participant() = 0;
/**
* Retrieves the DDS_ServiceInterface that allows to
* @return DDS_ServiceInterface
*/
virtual DDS_ServiceInterface_ref
getDDS_ServiceInterface() = 0;
// ------------------------------------------------------------
// Server Specific Operations
// ------------------------------------------------------------
/**
* \internal
* @brief Registers a interface instance.
*
* Notice that the interface instance will need to be explicitly activated
* through its CInterfaceManager. In addition, the interface will automatically
* be inserted in the local registry which will propagate the update to
* remote registries.
* \endinternal
*/
virtual CInterfaceManager_ref
register_interface(const CInterface_ref& svc,
const std::string& name) = 0;
/**
* \internal
* @brief Registers a interface instance.
*
* Notice that the interface instance will need to be explicitly activated
* through its CInterfaceManager. In addition, the interface will automatically
* be inserted in the local registry which will propagate the update to
* remote registries.
*
* The Interface property can be used to express some specific interface features
* that can be helpful in resolving the appropriate interface during discovery.
* \endinternal
*/
/*virtual CInterfaceManager_ref
register_interface(const CInterface_ref& svc,
const TInterfaceProperty& property) = 0;*/
/**
* \internal
* @brief Removes an interface instance having the given name an id
* \endinternal
*/
virtual void
unregister_interface(const std::string& name, int instance) = 0;
/**
* \internal
* @brief Looks up a interface manager for a specific interface instance.
* \endinternal
*/
virtual CInterfaceManager_ref
lookup_interface_manager(const std::string& name) = 0;
/**
* \internal
* @brief activates all the registered services and makes them ready to process incoming requests.
* If succeeded, it blocks the current thread until some other thread calls shutdown.
* \endinternal
*/
virtual void
run() = 0;
/**
* \internal
* @brief de-activates all the registered services.
* \endinternal
*/
virtual void
shutdown(bool wait_for_completion = true) = 0;
virtual bool
is_running() = 0;
// ------------------------------------------------------------
// Client Specific Operations
// ------------------------------------------------------------
/**
* \internal
* @brief Allow the client to discover the available interfaces
* \endinternal
*/
virtual CInterfaceRegistry_ref
getRegistry() = 0;
/**
* @brief Unregisters the Runtime instance for the given domain.
*/
static void
removeRuntime(const DDS::Long domain);
};
/**
* @brief Ancestor class of all server-side interfaces
*
* A first level implementation of this class is provided by Opensplice RMI
* A second level implementation of this class is generated by rmipp
* A third level implementation of this class is to be implemented by the developper
* For each abstract method, the level where it is be provided is indicated
*/
class CInterface : public virtual RefCounted
{
public:
CInterface(){}
virtual
~CInterface(){}
/**
* returns the service identification information.
* class Identification {
* public java.lang.String server_class;
* public java.lang.String server_impl;
* public int server_instance;
* }
*/
virtual ::DDS_RMI::Identification
getIdent() = 0;
/**
* @brief This operation returns a Boolean to indicate if an interface is used to broadcast calls.
*/
virtual bool
isDiffusion() = 0;
///@cond
/**
* \internal
* @brief To indicate the instance number of this interface
* provided by the first level
* \endinternal
*/
virtual void
setInstanceNumber(int num) = 0;
/**
* @brief sets the partitions to be used to send requests and replies.
* @param partition string array of 2 elements. The first one indicates
* the requests partition and the second one indicates the replies partition name.
* @throws BAD_PARAM
*/
virtual void
setPartition(std::string partition[2]) = 0;
/**
* \internal
* @brief Callback called by the interface manager to inform
* the interface implementation that the interface is paused
* It is not abstract as it has often an empty implementation
* Putting this as default, reduce the burden of the developer
* provided by the third level
* \endinternal
*/
virtual void
suspend()
{
}
/**
* \internal
* @brief Callback called by the interface manager to inform
* the interface implementation that the interface is resumed
* It is not abstract as it has often an empty implementation
* Putting this as default, reduce the burden of the developer
* provided by the third level
* \endinternal
*/
virtual void
resume()
{
}
/**
* \internal
* @brief To set the runtime to use
* \endinternal
*/
virtual void
setRuntime(CRuntime_ref runtime);
///@endcond
/**
* @brief
*/
virtual bool
isRunning() = 0;
/**
* @brief To get the runtime used
*/
virtual CRuntime_ref
getRuntime();
/**
* \internal
* @brief Set the reception filter to apply to an operation
* It is effective in diffusion mode only, else it returns false
* \endinternal
*/
virtual bool
setFilter(int operation_index, std::string expr, std::vector<
std::string> params) = 0;
/**
* \internal
* @brief Change the reception filter params of an operation
* It is effective in diffusion mode only, else it returns false
* \endinternal
*/
virtual bool
changeFilterParams(int operation_index,
std::vector<std::string> params) = 0;
private:
CRuntime_ref m_Runtime;
};
/**
* @brief Ancestor class of all client-side interface proxies
*/
class CInterfaceProxy : public virtual RefCounted
{
public:
virtual
~CInterfaceProxy()
{
}
/**
* returns the service identification information.
* class Identification {
* public java.lang.String server_class;
* public java.lang.String server_impl;
* public int server_instance;
* }
*/
virtual ::DDS_RMI::Identification
getIdent() = 0;
/**
* @brief This operation returns a Boolean to indicate if an interface is used to broadcast calls.
*/
virtual bool
isDiffusion() = 0;
///@cond
/**
* \internal
* @brief Identify the client this proxy
* No proxy operation can be called before this setting
* The client code must set this just after retrieving this proxy
* \endinternal
*/
virtual void
setIdentification(std::string name, int instance = 1) = 0;
/**
* @brief sets the partitions to be used to send requests and replies.
* @param partition string array of 2 elements. The first one indicates
* the requests partition and the second one indicates the replies partition name.
* @throws BAD_PARAM
*/
virtual void
setPartition(std::string partition[2]) = 0;
/**
* \internal
* @brief To set the runtime to use
* \endinternal
*/
void
setRuntime(CRuntime_ref runtime)
{
m_Runtime = runtime;
}
///@endcond
/**
* @brief To get the runtime used
*/
CRuntime_ref
getRuntime()
{
return m_Runtime;
}
/**
* @brief Gets the maximum number of milliseconds to wait before
* considering that the reply will not come
*/
virtual unsigned int
getTimeout() = 0;
/**
* @brief Sets the maximum number of milliseconds to wait before
* considering that the reply will not come
*/
virtual void
setTimeout(unsigned int millis) = 0;
private:
CRuntime_ref m_Runtime;
};
///@cond
/**
* \internal
* @brief Ancestor class of all client-side handlers of async replies.
* \endinternal
*/
class CAsyncReplyHandler : public virtual RefCounted
{
public:
virtual
~CAsyncReplyHandler()
{
}
};
/**
* \internal
* @brief Class to find interface proxies
* Need not to be derived by the developer
* \endinternal
*/
class CInterfaceRegistry : public virtual RefCounted
{
public:
virtual
~CInterfaceRegistry()
{
}
/**
* @brief Resolves an interface instance having the given name and returns a proxy to it.
*/
virtual CInterfaceProxy_ref
resolve(const std::string& name) = 0;
virtual CInterfaceProxy_ref
resolve(const std::string& server_name, const std::string& proxy_name,
int server_instance, int proxy_instance) = 0;
virtual CInterfaceProxy_ref
resolve(const std::string& server_name, const std::string& proxy_name,
int proxy_instance)= 0;
/**
* @brief Iterator to go through the discovered interfaces
*/
template<typename OutIterator>
int
list(OutIterator begin, int max_interfaces);
/**
* @brief Iterator that resolves a set of interface instances
* matching the search criteria and creates proxy for them.
*/
template<typename OutIterator>
int
resolve(TInterfaceProperty& property, OutIterator begin,
int max_interfaces);
};
/**
* @brief For the CWriter and CReader templates
*
* TopicInfo must be modeled like this
* struct TopicInfo
* {
* typedef TopicType Type ;
* typedef TopicTypeTypeSupport TypeTS ;
* typedef TopicTypeSeq TypeSeq ;
*
* typedef TopicTypeDataWriter TypedWriter;
* typedef TopicTypeDataWriter_var TypedWriter_ref;
* typedef TopicTypeDataReader TypedReader;
* typedef TopicTypeDataReader_var TypedReader_ref;
*
* std::string TopicName ;
* DDS::TopicQos TopicQos ;
* };
* This macro helps this modeling:
*/
#define TOPIC_INFO(foo) { \
typedef foo Type ; \
typedef foo##TypeSupport TypeTS ; \
typedef foo##Seq TypeSeq ; \
typedef foo##DataWriter TypedWriter; \
typedef foo##DataWriter_var TypedWriter_ref; \
typedef foo##DataReader TypedReader; \
typedef foo##DataReader_var TypedReader_ref; \
std::string TopicName ; \
DDS::TopicQos TopicQos ; }
/**
* \internal
* @brief Template to simplify the publication of topic instances
* \endinternal
*/
template<class TopicInfo>
class CWriter
{
public:
/**
* @brief Creates a writer for a specific topic (see template) and with a set of QoS
*
* By default, the writer is created on a publisher associated
* with the default partition.
* Different from the DDS API, the Partition QoS can be passed at the time
* of creation for the writer, and the SDK will take care of creating the
* proper Publisher if it does not exist yet.
*/
CWriter(CRuntime_ref runtime, const TopicInfo& info,
const CWriterQoSTemplate qos = DEFAULT_WRITER_QOS_TEMPLATE);
/**
* @brief Tell the readers that this instance will be published by this writer
* This is not a mandatory operation as "write" automatically do this
*/
void
register_instance(typename TopicInfo::Type& instance);
/**
* @brief Tell the readers that this instance will no longer be published by this writer
*/
void
unregister_instance(typename TopicInfo::Type& instance);
/**
* @brief Publish a sample
*/
void
write(typename TopicInfo::Type& instance);
/**
* @brief Destroy an instance
*/
void
dispose(typename TopicInfo::Type& instance);
/**
* @brief Get the underlying DDS DataWriter
*
* This will allows the access to the different DDS entities associated with it
* to perform DDS specific operations
* Must be used with extreme care to avoid breaking the correct behavior
*/
CDDSWriter_ref
get_dds_writer();
private:
CDDSWriter_ref m_ddsWriter;
typename TopicInfo::TypedWriter_ref m_typedWriter;
};
/**
* \internal
* @brief Template to simplify the subscription to topic instances
* \endinternal
*/
template<class TopicInfo>
class CReader
{
public:
/**
* @brief Creates a reader for a specific topic (see template) and with a set of QoS.
*
* By default, the reader is created on a subscriber associated with
* the default partition.
* Different from the DDS API, the Partition QoS can be passed at the time
* of creation for the reader, and the SDK will take care of creating
* the proper Subscriber if it does not exist yet.
*/
CReader(CRuntime_ref runtime, const TopicInfo& info,
const CReaderQoSTemplate qos = DEFAULT_READER_QOS_TEMPLATE,
long millis = 100);
~CReader () {
m_waiter.detach_condition(m_condition);
m_typedReader->delete_readcondition(m_condition.in());
}
/**
* @brief Reads by default samples that have not been read yet. It returns the number of samples read,
* or -1 if the number of available samples was exceeding the max samples.
*/
template<typename OutputIterator>
int
read(OutputIterator begin, int maxsamples, long millis,
bool use_filter = false);
/**
* @brief Takes by default samples that have not been read yet. It returns the number of samples taken,
* or -1 if the number of available samples was exceeding the max samples.
*/
template<typename OutputIterator>
int
take(OutputIterator begin, int maxsamples, long millis,
bool use_filter = false);
/**
* @brief Reads all available samples. It returns the number of samples read,
* or -1 if the number of available samples was exceeding the max samples.
*/
template<typename SampleOutputIterator, typename InfoOutputIterator>
int
read(SampleOutputIterator sbegin, InfoOutputIterator ibegin,
int maxsamples, long millis, bool use_filter = false);
/**
* @brief Takes all available samples. It returns the number of samples read,
* or -1 if the number of available samples was exceeding the max samples.
*/
template<typename SampleOutputIterator, typename InfoOutputIterator>
int
take(SampleOutputIterator sbegin, InfoOutputIterator ibegin,
int maxsamples, long millis, bool use_filter = false);
/**
* @brief Attaches a listener to this reader and returns the previously attached listener.
*/
CReaderListener_ref
set_listener(CReaderListener_ref listener, int status_mask =
DEFAULT_STATUS_MASK);
/**
* @brief Get the underlying DDS DataReader
*
* This will allows the access to the different DDS entities associated with it
* to perform DDS specific operations
* Must be used with extreme care to avoid breaking the correct behavior
*/
CDDSReader_ref
get_dds_reader();
/**
* @brief Set the reception filter to be applied
*/
virtual bool
setFilter(std::string expr, std::vector<std::string> params);
/**
* @brief Change the reception filter params
*/
virtual bool
changeFilterParams(std::vector<std::string> params);
private:
CDDSReader_ref m_ddsReader;
typename TopicInfo::TypedReader_ref m_typedReader;
CReaderListener_ref m_listener;
std::string m_filterExpr;
DDS::StringSeq m_filterParams;
DDS::QueryCondition_var m_filter;
DDS::ReadCondition_var m_condition;
DDS::WaitSet m_waiter ;
DDS::ConditionSeq m_active;
DDS::Duration_t m_timeout ;
};
///@endcond
/**
* This interface provides the APIs for performing remote services invocations over DDS.
* Unlike the DDS_Service utility class that operates on the default DDS domain, this
* interface implementations operate on user-defined DDS domains.
* It allows the client applications to get a server proxy to invoke the service.
* It allows the server applications to register the services and run them in
* order to be invoked.
*/
class DDS_ServiceInterface : public virtual RefCounted {
public:
virtual ~DDS_ServiceInterface() {}
/**
* @brief registers a server interface with DDS RMI.
*
* @param [in] l_SrvProvider service implementation shared pointer.
* @param [in] p_sServerName server name.
* @param [in] p_iServerInstanceID server instance id.
* @return "true" if succeeds.
*
*/
template<class T1, class T2>
bool
register_interface(shared_ptr<T2> l_SrvProvider,
const std::string &p_sServerName, int p_iServerInstanceID)
{
bool l_bResult = false;
if (runtime->isUsable())
{
// interface registration
T1::_register_service_info();
// service implementation class
if (l_SrvProvider.get())
{
l_SrvProvider->setRuntime(runtime);
l_SrvProvider->setInstanceNumber(p_iServerInstanceID);
// implementation class registration
CInterfaceManager_ref l_SrvProviderManager =
runtime->register_interface(l_SrvProvider,
p_sServerName);
if (l_SrvProviderManager.get())
{
l_bResult = true;
}
}
}
return l_bResult;
}
/**
* @brief unregisters an already registered interface
* @param [in] p_sServerName server name.
* @param [in] p_iServerInstanceID server instance id.
* @return true if successful.
*/
virtual bool
unregister_interface(const std::string &p_sServerName,
int p_iServerInstanceID) = 0;
/**
* activates the named service so that it is able to process incoming requests.
* @param p_sServerName service name
* @return true if successful
*/
virtual bool
run(const std::string &p_sServerName) = 0;
/**
* de-activates the named service.
* @param p_sServerName service name
* @return true if successful
*/
virtual bool
shutdown(const std::string &p_sServerName) = 0;
/**
* returns the service running state.
* @param p_sServerName service name
* @return true if the service is running, false else.
*/
virtual bool
is_running(const std::string &p_sServerName) = 0;
/**
* @brief creates a service proxy for a client application. This proxy allows to
* invoke the named service operations via DDS. The proxy will represent
* any service instance.
* @param [in] p_sServerName server name.
* @param [in] p_iProxyInstanceID proxy instance id.
* @param [out] p_ServerProxy the proxy to create.
*
* @return "true" when succeeds.
* @throws SERVICE_NOT_FOUND if the service name is not found
*/
template<class T>
bool
getServerProxy(const std::string & p_sServerName,
int p_iProxyInstanceID, shared_ptr<T> &p_ServerProxy)
{
return getServerProxy(p_sServerName, -1, p_iProxyInstanceID,
p_ServerProxy);
}
/**
* @brief creates a service proxy for a client application. This proxy allows to
* invoke the named service operations via DDS. The proxy will represent the provided service instance.
* @param [in] p_sServerName server name.
* @param [in] p_iServerInstanceID server instance id.
* @param [in] p_iProxyInstanceID proxy instance id.
* @param [out] p_ServerProxy the proxy to create.
*
* @return "true" when succeeds.
* @throws SERVICE_NOT_FOUND if the service name is not found
*/
template<class T>
bool
getServerProxy(const std::string & p_sServerName,
int p_iServerInstanceID, int p_iProxyInstanceID,
shared_ptr<T> &p_ServerProxy)
{
bool l_bResult = false;
if (runtime->isUsable())
{
// Interface registration
T::_register_service_info();
// Proxy creation
CInterfaceRegistry_ref l_Registry =
runtime->getRegistry();
CInterfaceProxy_ref l_Proxy = l_Registry->resolve(
p_sServerName, p_sServerName + "_Proxy",
p_iServerInstanceID, p_iProxyInstanceID);
if (l_Proxy.get() != NULL)
{
//l_Proxy->setIdentification( p_sServerName + "_Proxy", p_iProxyInstanceID );
p_ServerProxy = dynamic_cast<T *> (l_Proxy.get());
if (p_ServerProxy.get())
{
l_bResult = true;
}
}
}
return l_bResult;
}
protected:
CRuntime_ref runtime;
};
}
}
}
#endif
| [
"[email protected]"
] | |
f81ecb7bc2d3fb55e4e8381267446b4a2ce9d3aa | 59d1071ec52abc609a9f8736b31762631160f90f | /embedded/libraries/ros_lib/auto_warehousing/MovePackage.h | 7f113368e8bc9c8377d20c62d8d92bce7c8ba3e1 | [
"MIT"
] | permissive | Roboterbastler/roseau | 87f64e20d3a779c4702cf692664e36993b66660e | 6c1d195909d9ed3061c639e462d418ac1c91b3b6 | refs/heads/master | 2020-05-24T15:56:35.751733 | 2018-03-25T16:43:09 | 2018-03-25T16:43:09 | 84,855,207 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,160 | h | #ifndef _ROS_SERVICE_MovePackage_h
#define _ROS_SERVICE_MovePackage_h
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "ros/msg.h"
namespace auto_warehousing
{
static const char MOVEPACKAGE[] = "auto_warehousing/MovePackage";
class MovePackageRequest : public ros::Msg
{
public:
typedef const char* _package_id_type;
_package_id_type package_id;
typedef float _x_type;
_x_type x;
typedef float _y_type;
_y_type y;
typedef float _z_type;
_z_type z;
MovePackageRequest():
package_id(""),
x(0),
y(0),
z(0)
{
}
virtual int serialize(unsigned char *outbuffer) const
{
int offset = 0;
uint32_t length_package_id = strlen(this->package_id);
varToArr(outbuffer + offset, length_package_id);
offset += 4;
memcpy(outbuffer + offset, this->package_id, length_package_id);
offset += length_package_id;
union {
float real;
uint32_t base;
} u_x;
u_x.real = this->x;
*(outbuffer + offset + 0) = (u_x.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_x.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_x.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_x.base >> (8 * 3)) & 0xFF;
offset += sizeof(this->x);
union {
float real;
uint32_t base;
} u_y;
u_y.real = this->y;
*(outbuffer + offset + 0) = (u_y.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_y.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_y.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_y.base >> (8 * 3)) & 0xFF;
offset += sizeof(this->y);
union {
float real;
uint32_t base;
} u_z;
u_z.real = this->z;
*(outbuffer + offset + 0) = (u_z.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_z.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_z.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_z.base >> (8 * 3)) & 0xFF;
offset += sizeof(this->z);
return offset;
}
virtual int deserialize(unsigned char *inbuffer)
{
int offset = 0;
uint32_t length_package_id;
arrToVar(length_package_id, (inbuffer + offset));
offset += 4;
for(unsigned int k= offset; k< offset+length_package_id; ++k){
inbuffer[k-1]=inbuffer[k];
}
inbuffer[offset+length_package_id-1]=0;
this->package_id = (char *)(inbuffer + offset-1);
offset += length_package_id;
union {
float real;
uint32_t base;
} u_x;
u_x.base = 0;
u_x.base |= ((uint32_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_x.base |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_x.base |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_x.base |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
this->x = u_x.real;
offset += sizeof(this->x);
union {
float real;
uint32_t base;
} u_y;
u_y.base = 0;
u_y.base |= ((uint32_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_y.base |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_y.base |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_y.base |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
this->y = u_y.real;
offset += sizeof(this->y);
union {
float real;
uint32_t base;
} u_z;
u_z.base = 0;
u_z.base |= ((uint32_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_z.base |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_z.base |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_z.base |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
this->z = u_z.real;
offset += sizeof(this->z);
return offset;
}
const char * getType(){ return MOVEPACKAGE; };
const char * getMD5(){ return "846ddc75d443460c2f556309b64fcf31"; };
};
class MovePackageResponse : public ros::Msg
{
public:
typedef bool _success_type;
_success_type success;
MovePackageResponse():
success(0)
{
}
virtual int serialize(unsigned char *outbuffer) const
{
int offset = 0;
union {
bool real;
uint8_t base;
} u_success;
u_success.real = this->success;
*(outbuffer + offset + 0) = (u_success.base >> (8 * 0)) & 0xFF;
offset += sizeof(this->success);
return offset;
}
virtual int deserialize(unsigned char *inbuffer)
{
int offset = 0;
union {
bool real;
uint8_t base;
} u_success;
u_success.base = 0;
u_success.base |= ((uint8_t) (*(inbuffer + offset + 0))) << (8 * 0);
this->success = u_success.real;
offset += sizeof(this->success);
return offset;
}
const char * getType(){ return MOVEPACKAGE; };
const char * getMD5(){ return "358e233cde0c8a8bcfea4ce193f8fc15"; };
};
class MovePackage {
public:
typedef MovePackageRequest Request;
typedef MovePackageResponse Response;
};
}
#endif
| [
"[email protected]"
] | |
4f921040a43f641ed508d82f71cc29e1d8d66c22 | 7dad5327abe29bb0c3e539c74436c4770ad88373 | /player.cc | 0584db2cf1fe51b2fa8fbf702547b68c41a030d9 | [] | no_license | QianWu1995/chessGame | 2147f9072acf09738055770885c837ca0d8f7b32 | 3e3591cbd85df55302c75de7cd6397672b5d5bb0 | refs/heads/master | 2020-12-04T15:37:18.287095 | 2017-01-19T17:47:07 | 2017-01-19T17:47:07 | 67,641,971 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 642 | cc | //
// player.cpp
// Chess
//
// Created by Qian Wu on 2016-07-15.
// Copyright © 2016 Qian Wu. All rights reserved.
//
#include "player.h"
#include <memory>
Player::Player(bool black, bool human, int level,shared_ptr<Grid> board)
: black{ black }
, human{ human }
, board{board}
, score{ 0 }
, level{ level }
, isChecked{ false }
{
}
bool Player::isCheckedFunc()
{ //King can be captured
if(black) {
isChecked = board->blackChessUnits[4]->canBeCaptured();
return isChecked;
} else {
isChecked = board->whiteChessUnits[12]->canBeCaptured();
return isChecked;
}
}
Player::~Player()
{
}
| [
"[email protected]"
] | |
d036ab9e7c7f8d82d8f50f16d79dde05002967d8 | 77ff0d5fe2ec8057f465a3dd874d36c31e20b889 | /problems/yukicoder/No0392.cpp | 24c9638e0ce330741d9db7dddd58e3ce6409f63f | [] | no_license | kei1107/algorithm | cc4ff5fe6bc52ccb037966fae5af00c789b217cc | ddf5911d6678d8b110d42957f15852bcd8fef30c | refs/heads/master | 2021-11-23T08:34:48.672024 | 2021-11-06T13:33:29 | 2021-11-06T13:33:29 | 105,986,370 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,816 | cpp | #include "bits/stdc++.h"
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int INF = 1e9;
const ll LINF = 1e18;
inline ll gcd(ll a, ll b) { return b ? gcd(b, a%b) : a; }
inline ll lcm(ll a, ll b) { return a / gcd(a, b)*b; }
template<class S,class T> ostream& operator << (ostream& out,const pair<S,T>& o){ out << "(" << o.first << "," << o.second << ")"; return out; }
template<class T> ostream& operator << (ostream& out,const vector<T> V){ for(int i = 0; i < V.size(); i++){ out << V[i]; if(i!=V.size()-1) out << " ";} return out; }
template<class T> ostream& operator << (ostream& out,const vector<vector<T> > Mat){ for(int i = 0; i < Mat.size(); i++) { if(i != 0) out << endl; out << Mat[i];} return out; }
template<class S,class T> ostream& operator << (ostream& out,const map<S,T> mp){ out << "{ "; for(auto it = mp.begin(); it != mp.end(); it++){ out << it->first << ":" << it->second; if(mp.size()-1 != distance(mp.begin(),it)) out << ", "; } out << " }"; return out; }
/*
<url:https://yukicoder.me/problems/no/392>
問題文============================================================
=================================================================
解説=============================================================
制約が小さいので先に答えを小さい順に作っておけばいい
================================================================
*/
void solve(){
vector<string> ans(4095);
for(int i = 0; i <= 4094;i++){
if(i*2+1<=4094) ans[i*2+1] = ans[i]+"L";
if(i*2+2<=4094) ans[i*2+2] = ans[i]+"R";
}
ll m; cin >> m;
while(m--){
ll A; cin >> A;
cout << ans[A] << endl;
}
}
int main(void) {
cin.tie(0); ios_base::sync_with_stdio(false);
solve();
return 0;
}
| [
"[email protected]"
] | |
994c9ce6d4310d984f9dedca1724112cdb7d38b1 | a0c4ed3070ddff4503acf0593e4722140ea68026 | /source/MAILPLUS/BULLET2/SRC/MSMAIL/DIALOGS.CXX | 370a212b610578f26f25b47aaef7aa6534186c12 | [] | no_license | cjacker/windows.xp.whistler | a88e464c820fbfafa64fbc66c7f359bbc43038d7 | 9f43e5fef59b44e47ba1da8c2b4197f8be4d4bc8 | refs/heads/master | 2022-12-10T06:47:33.086704 | 2020-09-19T15:06:48 | 2020-09-19T15:06:48 | 299,932,617 | 0 | 1 | null | 2020-09-30T13:43:42 | 2020-09-30T13:43:41 | null | UTF-8 | C++ | false | false | 68,275 | cxx | /*
* d i a l o g s . c x x
*
* Bullet dialog stuff
*/
/*
* H e a d e r s
*/
#include <bullinc.cxx>
#include "_command.hxx"
#include "_fin.hxx"
#include "_mtv.hxx"
#include "_blbxc.hxx"
#include "copydis.h"
#include <stdlib.h>
#include "..\vforms\_spell.hxx"
#include "..\vforms\_prefs.h"
_subsystem(commands/dialogs)
ASSERTDATA
#include <!about.hxx>
#include <!folder.hxx>
LOCAL BOOL FEmptyPfldlbx(FLD * pfld);
/*
* N e w F o l d e r . . .
*
* F o l d e r P r o p e r t i e s . . .
*/
LOCAL EC EcGetPoidParent(HMSC hmsc, POID poidFolder, POID poidParent);
LOCAL FLDTP * PfldtpFromTmc(FMTP * pfmtp, TMC tmc);
BOOL FServerPrefs(VOID);
/* Swap tuning header file must occur after the function prototypes
but before any declarations
*/
#include "swapper.h"
/*
- TmcDoNewFolderDialog
-
* Purpose:
* Brings up the New Folder dialog.
*
* Arguments:
* pappwin Parent window of dialog.
* pblob In: pblob.oidObject.rtp indicates default type.
* Out: the new folder's poid.
* oid Parent for the new folder. It must be the same
* type as the pblob.
*
* Returns:
* TMC tmcOk or tmcCancel.
*
* Side effects:
* The New Folder dialog is brought up and taken down.
* The dialog interactor takes care of creating a folder if
* necessary.
*
* Errors:
* Errors are handled within TmcModalDialogParam or the
* interactors, and ignored here.
*/
_private TMC TmcDoNewFolderDialog(PAPPWIN pappwin, PMBLOB pblob,
OID oidParent)
{
TMC tmc;
MBLOB blob;
PFIBMDI pfibmdi = pfibmdiNull;
BOOL fShared = (RtpOfOid(pblob->oidObject) == rtpSharedFolder);
blob.oidContainer = fShared ? oidSharedHierarchy : oidIPMHierarchy;
blob.oidObject =
OidFromRtpRid(RtpOfOid(pblob->oidObject), ridRandom);
pfibmdi = new FIBMDI(&blob);
if (!pfibmdi)
{
tmc = tmcMemoryError;
goto done;
}
++*pfibmdi;
pfibmdi->blobParent.oidContainer = blob.oidContainer;
pfibmdi->blobParent.oidObject = oidParent;
tmc = TmcModalDialogParam(pappwin, &fmtpFolder, pfibmdi);
if (tmc == tmcOk)
*pblob = pfibmdi->blob;
done:
if (pfibmdi)
--*pfibmdi;
return tmc;
}
/*
- TmcDoFolderPropertiesDialog
-
* Purpose:
* Brings up the Folder Properties dialog.
*
* Arguments:
* pappwin Parent window of dialog.
* plspblob Selected folder (list must have only one blob).
*
* Returns:
* TMC tmcOk or tmcCancel.
*
* Side effects:
* The Folder Properties dialog is brought up and taken down.
* The dialog interactor takes care of changing properties if
* necessary.
*
* Errors:
* Errors are handled within TmcModalDialogParam or the
* interactors, and ignored here. Well, except that we set up
* MEM error jumping for getting the selection.
*/
#define coidFoxStateMax 256
_private TMC TmcDoFolderPropertiesDialog(PAPPWIN pappwin, PLSPBLOB plspblob)
{
TMC tmc;
POID pargoid = poidNull;
short coid;
PFIBMDI pfibmdi = pfibmdiNull;
PRSPBLOB prspblob = prspblobNull;
PMBLOB pblob;
FMTP fmtpFolderProps = fmtpFolder;
// Allocate buffer for FOX state. (BUG: this has to be done in a better way)
pargoid = (POID) PvAlloc(sbNull, (coidFoxStateMax+1)*sizeof (OID), fAnySb|fNoErrorJump);
if (!pargoid)
{
tmc = tmcMemoryError;
goto done;
}
// Check if we got a selection.
if ((!plspblob) ||
(!(prspblob = plspblob->Prspblob())))
return tmcMemoryError;
// Get the info of the folder.
pblob = prspblob->Pblob();
Assert(pblob);
Assert(!prspblob->Pblob());
if (!(pfibmdi = new FIBMDI(pblob)))
{
tmc = tmcMemoryError;
goto done;
}
++*pfibmdi;
delete prspblob;
prspblob = prspblobNull;
// The state in dwSave is used to set the FOX state.
coid = coidFoxStateMax;
GetFoxState(pargoid+1, &coid);
if (coid)
{
*((short *) pargoid) = coid;
pfibmdi->dwSave = (DWORD) pargoid;
}
else
{
pfibmdi->dwSave = 0L;
}
#ifdef DEBUG
char rgch[100];
*(PchConvertPslobToPch(&pfibmdi->blob, rgch)) = '\0';
TraceTagFormat1(tagCmdStub, "DoFolderPropertiesDialog: %s", rgch);
#endif
fmtpFolderProps.szCaption = SzFromIdsK(idsCaptionFolderProps);
fmtpFolderProps.hlp = helpidFolderProps;
fmtpFolderProps.vrc.vyBottom =
fmtpFolderProps.vrc.vyTop +
PfldtpFromTmc(&fmtpFolderProps, tmcFolderComment)->dvpt.vy +
PfldtpFromTmc(&fmtpFolderProps, tmcFolderComment)->vdim.dvy +
PfldtpFromTmc(&fmtpFolderProps, tmcFolderOk)->dvpt.vy;
tmc = TmcModalDialogParam(pappwin, &fmtpFolderProps, pfibmdi);
done:
if (prspblob)
delete prspblob;
if (pfibmdi)
--*pfibmdi;
if (pargoid)
FreePv((PV)pargoid);
return tmc;
}
/*
* C l a s s F I B M D I
*/
/*
- FIBMDI::FIBMDI
-
* Purpose:
* constructor. Propagates args down to parent BMDI class.
*
* Arguments:
* *pblob - needed for listbox support
*
* Returns:
* Nothing.
*
* Side effects:
* None.
*
* Errors:
* None.
*/
_public FIBMDI::FIBMDI(PMBLOB pblob) : BMDI(pblob)
{
}
/*
* C l a s s F I N F O L D E R
*/
/*
- FINFOLDER::FINFOLDER
*
* Purpose:
* Empty constructor for C++ happiness.
*/
FINFOLDER::FINFOLDER(VOID)
{
}
/*
- FINFOLDER::EcInitialize
-
* Purpose:
* Initializes the folder type radio button interactor.
*
* Arguments:
* pfld Field which is being initialized.
* pv Pointer to initialization information.
*
* Returns:
* VOID
*
* Side effects:
* If a radio button is clicked, then the check boxes are
* enabled/disabled.
*
* Errors:
*/
EC FINFOLDER::EcInitialize(PFLD pfld, PV pv)
{
PFIBMDI pfibmdi = (PFIBMDI) pv;
OID oidFolder = pfibmdi->blob.oidObject;
char rgchFolddata[sizeof(FOLDDATA) + cchMaxFolderName +
cchMaxFolderComment + 1];
PFOLDDATA pfolddata = (PFOLDDATA) rgchFolddata;
PFLDFLLBX pfldfllbx;
SD sd;
CB cb;
SZ sz;
Unreferenced(pfld);
// Set the 'Always Highlight' flag on our listbox. Don't select items.
pfldfllbx = (PFLDFLLBX) Pdialog()->PfldFromTmc(tmcParentList);
AssertClass(pfldfllbx, FLDFLLBX);
pfldfllbx->SetAlwaysHighlight(fTrue);
pfldfllbx->Pfllbx()->SetDragDrop(fFalse, fFalse);
Enable(tmcSubfolder, !FEmptyPfldlbx(pfldfllbx));
// If a message center is in front, then show it's open folder opened.
if (SdCur().fsdMessageCenter)
{
OID oidOpen;
GetOpenFolderPoid(&oidOpen);
if (RtpOfOid(oidOpen) == RtpOfOid(oidFolder))
pfldfllbx->Pfllbx()->SetOpenedOid(oidOpen);
}
// Set whether type is private or shared.
SetGroup(tmcFolderType, RtpOfOid(oidFolder) == rtpFolder ? 1 : 2);
// If looking at an existing folder, get the info.
if (RidOfOid(oidFolder) != ridRandom)
{
// Disable the type group, since we can't change the type.
Enable(tmcPrivate, fFalse);
Enable(tmcShared, fFalse);
Enable(tmcFolderType, fFalse);
// Get the folder name and comment.
if (RtpOfOid(oidFolder) == rtpFolder)
{
// Load 'em from the store
cb = sizeof(rgchFolddata);
if (EcGetFolderInfo(HmscCommands(), oidFolder,
pfolddata, &cb, poidNull))
return ecGeneralFailure;
Assert(cb <= sizeof(rgchFolddata));
// Put 'em in the edit controls.
sz = GrszPfolddata(pfolddata);
SetText(tmcFolderName, sz);
sz += CchSzLen(sz) + 1;
SetText(tmcFolderComment, sz);
// Get the parent folder and select it.
if (EcGetPoidParent(HmscCommands(), &oidFolder,
&pfibmdi->blobParent.oidObject))
return ecGeneralFailure;
if (RidOfOid(pfibmdi->blobParent.oidObject) != ridRandom)
{
if (pfldfllbx->Pfllbx()->Pfox()->
EcMakeFolderVisible(pfibmdi->blobParent.oidObject) ||
!pfldfllbx->Pfllbx()->
FSetSelectedOid(pfibmdi->blobParent.oidObject))
return ecGeneralFailure;
SetGroup(tmcLevelGroup, 2);
}
// If it's a special folder, disable name and level.
Assert(oidFolder != oidOutbox);
if ((oidFolder == oidInbox) ||
#ifdef NEVER
(oidFolder == oidOutbox) ||
#endif
(oidFolder == oidWastebasket) ||
(oidFolder == oidSentMail))
{
Enable(tmcFolderName, fFalse);
Enable(tmcFolderNameLabel, fFalse);
Enable(tmcTopLevel, fFalse);
Enable(tmcSubfolder, fFalse);
Enable(tmcLevelGroup, fFalse);
Enable(tmcParentList, fFalse);
SetFocus(tmcFolderComment);
}
}
else
{
IDXREC idxrec;
// Assert shared folders are around!
Assert(FSharedFolders());
// Grab the folder properties.
if (EcGetPropertiesSF(oidFolder, &idxrec))
return ecGeneralFailure;
// Set the dialog's fields.
SetText(tmcFolderName, idxrec.szName);
SetText(tmcFolderComment, idxrec.szComment);
SetButton(tmcRead, !!(idxrec.wAttr & wPermRead));
SetButton(tmcWrite, !!(idxrec.wAttr & wPermWrite));
SetButton(tmcFlDelete, !!(idxrec.wAttr & wPermDelete));
// Set the level and parent.
if (EcGetParentSF(oidFolder, &pfibmdi->blobParent.oidObject))
return ecGeneralFailure;
if (idxrec.cLevel != 1)
{
SetGroup(tmcLevelGroup, 2);
if (!pfldfllbx->Pfllbx()->
FSetSelectedOid(pfibmdi->blobParent.oidObject))
return ecGeneralFailure;
}
// Shared folders cannot be moved.
Enable(tmcTopLevel, fFalse);
Enable(tmcSubfolder, fFalse);
Enable(tmcLevelGroup, fFalse);
Enable(tmcParentList, fFalse);
// Raid 2340. If not owner of folder, can't change anything.
if (EcCheckPermissionsPidxrec(&idxrec, 0))
{
Enable(tmcFolderNameLabel, fFalse);
Enable(tmcFolderName, fFalse);
Enable(tmcRead, fFalse);
Enable(tmcWrite, fFalse);
Enable(tmcFlDelete, fFalse);
Enable(tmcFlCommentLabel, fFalse);
Enable(tmcFolderComment, fFalse);
Enable(tmcFolderOk, fFalse);
Pdialog()->SetTmcInit(tmcCancel);
}
}
}
// If creating a new folder, set things up.
else
{
// Only enable shared folder type if available.
if (!FSharedFolders())
Enable(tmcShared, fFalse);
// Select default subfolder.
sd = SdCur();
if (sd.fsdMessageCenter)
{
OID oidOpen;
OID oidParent = pfibmdi->blobParent.oidObject;
GetOpenFolderPoid(&oidOpen);
// Raid 3763. Selected folder, if any, is in blobParent;
// we don't need to figure out what it is any more.
//
// Raid 2060. No folder selection when minimized.
// if ((sd.fsdFolder) && (!sd.fsdMinimized))
// {
// // Get the selected folder.
// if (!(plspblob = PlspblobCur()))
// return ecGeneralFailure;
// oidSelect = PblobFirstPlspblob(plspblob)->oidObject;
// DestroyPlspblob(plspblob);
// if (RtpOfOid(oidSelect) == RtpOfOid(oidFolder))
// {
// // Select it in our current listbox.
// if (((FSlobIsPrivFld(pfibmdi->blob)) &&
// (pfldfllbx->Pfllbx()->Pfox()->
// EcMakeFolderVisible(oidSelect))) ||
// (!pfldfllbx->Pfllbx()->FSetSelectedOid(oidSelect)))
// return ecGeneralFailure;
//
// // Raid 3388. Don't default to subfolder. Note that
// // we select, then deselect, to set default for when
// // subfolder is selected.
// // If it's open too, default to subfolder, else deselect it.
// // if (RidOfOid(oidSelect) == RidOfOid(oidOpen))
// // SetGroup(tmcLevelGroup, 2);
// // else
// // pfldfllbx->DeselectAll();
//
// // Raid 3763. If folder is selected, default to sub.
// SetGroup(tmcLevelGroup, 2);
// }
// }
// Raid 3763. If parent folder passed in, new folder
// defaults to subfolder of that folder.
if (oidParent)
{
// Assert parent is same type as requested.
Assert(RtpOfOid(oidParent) == RtpOfOid(pfibmdi->blob.oidObject));
// Select it in our current listbox.
if (((FSlobIsPrivFld(pfibmdi->blob)) &&
(pfldfllbx->Pfllbx()->Pfox()->
EcMakeFolderVisible(oidParent))) ||
(!pfldfllbx->Pfllbx()->FSetSelectedOid(oidParent)))
return ecGeneralFailure;
// Default to subfolder.
SetGroup(tmcLevelGroup, 2);
}
else if (RidOfOid(oidOpen) != ridRandom && oidOpen != oidSFBad)
{
// Default for subfolder is open folder.
if (RtpOfOid(oidOpen) == RtpOfOid(oidFolder))
{
if (((FSlobIsPrivFld(pfibmdi->blob)) &&
(pfldfllbx->Pfllbx()->Pfox()->
EcMakeFolderVisible(oidOpen))) ||
(!pfldfllbx->Pfllbx()->FSetSelectedOid(oidOpen)))
return ecGeneralFailure;
pfldfllbx->DeselectAll();
}
}
}
// Raid 2820. Moved code here from inside subfolder choosing.
// Set default checkboxes for shared folders.
if (FSlobIsSharFld(pfibmdi->blob))
{
SetButton(tmcRead, fTrue);
SetButton(tmcWrite, fTrue);
SetButton(tmcFlDelete, fFalse);
}
}
// Disable checkboxes if folder type is private.
if (GrvGetGroup(tmcFolderType) == 1)
{
Enable(tmcRead, fFalse);
Enable(tmcWrite, fFalse);
Enable(tmcFlDelete, fFalse);
}
// Deal with enabling and/or expanding dialog.
if (RidOfOid(oidFolder) == ridRandom)
{
// If creating a new folder, disable stuff.
Expand(fFalse, fFalse);
}
else
{
char rgchHelp[64];
// If showing properties, put Help where Options is.
GetText(tmcFolderHelp, rgchHelp, sizeof(rgchHelp));
SetText(tmcFlOptions, rgchHelp);
Show(tmcFolderHelp, fFalse);
}
// Clean all the fields.
Pdialog()->PfldFromTmc(tmcFolderName)->SetDirty(fFalse);
Pdialog()->PfldFromTmc(tmcFolderComment)->SetDirty(fFalse);
Pdialog()->PfldFromTmc(tmcFolderType)->SetDirty(fFalse);
Pdialog()->PfldFromTmc(tmcLevelGroup)->SetDirty(fFalse);
Pdialog()->PfldFromTmc(tmcParentList)->SetDirty(fFalse);
Pdialog()->PfldFromTmc(tmcRead)->SetDirty(fFalse);
Pdialog()->PfldFromTmc(tmcWrite)->SetDirty(fFalse);
Pdialog()->PfldFromTmc(tmcFlDelete)->SetDirty(fFalse);
return ecNone;
}
/*
- FINFOLDER::Click
-
* Purpose:
* Handles clicks in the folder dialogs by calling other
* methods.
*
* Arguments:
* pfld Field which was clicked on.
*
* Returns:
* VOID
*
* Side effects:
* If Private/Shared was clicked, ClickType is called.
* If OK is clicked, ClickOk/Change-Shared/Private is called.
*
* Errors:
* Not handled here.
*/
VOID FINFOLDER::Click(PFLD pfld)
{
DICE diceCursor;
PFIBMDI pfibmdi = (PFIBMDI) Pdialog()->PvInit();
BOOL fCreate = (RidOfOid(pfibmdi->blob.oidObject) ==
ridRandom);
PFLDFLLBX pfldfllbx = (PFLDFLLBX) Pdialog()->PfldFromTmc(tmcParentList);
switch(pfld->Tmc())
{
case tmcFolderOk:
ClickOk(pfibmdi);
break;
case tmcPrivate:
ClickType(fFalse);
break;
case tmcShared:
ClickType(fTrue);
break;
case tmcTopLevel:
AssertClass(pfldfllbx, FLDFLLBX);
pfldfllbx->DeselectAll();
break;
case tmcSubfolder:
AssertClass(pfldfllbx, FLDFLLBX);
if (pfldfllbx->Pfllbx()->FMakeCursorVisible(&diceCursor))
pfldfllbx->SelectEntry(diceCursor, fTrue);
break;
case tmcFlOptions:
// It's the help button in the Folder Properties dialog.
if (!fCreate)
{
if (Papp()->Phelp()->EcShowContext(Pdialog()->Pappwin(),
helpidFolderProps))
DoErrorBoxIds(idsHelpError);
}
else
{
Expand(fTrue, fTrue);
SetFocus(tmcFolderName);
}
break;
}
}
/*
- FINFOLDER::DoubleClick
-
* Purpose:
* Handles double clicks in the folder listbox.
*
* Arguments:
* pfld Field which was clicked on.
*
* Returns:
* VOID
*
* Side effects:
*
* Errors:
* Not handled here.
*/
VOID FINFOLDER::DoubleClick(PFLD pfld)
{
TMC tmc = pfld->Tmc();
if ((tmc == tmcParentList) ||
(tmc == tmcPrivate) ||
(tmc == tmcShared) ||
(tmc == tmcTopLevel))
ClickOk((PFIBMDI) Pdialog()->PvInit());
}
/*
- FINFOLDER::StateChange
-
* Purpose:
* When an item is selected in the folder listbox, sets the
* toplevel/subfolder radio group appropriately.
*
* Arguments:
* pfld Field on which the state has changed.
*
* Returns:
* void
*
* Side effects:
* Sets the toplevel/subfolder radio group value.
*
* Errors:
* None.
*/
VOID FINFOLDER::StateChange(PFLD pfld)
{
if (pfld->Tmc() == tmcParentList)
SetGroup(tmcLevelGroup,
(((FLDFLLBX *) pfld)->Plbx()->Plbxc()->CceMarked(fmarkSelect)) ? 2 : 1);
}
/*
- FINFOLDER::OutOfMemory
-
* Purpose:
* Brings up an error dialog when an out of memory situation
* occurs.
*
* Arguments:
* pfld Field where we ran out of memory.
* ec Error code encountered.
*
* Returns:
* VOID.
*
* Side effects:
* Brings up an error box.
*
* Errors:
* None. An error box is guaranteed.
*/
VOID FINFOLDER::OutOfMemory(PFLD pfld, EC ec)
{
Unreferenced(pfld);
Unreferenced(ec); // For non-DEBUG builds.
TraceTagFormat1(tagNull, "FINFOLDER::OutOfMem ec=%n", &ec);
DoErrorBoxIds(idsGenericOutOfMemory);
}
/*
- FINFOLDER::ClickOk
-
* Purpose:
* Handles clicks on the OK button (or double-clicks on stuff).
*
* Arguments:
* pfibmdi Our treasure trove of info.
*
* Returns:
* VOID
*
* Side effects:
* Create/Change-Shared/Private is called.
*
* Errors:
* Not handled here.
*/
VOID FINFOLDER::ClickOk(PFIBMDI pfibmdi)
{
BOOL fCreate = (RidOfOid(pfibmdi->blob.oidObject) ==
ridRandom);
if (Pdialog()->PfldFromTmc(tmcFolderName)->FDirty() ||
Pdialog()->PfldFromTmc(tmcFolderComment)->FDirty() ||
Pdialog()->PfldFromTmc(tmcFolderType)->FDirty() ||
Pdialog()->PfldFromTmc(tmcLevelGroup)->FDirty() ||
Pdialog()->PfldFromTmc(tmcParentList)->FDirty() ||
Pdialog()->PfldFromTmc(tmcRead)->FDirty() ||
Pdialog()->PfldFromTmc(tmcWrite)->FDirty() ||
Pdialog()->PfldFromTmc(tmcFlDelete)->FDirty())
if (fCreate)
if (FGetButton(tmcPrivate))
CreatePrivate(pfibmdi);
else
CreateShared(pfibmdi);
else
if (FGetButton(tmcPrivate))
ChangePrivate(pfibmdi);
else
ChangeShared(pfibmdi);
else
Pdialog()->ExitModal(tmcOk);
}
/*
- FINFOLDER::CreatePrivate
-
* Purpose:
* Handles clicks on the OK button when tmcPrivate is set.
*
* Arguments:
* VOID
*
* Returns:
* VOID
*
* Side effects:
* If the user wants a private folder, we collect the
* information from the dialog and create the folder.
*
* Errors:
* Handled within. Will not error jump.
*
* +++
* This is in a regular interactor as opposed to an Exit, because
* if there's a name conflict or error, we will want to keep
* the dialog up. If we choose not to keep the dialog up,
* it'll take less code to bring it down than it would to
* reorganize this later.
*/
VOID FINFOLDER::CreatePrivate(PFIBMDI pfibmdi)
{
OID oidParent;
CCH cchFolderName = CchGetTextLen(tmcFolderName) + 1;
CCH cchFolderComment = CchGetTextLen(tmcFolderComment) + 1;
CCH cchFolderOwner = 1;
char rgchFolddata[sizeof(FOLDDATA) + cchMaxFolderName +
cchMaxFolderComment + 1];
PFOLDDATA pfolddata = (PFOLDDATA) rgchFolddata;
MBLOB blob = pfibmdi->blob;
EC ec;
// Check if strings are too long.
if ((cchFolderName > cchMaxFolderName) ||
(cchFolderComment > cchMaxFolderComment))
{
DoErrorBoxIds(idsNewFolderNameTooLong);
if (cchFolderName > cchMaxFolderName)
SetFocus(tmcFolderName);
else
SetFocus(tmcFolderComment);
return;
}
SideAssert(FStartTaskIds(idsStatusCreating, idsStatusFolder, topNull));
// Load up the folddata structure with default values.
if (GrvGetGroup(tmcLevelGroup) == 1)
{
oidParent = OidFromRtpRid(rtpFolder, ridRandom);
}
else
{
((PFLDFLLBX) Pdialog()->PfldFromTmc(tmcParentList))->Pfllbx()->
GetSelectedPoid(&oidParent);
}
pfolddata->fil = 1;
// Check if the parent folder is valid.
Assert(oidParent != oidOutbox);
if (oidParent == oidWastebasket)
{
EndTask();
DoErrorBoxIds(FIsAthens() ? idsMakeSubDeletedMail
: idsMakeSubWastebasket);
return;
}
// Get the name, comment, and owner information.
GetText(tmcFolderName, GrszPfolddata(pfolddata),
cchFolderName);
GetText(tmcFolderComment, GrszPfolddata(pfolddata) + cchFolderName,
cchFolderComment);
*(GrszPfolddata(pfolddata) + cchFolderName + cchFolderComment) = '\0';
// Create the folder in the hierarchy.
ec = EcCreateFolder(HmscCommands(), oidParent, &blob.oidObject,
pfolddata);
EndTask();
if (ec)
{
DoErrorBoxIds((ec == ecInvalidFolderName)
? idsFolderNameInvalid
: (ec == ecDuplicateFolder)
? idsFolderNameDuplicate
: idsNewFolderCantCreate);
if ((ec == ecInvalidFolderName) || (ec == ecDuplicateFolder))
SetFocus(tmcFolderName);
return;
}
pfibmdi->blob = blob;
SetSelectedFolderPslob(&blob);
Pdialog()->ExitModal(tmcOk);
}
/*
- FINFOLDER::CreateShared
-
* Purpose:
* Handles clicks on the OK button when tmcShared is set.
*
* Arguments:
* VOID
*
* Returns:
* VOID
*
* Side effects:
* If the user wants a shared folder, tough luck for now, he
* or she has to wait for a later milestone.
*
* Errors:
* None.
*/
VOID FINFOLDER::CreateShared(PFIBMDI pfibmdi)
{
CP cp;
OID oidParent;
CCH cchFolderName = CchGetTextLen(tmcFolderName) + 1;
CCH cchFolderComment = CchGetTextLen(tmcFolderComment) + 1;
CCH cchFolderOwner = 1;
char rgchName[cchMaxSFName];
char rgchComment[cchMaxSFComment];
MBLOB blob = pfibmdi->blob;
WORD wAttr;
PBLBXC pblbxc; // GAAH.
EC ec;
// Check if strings are too long.
if ((cchFolderName >= cchMaxSFName) ||
(cchFolderComment >= cchMaxSFComment))
{
DoErrorBoxIds(idsNewFolderNameTooLong);
if (cchFolderName >= cchMaxSFName)
SetFocus(tmcFolderName);
else
SetFocus(tmcFolderComment);
return;
}
// Get the name, comment, and owner information.
SideAssert(FStartTaskIds(idsStatusCreating, idsStatusFolder, topNull));
GetText(tmcFolderName, rgchName, cchFolderName);
GetText(tmcFolderComment, rgchComment, cchFolderComment);
if (GrvGetGroup(tmcLevelGroup) == 1)
{
oidParent = oidNull; // top-level folder
}
else
{
((PFLDFLLBX) Pdialog()->PfldFromTmc(tmcParentList))->Pfllbx()->
GetSelectedPoid(&oidParent);
}
// Extract the wAttr stuff
wAttr = wSortDate;
if (FGetButton(tmcRead))
wAttr |= wPermRead;
if (FGetButton(tmcWrite))
wAttr |= wPermWrite;
if (FGetButton(tmcFlDelete))
wAttr |= wPermDelete;
// GAAH. Get ready to update!
pblbxc = (PBLBXC) ((PFLDFLLBX) Pdialog()->PfldFromTmc(tmcParentList))->
Pfllbx()->Plbxc();
// Create the shared folder.
ec = EcCreateSF(rgchName, &oidParent, wAttr, rgchComment,
&blob.oidObject, (LIB) 0, (HF) 0);
// GAAH. Update shared folder listbox.
// Raid 2508. Only update if operation succeeded.
if (!ec)
{
cp.cpobj.oidObject = oidSharedHierarchy;
(void) BLBXC::CbsHandleCbcct(pblbxc, fnevObjectModified, &cp);
}
EndTask();
if (ec)
{
TraceTagFormat1(tagNull, "Create Shared folder error: %n", &ec);
DoErrorBoxIds((ec == ecInvalidFolderName)
? idsFolderNameInvalid
: (ec == ecDuplicateFolder)
? idsFolderNameDuplicate
: idsNewFolderCantCreate);
if ((ec == ecInvalidFolderName) || (ec == ecDuplicateFolder))
SetFocus(tmcFolderName);
return;
}
pfibmdi->blob = blob;
SetSelectedFolderPslob(&blob);
Pdialog()->ExitModal(tmcOk);
}
/*
- FINFOLDER::ChangePrivate
-
* Purpose:
* Handles clicks on the OK button when tmcPrivate is set.
*
* Arguments:
* VOID
*
* Returns:
* VOID
*
* Side effects:
* If the user wants a private folder, we collect the
* information from the dialog and create the folder.
*
* Errors:
* Handled within. Will not error jump.
*/
VOID FINFOLDER::ChangePrivate(PFIBMDI pfibmdi)
{
CCH cchFolderName = CchGetTextLen(tmcFolderName) + 1;
CCH cchFolderComment = CchGetTextLen(tmcFolderComment) + 1;
CCH cchFolderOwner = 1;
CB cb;
char rgchFolddataOld[sizeof(FOLDDATA) + cchMaxFolderName +
cchMaxFolderComment + 1];
char rgchFolddataNew[sizeof(FOLDDATA) + cchMaxFolderName +
cchMaxFolderComment + 1];
PFOLDDATA pfolddataOld = (PFOLDDATA) rgchFolddataOld;
PFOLDDATA pfolddataNew = (PFOLDDATA) rgchFolddataNew;
OID oidParent;
RC rc;
RC rcSave;
EC ec;
HWND hwndBlockApp;
HWND hwndBlockDlg;
// Check if strings are too long.
if ((cchFolderName > cchMaxFolderName) ||
(cchFolderComment > cchMaxFolderComment))
{
DoErrorBoxIds(idsNewFolderNameTooLong);
if (cchFolderName > cchMaxFolderName)
SetFocus(tmcFolderName);
else
SetFocus(tmcFolderComment);
return;
}
// Get the old folddata information.
SideAssert(FStartTaskIds(idsStatusChangingFolder, (IDS) 0, topNull));
cb = sizeof(rgchFolddataNew);
if (EcGetFolderInfo(HmscCommands(), pfibmdi->blob.oidObject,
pfolddataOld, &cb, poidNull))
{
EndTask();
DoErrorBoxIds((ec == ecMemory) ? idsFolderPropsOutOfMemory
: idsFolderPropsCantChange);
return;
}
CopyRgb((PB) pfolddataOld, (PB) pfolddataNew, cb);
Assert(cb <= sizeof(rgchFolddataOld));
// Get the new level information.
if (GrvGetGroup(tmcLevelGroup) == 1)
{
oidParent = OidFromRtpRid(rtpFolder, ridRandom);
}
else
{
((PFLDFLLBX) Pdialog()->PfldFromTmc(tmcParentList))->Pfllbx()->
GetSelectedPoid(&oidParent);
}
Assert(RtpOfOid(oidParent) == RtpOfOid(pfibmdi->blobParent.oidObject));
Assert(oidParent != oidOutbox);
if (oidParent == oidWastebasket)
{
EndTask();
DoErrorBoxIds(FIsAthens() ? idsMakeSubDeletedMail
: idsMakeSubWastebasket);
return;
}
// Block painting while we make the changes. This is ugly!
hwndBlockApp = HwndStartBlockingPaints(PappframeCommands()->Hwnd());
Pdialog()->Pappwin()->GetRcFrame(&rc);
Pdialog()->Pappwin()->GetRcFrame(&rcSave);
hwndBlockDlg = HwndStartBlockingPaints(Pdialog()->Pappwin()->Hwnd());
rc.xLeft += Psmtx()->DimScreen().dx << 1;
rc.xRight += Psmtx()->DimScreen().dx << 1;
Pdialog()->Pappwin()->SetRcFrame(&rc);
#ifdef UGLY_RENAME_MOVE_HACK
// Rename to temporary name.
CopyRgb(SzFromIds(idsTempFolderName), GrszPfolddata(pfolddataNew),
CchSizeString(idsTempFolderName) + 3);
ec = EcSetFolderInfo(HmscCommands(),
pfibmdi->blob.oidObject, pfolddataNew);
if (!ec)
{
// Move to destination folder.
if (RidOfOid(oidParent) != RidOfOid(pfibmdi->blobParent.oidObject))
{
ec = EcMoveCopyFolder(HmscCommands(), oidParent,
pfibmdi->blob.oidObject,
fTrue);
}
if (!ec)
{
// Rename to desired name.
GetText(tmcFolderName, GrszPfolddata(pfolddataNew),
cchFolderName);
GetText(tmcFolderComment, GrszPfolddata(pfolddataNew) + cchFolderName,
cchFolderComment);
*(GrszPfolddata(pfolddataNew) + cchFolderName + cchFolderComment) = '\0';
ec = EcSetFolderInfo(HmscCommands(),
pfibmdi->blob.oidObject, pfolddataNew);
if ((ec) &&
(RidOfOid(oidParent) != RidOfOid(pfibmdi->blobParent.oidObject)))
{
// Undo Move to destination folder.
(VOID) EcMoveCopyFolder(HmscCommands(),
pfibmdi->blobParent.oidObject,
pfibmdi->blob.oidObject,
fTrue);
}
}
if (ec)
{
// Undo Rename to temporary name.
(VOID) EcSetFolderInfo(HmscCommands(),
pfibmdi->blob.oidObject,
pfolddataOld);
if (GrvGetGroup(tmcLevelGroup) != 1)
(VOID) ((PFLDFLLBX) Pdialog()->PfldFromTmc(tmcParentList))->
Pfllbx()->FSetSelectedOid(oidParent);
}
}
#else
// Rename to desired name.
Assert(iszFolddataName == 0);
Assert(iszFolddataComment == 1);
GetText(tmcFolderName, GrszPfolddata(pfolddataNew), cchFolderName);
GetText(tmcFolderComment, GrszPfolddata(pfolddataNew) + cchFolderName,
cchFolderComment);
*(GrszPfolddata(pfolddataNew) + cchFolderName + cchFolderComment) = '\0';
ec = EcSetFolderInfo(HmscCommands(), pfibmdi->blob.oidObject,
pfolddataNew, oidParent);
#endif
// Turn off the hourglass and paint blocking.
EndTask();
if (ec)
Pdialog()->Pappwin()->SetRcFrame(&rcSave);
StopBlockingPaints(hwndBlockDlg);
StopBlockingPaints(hwndBlockApp);
// Bring up an error if appropriate.
if (ec)
{
DoErrorBoxIds((ec == ecInvalidFolderName)
? idsFolderNameInvalid
: (ec == ecDuplicateFolder)
? idsFolderNameDuplicate
: (ec == ecIncestuousMove)
? idsMoveIncestuousError
: idsFolderPropsOutOfMemory);
if ((ec == ecInvalidFolderName) || (ec == ecDuplicateFolder))
SetFocus(tmcFolderName);
return;
}
// We did it! Exit the dialog.
SetSelectedFolderPslob(&pfibmdi->blob);
Pdialog()->ExitModal(tmcOk);
}
/*
- FINFOLDER::ChangeShared
-
* Purpose:
* Handles clicks on the OK button when tmcShared is set.
*
* Arguments:
* VOID
*
* Returns:
* VOID
*
* Side effects:
* If the user wants a shared folder, tough luck for now, he
* or she has to wait for a later milestone.
*
* Errors:
* None.
*/
VOID FINFOLDER::ChangeShared(PFIBMDI pfibmdi)
{
CP cp;
IDXREC idxrec;
CCH cchFolderName = CchGetTextLen(tmcFolderName) + 1;
CCH cchFolderComment = CchGetTextLen(tmcFolderComment) + 1;
CCH cchFolderOwner = 1;
EC ec;
PBLBXC pblbxc; // GAAH.
// Check if strings are too long.
if ((cchFolderName >= cchMaxSFName) ||
(cchFolderComment >= cchMaxSFComment))
{
DoErrorBoxIds(idsNewFolderNameTooLong);
if (cchFolderName >= cchMaxSFName)
SetFocus(tmcFolderName);
else
SetFocus(tmcFolderComment);
return;
}
// Get the old folddata information.
SideAssert(FStartTaskIds(idsStatusChangingFolder, (IDS) 0, topNull));
if (ec = EcGetPropertiesSF(pfibmdi->blob.oidObject, &idxrec))
{
EndTask();
DoErrorBoxIds((ec == ecMemory) ? idsFolderPropsOutOfMemory
: idsFolderPropsCantChange);
return;
}
// GAAH. Get ready to update.
pblbxc = (PBLBXC) ((PFLDFLLBX) Pdialog()->
PfldFromTmc(tmcParentList))->Pfllbx()->Plbxc();
// Change to desired properties.
GetText(tmcFolderName, idxrec.szName, cchFolderName);
GetText(tmcFolderComment, idxrec.szComment, cchFolderComment);
// *FLAG* WORD;Check if incorrect cast of 32-bit value;Replace 16-bit data types with 32-bit types where possible;
idxrec.wAttr &= (WORD) (~(wPermRead|wPermWrite|wPermDelete));
if (FGetButton(tmcRead))
idxrec.wAttr |= wPermRead;
if (FGetButton(tmcWrite))
idxrec.wAttr |= wPermWrite;
if (FGetButton(tmcFlDelete))
idxrec.wAttr |= wPermDelete;
ec = EcSetPropertiesSF(pfibmdi->blob.oidObject, &idxrec, fFalse);
// GAAH. Update shared folder listbox.
// Raid 2508. Only update if operation succeeded.
if (!ec)
{
cp.cpobj.oidObject = oidSharedHierarchy;
(void) BLBXC::CbsHandleCbcct(pblbxc, fnevObjectModified, &cp);
}
// Turn off the hourglass and paint blocking.
EndTask();
// Bring up an error if appropriate.
if (ec)
{
DoErrorBoxIds((ec == ecInvalidFolderName)
? idsFolderNameInvalid
: (ec == ecSharefldBusy)
? idsSharedFldBusy
: (ec == ecSharefldDenied)
? idsSharedFldAccessDenied
: (ec == ecDuplicateFolder)
? idsFolderNameDuplicate
: (ec == ecFolderNotFound)
? idsAccessFolderError
: idsFolderPropsOutOfMemory);
if ((ec == ecInvalidFolderName) || (ec == ecDuplicateFolder))
SetFocus(tmcFolderName);
return;
}
// We did it! Exit the dialog.
SetSelectedFolderPslob(&pfibmdi->blob);
Pdialog()->ExitModal(tmcOk);
}
/*
- FINFOLDER::ClickType
-
* Purpose:
* Handles clicks on the folder type radio buttons.
*
* Arguments:
* BOOL Whether user wants shared or not.
*
* Returns:
* VOID
*
* Side effects:
*
*
* Errors:
* Not handled here.
*/
VOID FINFOLDER::ClickType(BOOL fShared)
{
PFIBMDI pfibmdi = (PFIBMDI) Pdialog()->PvInit();
PFLDFLLBX pfldfllbx = (PFLDFLLBX) Pdialog()->
PfldFromTmc(tmcParentList);
// Only toggle stuff if there's really a change.
if (pfibmdi->blob.oidContainer != (fShared ? oidSharedHierarchy
: oidIPMHierarchy))
{
AssertClass(pfldfllbx, FLDFLLBX);
// Put hourglass up.
Papp()->Pcursor()->Push(rsidWaitCursor);
// Enable the property controls as appropriate.
Enable(tmcRead, fShared);
Enable(tmcWrite, fShared);
Enable(tmcFlDelete, fShared);
// Clear the properties if private.
if (!fShared)
{
SetButton(tmcRead, fFalse);
SetButton(tmcWrite, fFalse);
SetButton(tmcFlDelete, fFalse);
}
else
{
SetButton(tmcRead, fTrue); // Raid 2479
SetButton(tmcWrite, fTrue);
SetButton(tmcFlDelete, fFalse);
}
// Toggle the level list.
pfibmdi->blob.oidContainer =
fShared ? oidSharedHierarchy : oidIPMHierarchy;
pfibmdi->blob.oidObject =
OidFromRtpRid(fShared ? rtpSharedFolder : rtpFolder, ridRandom);
pfibmdi->blob = pfibmdi->blob;
if (pfldfllbx->EcChangePfllbx())
{
Papp()->Pcursor()->Pop();
DoErrorBoxIds(idsGenericOutOfMemory);
Pdialog()->ExitModal(tmcCancel);
return;
}
pfldfllbx->SetAlwaysHighlight(fTrue);
pfldfllbx->Pfllbx()->SetDragDrop(fFalse, fFalse);
Enable(tmcSubfolder, !FEmptyPfldlbx(pfldfllbx));
// If a MCV is frontmost, show its open folder as open.
if (SdCur().fsdMessageCenter)
{
OID oidOpen;
GetOpenFolderPoid(&oidOpen);
if (RtpOfOid(oidOpen) == RtpOfOid(pfibmdi->blob.oidObject))
pfldfllbx->Pfllbx()->SetOpenedOid(oidOpen);
}
// Set level radio group to top level.
SetGroup(tmcLevelGroup, 1);
// Take hourglass down.
Papp()->Pcursor()->Pop();
}
}
/*
- SetRcClient()
-
* Purpose:
* Sets the RC of the client to the desired size. This requires
* resizing the rcFrame appropriately. This function used to be a
* member of class WIN, but was dropped in Layers2.
*
* Arguments:
* pwin in The window to change.
* prc in The RC we wish the client area to be.
*
* Returns:
* Nothing.
*
* Side effects:
* None.
*
* Errors:
* None.
*/
_public void SetRcClient(WIN *pwin, RC *prc)
{
RC rc;
HWND hwnd = pwin->Hwnd();
XSTY xsty;
int dx;
int dy;
rc= *prc;
xsty= GetWindowLong(hwnd, GWL_EXSTYLE);
if (GetMenu(hwnd))
xsty |= fxstyMenu;
CvtRcClientToFrame(&rc, GetWindowLong(hwnd, GWL_STYLE), xsty);
dx= rc.DxWidth();
dy= rc.DyHeight();
pwin->GetRcFrame(&rc);
rc.xRight= rc.xLeft + dx;
rc.yBottom= rc.yTop + dy;
pwin->SetRcFrame(&rc);
}
/*
- FINFOLDER::Expand
-
* Purpose:
* Unfolds the dialog (or disables hidden stuff)
*
* Arguments:
* BOOL Whether we want to expand or not.
* BOOL Expanding because Options >> was clicked?
*
* Returns:
* VOID
*
* Side effects:
* Fields are enabled or disabled, and the dialog may grow.
*
* Errors:
* Not handled here.
*/
VOID FINFOLDER::Expand(BOOL fExpand, BOOL fClicked)
{
// Show the hidden controls as appropriate.
Show(tmcLevelBox, fExpand);
Show(tmcTopLevel, fExpand);
Show(tmcSubfolder, fExpand);
Show(tmcParentList, fExpand);
Show(tmcRead, fExpand);
Show(tmcWrite, fExpand);
Show(tmcFlDelete, fExpand);
Show(tmcFolderComment, fExpand);
Enable(tmcLevelGroup, fExpand);
if (fExpand && !fClicked)
Show(tmcFlOptions, fFalse);
else
Enable(tmcFlOptions, !fExpand);
// Grow the dialog
if (fExpand)
{
RC rc;
int dy;
// Get amount we need to grow.
Pdialog()->PfldFromTmc(tmcFolderComment)->Pctrl()->GetRcFrame(&rc);
dy = rc.yBottom;
Pdialog()->PfldFromTmc(tmcFolderOk)->Pctrl()->GetRcFrame(&rc);
dy += rc.yTop;
Pdialog()->Pappwin()->GetRcClient(&rc);
dy -= (rc.yBottom - rc.yTop);
// If fClicked, all goes down; if not fClicked, go up and down.
Pdialog()->Pappwin()->GetRcFrame(&rc);
if (fClicked)
{
rc.yBottom += dy;
}
else
{
rc.yTop -= (dy >> 1);
rc.yBottom += (dy - (dy >> 1));
}
// Make sure we're all on the screen.
if (rc.yTop < 0)
{
rc.yBottom -= rc.yTop;
rc.yTop = 0;
}
else if ((dy = Psmtx()->DimScreen().dy - rc.yBottom) < 0)
{
rc.yTop += dy;
rc.yBottom += dy;
}
Pdialog()->Pappwin()->SetRcFrame(&rc);
Pdialog()->Pappwin()->GetRcClient(&rc);
SetRcClient(Pdialog(), &rc);
}
}
/*
- FINFOLDER::Show
-
* Purpose:
* Shows a field.
*
* Arguments:
* tmc Tmc of the field.
* fShow Whether or not it is to be shown.
*
* Returns:
* VOID
*
* Side effects:
* The field is shown or hidden.
*/
VOID FINFOLDER::Show(TMC tmc, BOOL fShow)
{
Assert(tmc);
Pdialog()->PfldFromTmc(tmc)->Show(fShow);
}
/*
- EcGetPoidParent
-
* Purpose:
* Gets the parent folder of a given folder.
*
* Arguments:
* hmsc Message store context.
* poidFolder Folder to look for.
* poidParent Parent of that folder.
*
* Returns:
* EC Error, if something went wrong.
*
* Side effects:
* None.
*
* Errors:
* If any occur, the ec is returned. Will not error jump.
*/
_private LOCAL EC EcGetPoidParent(HMSC hmsc, POID poidFolder,
POID poidParent)
{
EC ec = ecNone;
HCBC hcbc = hcbcNull;
OID oidHierarchy = oidIPMHierarchy;
char rgchFolddata[sizeof(FOLDDATA) + cchMaxFolderName +
cchMaxFolderComment + 1];
LCB lcbFolddata;
FIL fil;
DIELEM dielem;
CELEM celem;
// Clear out the parent information.
*poidParent = OidFromRtpRid(rtpFolder, ridRandom);
// Open the hierarchy.
if ((ec = EcOpenPhcbc(hmsc, &oidHierarchy, fwOpenNull, &hcbc,
pfnncbNull, pvNull)) ||
(ec = EcSeekLkey(hcbc, (LKEY) *poidFolder, fTrue)))
goto done;
// Get the folder information so we can determine the fil.
lcbFolddata = sizeof(rgchFolddata);
if (ec = EcGetPelemdata(hcbc, (PELEMDATA) rgchFolddata, &lcbFolddata))
if (ec == ecElementEOD)
ec = ecNone;
else
goto done;
fil = ((PFOLDDATA) PbValuePelemdata((PELEMDATA) rgchFolddata))->fil;
if (fil == 1)
goto done;
// Loop until we find a parent folder or run out.
while (fTrue)
{
// Get previous folder.
lcbFolddata = sizeof(rgchFolddata);
dielem = -2;
if ((ec = EcSeekSmPdielem(hcbc, smCurrent, &dielem)) ||
(ec = EcGetPelemdata(hcbc, (PELEMDATA) rgchFolddata, &lcbFolddata)))
{
if (ec == ecElementEOD)
ec = ecNone;
else
{
Assert(ec != ecContainerEOD);
goto done;
}
}
// Is it indented less than us? If so, stop.
if (((PFOLDDATA) PbValuePelemdata(rgchFolddata))->fil < fil)
{
Assert(((PFOLDDATA) PbValuePelemdata((PELEMDATA) rgchFolddata))->fil + 1 == fil);
dielem = -1;
celem = 1;
if ((ec = EcSeekSmPdielem(hcbc, smCurrent, &dielem)) ||
(ec = EcGetParglkeyHcbc(hcbc, (PARGLKEY) poidParent, &celem)))
goto done;
break;
}
}
done:
if (hcbc)
EcClosePhcbc(&hcbc);
return ec;
}
/*
- PfldtpFromTmc
-
* Purpose:
* Retrieves the field template given a form template and a
* tmc.
*
* Arguments:
* pfmtp The form template.
* tmc The item code.
*
* Returns:
* pfldtp The field template.
*
* Side effects:
* none.
*
* Errors:
* Returns pfldtpNull if not found.
*/
_private LOCAL FLDTP * PfldtpFromTmc(FMTP * pfmtp, TMC tmc)
{
int cfldtp = pfmtp->cfldtp;
FLDTP * pfldtp = pfmtp->rgfldtp;
while (cfldtp--)
if (pfldtp->tmc == tmc)
return pfldtp;
else
pfldtp++;
return (FLDTP *) 0;
}
/*
* M o v e . . .
*
* C o p y . . .
*/
/*
- TmcDoMoveCopyDialog
-
* Purpose:
* Displays the Move Copy dialog used for choosing a
* destination folder.
*
* Arguments:
* pappwin Parent window of dialog.
* fFolder Are we copying/moving a folder, or a message?
* fMove Are we moving or copying a folder/message?
* poid Where to put the resulting oid.
*
* Returns:
* TMC tmcOk, or tmcCancel, depending on user action.
*
* Side effects:
* The Move/Copy dialog is brought up and taken down.
*
* Errors:
* Handled in TmcModalDialog. Ignored here.
*/
TMC TmcDoMoveCopyDialog(PAPPWIN pappwin, BOOL fFolder, BOOL fMove,
BOOL fMultiple, BOOL fShared, POID poid)
{
TMC tmc;
MBLOB blob;
POID pargoid = poidNull;
PMCIBMDI pmcibmdi = pmcibmdiNull;
FMTP fmtpT = fmtpMoveCopy;
short coid;
pargoid = (POID) PvAlloc(sbNull, (coidFoxStateMax+1) * sizeof (OID), fAnySb|fNoErrorJump);
if (!pargoid)
{
tmc = tmcMemoryError;
goto done;
}
blob.oidContainer = fShared ? oidSharedHierarchy : oidIPMHierarchy;
pmcibmdi = new MCIBMDI(&blob);
if (!pmcibmdi)
{
tmc = tmcMemoryError;
goto done;
}
++*pmcibmdi;
pmcibmdi->fFolder = fFolder;
pmcibmdi->fMove = fMove;
pmcibmdi->fMultiple = fMultiple;
pmcibmdi->fShared = fShared;
// The state in dwSave is used to set the FOX state.
coid = coidFoxStateMax;
GetFoxState(pargoid+1, &coid);
if (coid)
{
*((short *) pargoid) = coid;
pmcibmdi->dwSave = (DWORD) pargoid;
}
else
{
pmcibmdi->dwSave = 0L;
}
fmtpT.hlp = fMove ? fFolder ? helpidMoveFolder
: helpidMoveMessage
: fFolder ? helpidCopyFolder
: helpidCopyMessage;
tmc = TmcModalDialogParam(pappwin, &fmtpT, pmcibmdi);
*poid = pmcibmdi->blob.oidObject;
done:
if (pmcibmdi)
--*pmcibmdi;
FreePvNull((PV)pargoid);
return tmc;
}
/*
* C l a s s M C I B M D I
*/
/*
- MCIBMDI::MCIBMDI(pblob)
-
* Purpose:
* constructor. Propagates args down to parent BMDI class.
*
* Arguments:
* *pblob - needed for listbox support
*
* Returns:
* Nothing.
*
* Side effects:
* None.
*
* Errors:
* None.
*/
_public MCIBMDI::MCIBMDI(PMBLOB pblob) : BMDI(pblob)
{
}
/*
* C l a s s F I N M O V E C O P Y
*/
/*
- FINMOVECOPY::FINMOVECOPY
*
* Purpose:
* Empty constructor for C++ happiness.
*/
FINMOVECOPY::FINMOVECOPY(VOID)
{
}
/*
- FINMOVECOPY::EcInitialize
-
* Purpose:
* Sets up the folder listbox to always highlight and to have
* the first item selected. Sets the dialog's label and
* caption.
*
* Arguments:
* pfld Field attached to, ignored.
* pv Pointer to a FINMOVECOPYINIT structure.
*
* Returns:
* VOID
*
* Side effects:
* The listbox's AlwaysHighlight flag is set, and the first
* item in the listbox is selected.
*
* Errors:
* None should happen.
*/
EC FINMOVECOPY::EcInitialize(PFLD pfld, PV pv)
{
PMCIBMDI pmcibmdi = (PMCIBMDI) pv;
PFLDFLLBX pfldfllbx;
char rgchCaption[80];
BOOL fEmpty;
// Do all the other FIN initialization stuff.
FINPLUS::EcInitialize(pfld, pv);
// Set the 'Always Highlight' flag on our listbox, and select 1st item.
pfldfllbx = (PFLDFLLBX) Pdialog()->PfldFromTmc(tmcFlFllbx);
AssertClass(pfldfllbx, FLDFLLBX);
pfldfllbx->SetAlwaysHighlight(fTrue);
pfldfllbx->Pfllbx()->SetDragDrop(fFalse, fFalse);
Enable(tmcOk, !(fEmpty = (FEmptyPfldlbx(pfldfllbx))));
if (!fEmpty)
pfldfllbx->SelectEntry(0, fTrue); // There is a folder.
// If a message center is in front, then show it's open folder opened.
if (SdCur().fsdMessageCenter)
{
OID oidOpen;
GetOpenFolderPoid(&oidOpen);
if (RtpOfOid(oidOpen) == (pmcibmdi->fShared ? rtpSharedFolder
: rtpFolder))
pfldfllbx->Pfllbx()->SetOpenedOid(oidOpen);
}
// Set the caption and listbox label.
FormatString1(rgchCaption, sizeof(rgchCaption),
SzFromIds(pmcibmdi->fMove
? idsCaptionMove
: idsCaptionCopy),
SzFromIds(pmcibmdi->fFolder
? idsOperandFolder
: pmcibmdi->fMultiple
? idsOperandMessages
: idsOperandMessage));
Pdialog()->Pappwin()->SetCaption(rgchCaption);
SetText(tmcMoveCopyTo, SzFromIds(pmcibmdi->fMove
// *FLAG* MoveTo;Replaced by portable MoveToEx;;
? idsLabelMoveTo
: idsLabelCopyTo));
// Set the private/shared buttons.
SetGroup(tmcDestType, pmcibmdi->fShared ? 2 : 1);
// If moving or copying folders, disable the DestType group.
if (pmcibmdi->fFolder)
{
Enable(tmcDestType, fFalse);
Enable(tmcPrivateDest, fFalse);
Enable(tmcSharedDest, fFalse);
}
// If shared folders aren't available, can't use them.
else if (!FSharedFolders())
{
Enable(tmcSharedDest, fFalse);
}
return ecNone;
}
/*
- FINMOVECOPY::Click
-
* Purpose:
* Handles clicks on the New... button by bringing up the New
* Folder dialog.
*
* Arguments:
* pfld Field clicked on.
*
* Returns:
* VOID
*
* Side effects:
* If the New... button was clicked, then we bring up the new
* folder dialog. If a new folder was created, we select it.
*
* Errors:
* None should occur here. Errors in the new folder dialog
* should happen within TmcModalDialog. If we can't select
* the new folder, oh well.
*/
VOID FINMOVECOPY::Click(PFLD pfld)
{
CP cp;
MBLOB blob;
PMCIBMDI pmcibmdi = (PMCIBMDI) Pdialog()->PvInit();
PFLDFLLBX pfldfllbx = (PFLDFLLBX) Pdialog()->PfldFromTmc(tmcFlFllbx);
OID oidSelBefore;
TMC tmc = pfld->Tmc();
BOOL fShared;
BOOL fEmpty;
PBLBXC pblbxc; // GAAH.
if (tmc == tmcNewFolder)
{
fShared = (GrvGetGroup(tmcDestType) != 1);
blob.oidObject =
OidFromRtpRid(fShared ? rtpSharedFolder : rtpFolder, ridRandom);
// GAAH. Get ready to update.
if (fShared)
{
if (!FEmptyPfldlbx(pfldfllbx))
pfldfllbx->Pfllbx()->GetSelectedPoid(&oidSelBefore);
pblbxc = (PBLBXC) pfldfllbx->Pfllbx()->Plbxc();
}
tmc = TmcDoNewFolderDialog(Pdialog()->Pappwin(), &blob, oidNull);
// GAAH. Update shared folder list.
// Raid 2508. Only update if operation succeeded.
if ((fShared) && (tmc == tmcOk))
{
cp.cpobj.oidObject = oidSharedHierarchy;
(void) BLBXC::CbsHandleCbcct(pblbxc, fnevObjectModified, &cp);
Enable(tmcOk, !(fEmpty = (FEmptyPfldlbx(pfldfllbx))));
if (!fEmpty)
if (!pfldfllbx->Pfllbx()->FSetSelectedOid(oidSelBefore))
pfldfllbx->SelectEntry(0, fTrue);
}
if (tmc == tmcMemoryError)
DoErrorBoxIds(idsGenericOutOfMemory);
else if (tmc == tmcOk)
{
Papp()->Pcursor()->Push(rsidWaitCursor);
// Raid 2118. Toggle type if folder of other type created.
// But don't do it if we're moving/copying a folder!
if (!pmcibmdi->fFolder)
{
SetGroup(tmcDestType, FSlobIsPrivFld(blob) ? 1 : 2);
Click(Pdialog()->PfldFromTmc(FSlobIsPrivFld(blob)
? tmcPrivateDest
: tmcSharedDest));
}
// Raid 2417. Expand to show new folder.
if (FSlobIsPrivFld(pmcibmdi->blob))
(VOID) pfldfllbx->Pfllbx()->Pfox()->
EcMakeFolderVisible(blob.oidObject);
// Select the folder that was created.
(VOID) pfldfllbx->Pfllbx()->FSetSelectedOid(blob.oidObject);
Pdialog()->SetFocus(pfldfllbx);
Papp()->Pcursor()->Pop();
}
}
else if (((tmc == tmcPrivateDest) || (tmc == tmcSharedDest)) &&
(RtpOfOid(pmcibmdi->blob.oidContainer) !=
((fShared = (tmc == tmcSharedDest)) ? rtpSharedHierarchy
: rtpHierarchy)))
{
// Put hourglass up.
AssertClass(pfldfllbx, FLDFLLBX);
Papp()->Pcursor()->Push(rsidWaitCursor);
// Toggle the destination list.
pmcibmdi->blob.oidContainer =
fShared ? oidSharedHierarchy : oidIPMHierarchy;
pmcibmdi->blob.oidObject =
OidFromRtpRid(fShared ? rtpSharedFolder : rtpFolder, ridRandom);
if (pfldfllbx->EcChangePfllbx())
{
Papp()->Pcursor()->Pop();
DoErrorBoxIds(idsGenericOutOfMemory);
Pdialog()->ExitModal(tmcCancel);
return;
}
pfldfllbx->SetAlwaysHighlight(fTrue);
pfldfllbx->Pfllbx()->SetDragDrop(fFalse, fFalse);
Enable(tmcOk, !(fEmpty = (FEmptyPfldlbx(pfldfllbx))));
if (!fEmpty)
pfldfllbx->SelectEntry(0, fTrue); // There is a folder.
// If a MCV is frontmost, show its open folder as open.
if (SdCur().fsdMessageCenter)
{
OID oidOpen;
GetOpenFolderPoid(&oidOpen);
if (RtpOfOid(oidOpen) == RtpOfOid(pmcibmdi->blob.oidObject))
pfldfllbx->Pfllbx()->SetOpenedOid(oidOpen);
}
// Take hourglass down.
Papp()->Pcursor()->Pop();
}
}
/*
- FINMOVECOPY::DoubleClick
-
* Purpose:
* Handles double clicks on the listbox by dismissing the
* Folder dialog with an 'Ok'.
*
* Arguments:
* pfld Field clicked on.
*
* Returns:
* VOID
*
* Side effects:
* If the listbox was double-clicked on, we dismiss the dialog.
*
* Errors:
* None should occur here.
*/
VOID FINMOVECOPY::DoubleClick(PFLD pfld)
{
if ((pfld->Tmc() == tmcFlFllbx) &&
(((FLDLBX *) pfld)->Plbx()->Plbxc()->CceMarked(fmarkSelect)))
Pdialog()->ExitModal(tmcOk);
}
/*
- FINMOVECOPY::OutOfMemory
-
* Purpose:
* Brings up an error dialog when an out of memory situation
* occurs.
*
* Arguments:
* pfld Field where we ran out of memory.
* ec Error code encountered.
*
* Returns:
* VOID.
*
* Side effects:
* Brings up an error box.
*
* Errors:
* None. An error box is guaranteed.
*/
VOID FINMOVECOPY::OutOfMemory(PFLD pfld, EC ec)
{
Unreferenced(pfld);
Unreferenced(ec); // For non-DEBUG builds.
TraceTagFormat1(tagNull, "FINMOVECOPY::OutOfMem ec=%n", &ec);
DoErrorBoxIds(idsGenericOutOfMemory);
}
/*
- FINMOVECOPY::Exit
-
* Purpose:
* Handles click on OK by copying selected OID into
* MCIBMDI struct.
*
* Arguments:
* pfld Field FIN is attached to, ignored.
* pv Pointer to the MCIBMDI struct.
*
* Returns:
* VOID
*
* Side effects:
* Changes pmcibmdi->blob.oidObject if OK was pressed.
*
* Errors:
* None should occur.
*/
VOID FINMOVECOPY::Exit(PFLD pfld, PV pv)
{
PMCIBMDI pmcibmdi = (PMCIBMDI) pv;
Unreferenced(pfld);
if (Pdialog()->TmcModalExit() == tmcOk)
{
if (GetKeyState(VK_HOME) < 0)
{
pmcibmdi->blob.oidObject = OidFromRtpRid(rtpFolder, ridRandom);
}
else
{
PFLLBX pfllbx = (PFLLBX) Pdialog()->PfldFromTmc(tmcFlFllbx)->
Pctrl();
AssertClass(pfllbx, FLLBX);
pfllbx->GetSelectedPoid(&pmcibmdi->blob.oidObject);
}
}
}
/*
* P a s s w o r d
*/
/*
- TmcDoPasswordDialog
-
* Purpose:
* Brings up a dialog requesting the password of the
* currently-logged in user.
*
* Arguments:
* pappwin Parent window for dialog.
*
* Returns:
* tmc tmcOk All went well.
* tmcCancel User cancelled, or entered a
* bad password.
* tmcMemoryError OOM when bringing up dialog,
* or error when trying to
* validate password.
*
* Side effects:
* None, other than bringing up the dialog.
*
* Errors:
* Returned in TMC.
*/
_public TMC TmcDoPasswordDialog(PAPPWIN pappwin)
{
TMC tmc;
LOGONINFO logoninfo;
SST sst;
CB cb = sizeof(logoninfo);
PPASSWORDINIT ppasswordinit = ppasswordinitNull;
// Get size of password and allocate memory.
if ((GetSessionInformation(PbmsCommands()->hms, mrtLogonInfo, 0, &sst,
&logoninfo, &cb)) ||
(!(ppasswordinit = (PPASSWORDINIT)
PvAlloc(sbNull, logoninfo.bCredentialsSize, fAnySb))))
{
tmc = tmcMemoryError;
goto done;
}
ppasswordinit->cch = logoninfo.bCredentialsSize;
// Bring up dialog.
tmc = TmcModalDialogParam(pappwin, &fmtpPassword, ppasswordinit);
if (tmc != tmcOk)
goto done;
// Check against real password.
if (CheckIdentity(PbmsCommands()->hms,
(PB) PbmsCommands()->pmsgnames->szIdentity,
(PB) ppasswordinit->rgchPassword))
{
DoErrorBoxSz(SzFromIdsK(idsSecurityPasswordError));
tmc = tmcCancel;
}
done:
FreePvNull(ppasswordinit);
if (tmc == tmcMemoryError)
DoErrorBoxIds(idsGenericOutOfMemory);
return tmc;
}
/*
- FINPASSWORD::FINPASSWORD
*
* Purpose:
* Empty constructor for C++ happiness.
*/
FINPASSWORD::FINPASSWORD(VOID)
{
}
/*
- FINPASSWORD::EcInitialize
-
* Purpose:
* Sets text limit on the edit control.
*
* Arguments:
* pfld Ignored.
* pvInit Ignored.
*
* Returns:
* ec ecNone.
*
* Side effects:
* Sets text limit on the edit control.
*
* Errors:
* None.
*/
EC FINPASSWORD::EcInitialize(PFLD pfld, PV pv)
{
Pdialog()->Pappwin()->SetCaption( SzAppName() );
(VOID) ((FLDEDIT *) pfld)->Pedit()->
CchSetTextLimit(((PPASSWORDINIT) pv)->cch - 1);
return ecNone;
}
/*
- FINPASSWORD::Exit
-
* Purpose:
*
* Arguments:
* pfld Ignored.
* pvInit Ignored.
*
* Returns:
* VOID
*
* Side effects:
*
* Errors:
* None.
*/
VOID FINPASSWORD::Exit(PFLD pfld, PV pv)
{
if (Pdialog()->TmcModalExit() == tmcOk)
pfld->GetText(((PPASSWORDINIT) pv)->rgchPassword,
((PPASSWORDINIT) pv)->cch);
}
/*
* A b o u t . . .
*/
/*
- DoAboutDialog
-
* Purpose:
* Displays the About dialog.
*
* Arguments:
* pappwin Parent window of dialog.
*
* Returns:
* VOID
*
* Side effects:
* The About dialog is brought up and taken down.
*
* Errors:
* Handled in TmcModalDialog. Ignored here.
*/
//extern "C" int ShellAbout(HWND, SZ, SZ, HICON);
extern "C" INT APIENTRY MailShellAboutA(HWND, LPCSTR, LPCSTR, HICON, HINSTANCE);
VOID DoAboutDialog(PAPPWIN pappwin)
{
#define cchSt 400
#define CchStLeft(sz) (rgchSt + cchSt - (sz))
#define SzEnd(sz) (SzFindCh((sz), '\0'))
if (FIsAthens())
{
HICON hicon = NULL;
char rgchSt[cchSt];
PTRP ptrp;
SZ szT;
SZ szAddress = szNull;
Assert(PbmsCommands()->pmsgnames->szMta);
if ((fOnline) && (ptrp = PbmsCommands()->pgrtrp))
{
szT = SzFindCh((szAddress = (SZ) PbOfPtrp(ptrp)), ':');
if (szT)
{
SZ szPrefix = SzFromIdsK(idsAddressPrefix);
CCH cch = CchSzLen(szPrefix);
if (FEqPbRange((PB) szPrefix, (PB)szAddress, cch) && szAddress[cch] == ':')
{
do
szAddress = szT + 1; // skip ':', DBCS safe
while ((szT = SzFindCh(szAddress, '/')) != 0);
}
else
szAddress = szT + 1;
}
}
// User's friendly name.
Assert(PbmsCommands()->pmsgnames->szUser);
Assert(*PbmsCommands()->pmsgnames->szUser);
FormatString1(rgchSt, cchSt, SzFromIdsK(idsAthensLogon1),
PbmsCommands()->pmsgnames->szUser);
szT = SzEnd(rgchSt);
// User's address.
if (szAddress)
{
FormatString1(szT, CchStLeft(szT), SzFromIdsK(idsAthensLogon2),
szAddress);
szT = SzEnd(szT);
}
// User's transport.
Assert(PbmsCommands()->pmsgnames->szMta);
if (*PbmsCommands()->pmsgnames->szMta)
{
FormatString1(szT, CchStLeft(szT), SzFromIdsK(idsAthensLogon3),
PbmsCommands()->pmsgnames->szMta);
szT = SzEnd(szT);
}
// spell copyright
if(Pspell()->FEnabled())
{
szT= SzCopyN("\n", szT, CchStLeft(szT));
szT= SzCopyN(SzFromIdsK(idsSpellCopyright), szT, CchStLeft(szT));
}
if (!(hicon = LoadIcon(HinstCommands(),
MAKEINTRESOURCE(rsidAthensIcon))) ||
!(MailShellAboutA(pappwin->Hwnd(), SzAppName(), rgchSt, hicon,
(HINSTANCE)HinstCommands())))
DoErrorBoxIds(idsGenericOutOfMemory);
if (hicon)
DestroyIcon(hicon);
return;
}
if (TmcModalDialog(pappwin, &fmtpAbout) == tmcMemoryError)
DoErrorBoxIds(idsGenericOutOfMemory);
}
/*
* C o p y r i g h t
*/
_private FORMSDI * PformsdiOpenCopyrightDialog(APPWIN *pappwin)
{
FORMSDI * pformsdi = NULL;
HWND hwndOther = NULL;
Assert(pappwin);
if (pappwin)
hwndOther = pappwin->Hwnd();
if (!hwndOther)
hwndOther = GetLastActivePopup(GetActiveWindow());
pformsdi= new FORMSDI();
if (!pformsdi)
goto Error;
Assert(pformsdi);
if (pformsdi->EcInstall(hwndOther, NULL, rsidNull,
WS_POPUP|fstyDisabled|fstyBorder,
xstyNull,
&fmtpCopyright, NULL, pvNull))
goto Error;
pformsdi->Show(fTrue);
pformsdi->Refresh();
return pformsdi;
Error:
if (pformsdi)
delete pformsdi;
return (FORMSDI *)pvNull;
}
_private VOID CloseCopyrightDialog(FORMSDI * pformsdi, APPWIN *pappwin)
{
if (pformsdi)
{
delete pformsdi;
BringWindowToTop(pappwin->Hwnd());
}
}
/*
* C l a s s F I N A B O U T L I C
*/
/*
- FINABOUTLIC::FINABOUTLIC
*
* Purpose:
* Empty constructor for C++ happiness.
*/
FINABOUTLIC::FINABOUTLIC(VOID)
{
}
/*
- FINABOUTLIC::EcInitialize
-
* Purpose:
*
* Arguments:
* pfld Passed to FIN::Initialize.
* pvInit Passed to FIN::Initialize.
*
* Returns:
* VOID
*
* Side effects:
*
* Errors:
* None.
*/
EC FINABOUTLIC::EcInitialize(PFLD pfld, PV pvInit)
{
EC ec;
HANDLE hrs;
HINSTANCE hinst = (HINSTANCE)HinstCommands();
if (ec = FIN::EcInitialize(pfld, pvInit))
return ec;
hrs = LoadResource(hinst,
FindResource(hinst, MAKEINTRESOURCE(rsidLicense), MAKEINTRESOURCE(rsidLicense)));
if(hrs)
{
UCHAR * pv;
UCHAR rgbUsr[54];
UCHAR rgbOrg[54];
UCHAR rgbSer[21];
USHORT wMonth;
USHORT wYear;
USHORT wDay;
Assert(hrs);
pv = (UCHAR *)LockResource(hrs);
if(DecryptCDData(pv, rgbUsr, rgbOrg, &wYear, &wMonth, &wDay, rgbSer))
{
UnlockResource(hrs);
FreeResource(hrs);
return ecMemory;
}
SetText((TMC) LUserData(0), (SZ)rgbUsr);
SetText((TMC) LUserData(1), (SZ)rgbOrg);
if (ClUserData() > 2)
SetText((TMC) LUserData(2), (SZ)rgbSer);
UnlockResource(hrs);
FreeResource(hrs);
}
return ecNone;
}
/*
* C l a s s F I N A B O U T S Y S
*/
/*
- FINABOUTSYS::FINABOUTSYS
*
* Purpose:
* Empty constructor for C++ happiness.
*/
FINABOUTSYS::FINABOUTSYS(VOID)
{
}
/*
- FINABOUTSYS::EcInitialize
-
* Purpose:
*
* Arguments:
* pfld Passed to FIN::Initialize.
* pvInit Passed to FIN::Initialize.
*
* Returns:
* VOID
*
* Side effects:
*
* Errors:
* None.
*/
EC FINABOUTSYS::EcInitialize(PFLD pfld, PV pvInit)
{
char rgch[80];
long l;
Unreferenced(pfld);
Unreferenced(pvInit);
Assert(ClUserData() == 4);
// Windows mode. WIN dependent.
SetText((TMC) LUserData(0), SzFromIdsK(idsAboutEnhMode));
// (GetWinFlags() & WF_ENHANCED) ? SzFromIdsK(idsAboutEnhMode)
// : SzFromIdsK(idsAboutStdMode));
// Memory free. WIN dependent.
l = GetFreeSpace(0) / 1024;
FormatString1(rgch, sizeof(rgch), SzFromIdsK(idsAboutFreeFmt), &l);
SetText((TMC) LUserData(1), rgch);
// Math coprocessor. WIN dependent.
SetText((TMC) LUserData(2), SzFromIdsK(idsAboutCoprocPresent));
// (GetWinFlags() & WF_80x87) ? SzFromIdsK(idsAboutCoprocPresent)
// : SzFromIdsK(idsAboutCoprocNone));
// Disk free.
l = LDiskFreeSpace(0) / 1024;
FormatString1(rgch, sizeof(rgch), SzFromIdsK(idsAboutFreeFmt), &l);
SetText((TMC) LUserData(3), rgch);
return ecNone;
}
/*
* C l a s s F I N A B O U T M A I L
*/
/*
- FINABOUTMAIL::FINABOUTMAIL
*
* Purpose:
* Empty constructor for C++ happiness.
*/
FINABOUTMAIL::FINABOUTMAIL(VOID)
{
}
/*
- FINABOUTMAIL::EcInitialize
-
* Purpose:
*
* Arguments:
* pfld Passed to FIN::Initialize.
* pvInit Passed to FIN::Initialize.
*
* Returns:
* VOID
*
* Side effects:
*
* Errors:
* None.
*/
EC FINABOUTMAIL::EcInitialize(PFLD pfld, PV pvInit)
{
char rgch[cchMaxPathName];
PTRP ptrp;
PCH pch;
SZ szAddress;
#ifdef tmcBuildBullet
VER ver;
char rgchFmt[40];
#endif
FIN::EcInitialize(pfld, pvInit);
#ifdef tmcBuildBullet
GetBulletVersionNeeded(&ver, subidNone);
GetText(tmcBuildBullet, rgchFmt, sizeof(rgchFmt));
FormatString3(rgch, sizeof(rgch), rgchFmt,
&ver.nMajor, &ver.nMinor, &ver.nUpdate);
SetText(tmcBuildBullet, rgch);
GetText(tmcBuildDate, rgchFmt, sizeof(rgchFmt));
FormatString1(rgch, sizeof(rgch), rgchFmt, ver.szDate);
SetText(tmcBuildDate, rgch);
GetLayersVersionNeeded(&ver, subidNone);
GetText(tmcBuildLayers, rgchFmt, sizeof(rgchFmt));
FormatString3(rgch, sizeof(rgch), rgchFmt,
&ver.nMajor, &ver.nMinor, &ver.nUpdate);
SetText(tmcBuildLayers, rgch);
#endif
Assert(ClUserData() == 2);
Assert(PbmsCommands()->pmsgnames->szUser);
Assert(PbmsCommands()->pmsgnames->szMta);
if (ptrp = PbmsCommands()->pgrtrp)
{
pch = SzFindCh((szAddress = (SZ) PbOfPtrp(ptrp)), ':');
if (pch)
{
SZ szPrefix = SzFromIdsK(idsAddressPrefix);
CCH cch = CchSzLen(szPrefix);
if (FEqPbRange((PB) szPrefix, (PB) szAddress, cch) && szAddress[cch] == ':')
{
do
szAddress = pch + 1; // DBCS safe
while ((pch = SzFindCh(szAddress, '/')) != 0);
}
else
szAddress = pch + 1; // DBCS safe
}
FormatString2(rgch, sizeof(rgch), SzFromIdsK(idsLabelUserFmt),
PbmsCommands()->pmsgnames->szUser, szAddress);
SetText((TMC) LUserData(0), rgch);
}
else
SetText((TMC) LUserData(0), PbmsCommands()->pmsgnames->szUser);
SetText((TMC) LUserData(1), PbmsCommands()->pmsgnames->szMta);
return ecNone;
}
/*
* P r e f s D l g . C X X
*/
_subsystem(commands/prefs)
/*
* Dialog Template and Include File
*/
#include <!prefs.hxx>
/*
- DoPrefDlg
-
* Purpose:
* Does the preferences/options dialog
*
* Arguments:
* none
*
* Returns:
* none
*/
_public VOID DoPrefsDlg(VOID)
{
FMTP * pfmtp = (FMTP *)pvNull;
FLDTP * pfldtp = (FLDTP *)pvNull;
if(!Pspell()->FEnabled() && FIsAthens())
{
short ifldtp;
if(pfmtp = (FMTP *)PvAlloc(sbNull, sizeof(FMTP), fAnySb))
{
CopyRgb((PB)(&fmtpPrefs), (PB)pfmtp, sizeof(FMTP));
pfldtp = pfmtp->rgfldtp = (FLDTP *)PvAlloc(sbNull, sizeof(FLDTP) * fmtpPrefs.cfldtp, fAnySb);
}
if(pfmtp && pfldtp)
{
CopyRgb((PB)(fmtpPrefs.rgfldtp), (PB)pfldtp, sizeof(FLDTP) * fmtpPrefs.cfldtp);
for(ifldtp = 0; ifldtp < pfmtp->cfldtp; ++ifldtp, ++pfldtp)
{
if(pfldtp->tmc == tmcAddToPab)
{
Assert(pfldtp->pegloc == peglocLL);
Assert(pfldtp->tmcPeg == tmcSpellOnSend);
pfmtp->vrc.vyBottom -= pfldtp->vdim.dvy;
pfldtp->dvpt.vx = pfldtp->dvpt.vy = 0;
break;
}
}
Assert(ifldtp < pfmtp->cfldtp);
}
else
{
DoErrorBoxIds(idsGenericOutOfMemory);
goto PrefsBail;
}
}
if(TmcModalDialogParam(NULL, (pfmtp ? pfmtp : &fmtpPrefs), pvNull) == tmcMemoryError)
DoErrorBoxIds(idsGenericOutOfMemory);
PrefsBail:
if(pfmtp)
{
if(pfmtp->rgfldtp)
FreePv(pfmtp->rgfldtp);
FreePv(pfmtp);
}
return;
}
/*
- FINPREFS::FINPREFS
*
* Purpose:
* Empty constructor for C++ happiness.
*/
FINPREFS::FINPREFS(VOID)
{
}
/*
- FINPREFS::EcInitialize
-
* Purpose:
* Inits the the dialog items to reflect the current status of
* the preference block.
*
* Arguments:
* PFLD unreferenced.
* PV unreferenced.
*
* Returns:
* None
*
* Side effects:
* The PBS is loadded and the dialog is modified accordingly.
*/
_private EC FINPREFS::EcInitialize(PFLD pfld, PV pv)
{
PBS pbs;
char rgchBuf[10];
FLDEDIT * pfldedit;
Unreferenced(pv);
Unreferenced(pfld);
(VOID)PvGetPref(pbsidPBS, &pbs, sizeof(PBS));
((FLDBUTTON *)Pdialog()->PfldFromTmc(tmcAddToPab))->Set((pbsidAddToPab & pbs.dwfBool) != 0);
((FLDBUTTON *)Pdialog()->PfldFromTmc(tmcSpellOnSend))->Set((pbsidSpellOnSend & pbs.dwfBool) != 0);
((FLDBUTTON *)Pdialog()->PfldFromTmc(tmcCopyOutGoing))->Set((pbsidCopyOutGoing & pbs.dwfBool) != 0);
((FLDBUTTON *)Pdialog()->PfldFromTmc(tmcNewMailChime))->Set((pbsidNewMailChime & pbs.dwfBool) != 0);
((FLDBUTTON *)Pdialog()->PfldFromTmc(tmcNewMailFlash))->Set((pbsidNewMailFlash & pbs.dwfBool) != 0);
((FLDBUTTON *)Pdialog()->PfldFromTmc(tmcEmptyWBOnExit))->Set((pbsidEmptyWBOnExit & pbs.dwfBool) != 0);
if(!Pspell()->FEnabled())
{
if(FIsAthens())
((FLDBUTTON *)Pdialog()->PfldFromTmc(tmcSpellOnSend))->Show(fFalse);
((FLDBUTTON *)Pdialog()->PfldFromTmc(tmcSpellOnSend))->Enable(fFalse);
}
SzFormatN(pbs.wPolling, rgchBuf, sizeof(rgchBuf));
Pdialog()->PfldFromTmc(tmcServer)->Enable(FServerPrefs() && fOnline);
pfldedit = (FLDEDIT *) Pdialog()->PfldFromTmc(tmcPolling);
AssertClass(pfldedit, FLDEDIT);
if (FIsAthens())
{
EC ec;
if (ec = Pdialog()->PfldFromTmc(tmcEmptyWBOnExit)->
EcSetText(SzFromIdsK(idsEmptyDMOnExit)))
return ec;
}
if (GetPrivateProfileInt(SzFromIdsK(idsSectionApp),
SzFromIdsK(idsEntryNoCheckInterval), 0,
SzFromIdsK(idsProfilePath)))
{
rgchBuf[0] = '\0';
Pdialog()->PfldFromTmc(tmcPollingLabel1)->Enable(fFalse);
Pdialog()->PfldFromTmc(tmcPollingLabel2)->Enable(fFalse);
pfldedit->Enable(fFalse);
}
// Bullet raid #3417.
// Set limit of number of character for 4 digits
// (i.e. 1 to 9999 minutes) and then set the text.
pfldedit->Pedit()->CchSetTextLimit(4);
return Pdialog()->PfldFromTmc(tmcPolling)->EcSetText(rgchBuf);
}
#define cchPollingBufMax 5
#define cchPollingBufMin 0
/*
- FINPREFS::Click
-
* Purpose:
* Processes all dialog click events.
*
* Arguments:
* PFLD pfld of the item selected
*
* Returns:
* None
*
* Errors:
* There is no error handling done by this function.
*/
_private VOID FINPREFS::Click(PFLD pfld)
{
TMC tmc = pfld->Tmc();
BOOL fValue;
WORD wValue;
char rgchBuf[cchPollingBufMax];
PCH pch;
switch(tmc)
{
case tmcServer:
// Need to pass a real hwnd here
EditServerPreferences(Pdialog()->Pappwin()->Hwnd(),
commandsi.pbms->hms);
break;
case tmcPseudoOk:
fValue = ((FLDBUTTON *)Pdialog()->PfldFromTmc(tmcCopyOutGoing))->FGet();
EcSetBoolPref(pbsidCopyOutGoing, fValue);
fValue = ((FLDBUTTON *)Pdialog()->PfldFromTmc(tmcSpellOnSend))->FGet();
EcSetBoolPref(pbsidSpellOnSend, fValue);
fValue = ((FLDBUTTON *)Pdialog()->PfldFromTmc(tmcAddToPab))->FGet();
EcSetBoolPref(pbsidAddToPab, fValue);
fValue = ((FLDBUTTON *)Pdialog()->PfldFromTmc(tmcNewMailChime))->FGet();
EcSetBoolPref(pbsidNewMailChime, fValue);
fValue = ((FLDBUTTON *)Pdialog()->PfldFromTmc(tmcNewMailFlash))->FGet();
EcSetBoolPref(pbsidNewMailFlash, fValue);
fValue = ((FLDBUTTON *)Pdialog()->PfldFromTmc(tmcEmptyWBOnExit))->FGet();
EcSetBoolPref(pbsidEmptyWBOnExit, fValue);
if (GetPrivateProfileInt(SzFromIdsK(idsSectionApp),
SzFromIdsK(idsEntryNoCheckInterval), 0,
SzFromIdsK(idsProfilePath)))
{
if (EcCommitPrefs(fTrue))
DoErrorBoxIds(idsPrefSaveFailure);
Pdialog()->ExitModal(pfld->Tmc());
break;
}
wValue = Pdialog()->PfldFromTmc(tmcPolling)->CchGetTextLen();
if((wValue > cchPollingBufMin) && (wValue < cchPollingBufMax))
{
Pdialog()->PfldFromTmc(tmcPolling)->GetText(rgchBuf, cchPollingBufMax);
for (pch = rgchBuf;
(pch < (rgchBuf + wValue)) && (fValue = FChIsDigit(*pch));
#ifdef DBCS
pch = AnsiNext(pch));
#else
pch++);
#endif
if(fValue)
{
if(wValue = NFromSz(rgchBuf))
{
EcSetWordPref(pbsidPolling, wValue);
if(EcCommitPrefs(fTrue))
DoErrorBoxIds(idsPrefSaveFailure);
Pdialog()->ExitModal(pfld->Tmc());
break;
}
}
}
DoErrorBoxIds(idsInvalidPollingValue);
Pdialog()->SetFocus(Pdialog()->PfldFromTmc(tmcPolling), rsfTab);
break;
default:
break;
}
return;
}
/*
- FINPREFS::OutOfMemory
-
* Purpose:
* Handles all edit control errors for the Preferences dialog.
*
* Arguments:
* PFLD unreferenced
* EC unreferenced
*
* Returns:
* None
*
* Errors:
* None
*
*/
_private VOID FINPREFS::OutOfMemory(PFLD pfld, EC ec)
{
Unreferenced(ec);
Assert(ec == ecMemory);
DoErrorBoxIds(idsGenericOutOfMemory);
Pdialog()->ExitModal(pfld->Tmc());
return;
}
/*
- FServerPrefs
-
* Purpose:
* Determines the availablity of a server preference function
* supplied by the transport.
*
* Arguments:
* None
*
* Returns:
* fTrue iff the function EditServerPreferences is defined
* (and exported) by the transport dll.
*
* Side effects:
* None
*
* Errors:
* There should be none. The transport DLL is already in
* memory. Therefore, the assumption is that this function
* will not fail; AND this will be a very quick function.
*/
_private BOOL FServerPrefs(VOID)
{
int n;
char rgch[14];
char * sz = rgch;
HANDLE hlib = NULL;
FARPROC fp = NULL;
static char szTag[] = "Providers";
static char szLabel[] = "Logon";
static char szDefault[] = "MSSFS32";
static char szExtension[] = ".DLL";
#ifdef NO_BUILD
#ifdef DEBUG
*sz++ = 'D';
#elif defined MINTEST
*sz++ = 'T';
#endif
#endif
if (GetPrivateProfileInt(SzFromIdsK(idsSectionApp),
SzFromIdsK(idsNoServerOptions), 0, SzFromIdsK(idsProfilePath)))
{
return fFalse; // Raid #3853
}
if(n = GetPrivateProfileString(szTag, szLabel, szDefault, sz, sizeof(rgch) -1, SzFromIdsK(idsProfilePath)))
{
SzCopyN(szExtension, sz +n, sizeof(rgch));
if((hlib = LoadLibrary(rgch)) >= (HANDLE)32)
{
// WARNING! The string passed to GetProcAddress()
// must be data segment relative and not code-space.
// This is for future Windows compatibility.
// For more info, see DavidSh
fp = GetProcAddress((HINSTANCE)hlib, "EditServerPreferences");
FreeLibrary((HINSTANCE)hlib);
}
}
return fp != NULL;
}
/*
* O t h e r u s e f u l s t u f f
*/
/*
- FEmptyPfldlbx
-
* Purpose:
* Returns whether or not the given listbox is empty.
*
* Arguments:
* pfld Listbox field in question.
*
* Returns:
* BOOL Is it empty?
*
* Side effects:
* None.
*
* Errors:
* Asserts the given field is a FLDLBX.
*/
_private LOCAL BOOL FEmptyPfldlbx(PFLD pfld)
{
int cceAlloc;
int cceStored;
AssertClass(pfld, FLDLBX);
((FLDLBX *) pfld)->Plbx()->Plbxc()->GetCacheSize(&cceAlloc, &cceStored);
return (cceStored == 0);
}
#ifdef DEBUG
IMPLEMENT_CLSTREE(BULLAF, APPFRAME)
IMPLEMENT_CLSTREE(FIBMDI, BMDI)
IMPLEMENT_CLSTREE(MCIBMDI, BMDI)
IMPLEMENT_CLSTREE(FINABOUTLIC, FINPLUS)
IMPLEMENT_CLSTREE(FINABOUTMAIL, FINPLUS)
#endif
| [
"[email protected]"
] | |
73c7375a9e2f0d607c8bf1df3eeae4c348cc72ad | 7abbb21f2734f7bb72d125eef2bc6114abb28043 | /src/encoder/QueueStats.h | fcd4b557fa76a9b45fbe8a48e0ebe0451761bdf9 | [
"MIT"
] | permissive | dneuge/cvr | 4fbe7246d20185941d85b769d2801e6eb097a11b | 516547dca0672c92aa4f4a37712e6135e7f6b011 | refs/heads/master | 2021-01-17T17:24:51.884891 | 2016-07-24T21:19:56 | 2016-07-24T21:19:56 | 64,080,149 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 330 | h | #ifndef QUEUESTATS_H
#define QUEUESTATS_H
class QueueStats {
public:
unsigned long latestPacketTimestamp;
unsigned long oldestPacketTimestamp;
unsigned long maxPackets;
unsigned long numPackets;
unsigned long maxMillis;
unsigned long totalBytes;
};
#endif /* QUEUESTATS_H */
| [
"[email protected]"
] | |
0beefc229add84eb4c568a1e6d7d767ffb4ca7ca | c3c08165c4fa27b1bbe3a23b0c581005413879c5 | /Compiler/ReASTree.h | ee265792ff3bee65b7f0b965739a0a11fc434fcf | [] | no_license | youyouye/Regular | 79be52308ec04fb38355eddb3f561e4c5acbba1e | 62918980bf3f00e2be394ba74aa798652108c001 | refs/heads/master | 2021-01-11T19:48:25.669228 | 2017-01-19T01:19:28 | 2017-01-19T01:19:28 | 79,401,903 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,833 | h | #ifndef CHARLITERAL_H_
#define CHARLITERAL_H_
#include <memory>
#include "ASTLeaf.h"
#include "ASTList.h"
class Nfa;
class Dfa;
using namespace std;
class CharLiteral:public ASTLeaf
{
public:
CharLiteral();
CharLiteral(Token& t);
~CharLiteral();
shared_ptr<ThompResult> thompson(shared_ptr<Nfa> mNfa);
shared_ptr<ThompResult> x_thompson(shared_ptr<Dfa> mNfa);
private:
};
class CharCollection :public ASTLeaf
{
public:
CharCollection();
CharCollection(Token& t1,Token& t2);
~CharCollection();
string toString();
shared_ptr<ThompResult> thompson(shared_ptr<Nfa> mNfa);
shared_ptr<ThompResult> x_thompson(shared_ptr<Dfa> mNfa);
private:
Token* start;
Token* end;
};
class SelectStmnt :public ASTList
{
public:
SelectStmnt();
SelectStmnt(vector<shared_ptr<ASTree>> t);
~SelectStmnt();
string toString();
shared_ptr<ThompResult> thompson(shared_ptr<Nfa> mNfa);
shared_ptr<ThompResult> x_thompson(shared_ptr<Dfa> mNfa);
private:
};
class LinkStmnt : public ASTList
{
public:
LinkStmnt();
LinkStmnt(vector<shared_ptr<ASTree>> t);
~LinkStmnt();
shared_ptr<ThompResult> thompson(shared_ptr<Nfa> mNfa);
shared_ptr<ThompResult> x_thompson(shared_ptr<Dfa> mNfa);
private:
};
class ClosureStmnt : public ASTList
{
public:
ClosureStmnt();
ClosureStmnt(vector<shared_ptr<ASTree>> t,int mType,bool mGreedy);
~ClosureStmnt();
string toString();
shared_ptr<ThompResult> thompson(shared_ptr<Nfa> mNfa);
shared_ptr<ThompResult> x_thompson(shared_ptr<Dfa> mNfa);
int type; // 1:* 2:+ 3:?
bool greedy;
private:
};
class RepeatStmnt : public ASTList{
public:
RepeatStmnt();
RepeatStmnt(vector<shared_ptr<ASTree>> t, int start,int end,bool mGreedy);
~RepeatStmnt();
shared_ptr<ThompResult> x_thompson(shared_ptr<Dfa> mNfa);
int start;
int end;
bool greedy;
};
class ForwardLook : public ASTList
{
public:
ForwardLook();
ForwardLook(vector<shared_ptr<ASTree>> t);
~ForwardLook();
shared_ptr<ThompResult> x_thompson(shared_ptr<Dfa> mNfa);
private:
};
class ReverseLook : public ASTList
{
public:
ReverseLook ();
ReverseLook(vector<shared_ptr<ASTree>> t);
~ReverseLook ();
shared_ptr<ThompResult> x_thompson(shared_ptr<Dfa> mNfa);
private:
};
class NameCatch : public ASTList
{
public:
NameCatch();
NameCatch(vector<shared_ptr<ASTree>> t,string mname);
~NameCatch();
shared_ptr<ThompResult> x_thompson(shared_ptr<Dfa> mNfa);
string name;
private:
};
class NameCheck : public ASTList
{
public:
NameCheck();
NameCheck(vector<shared_ptr<ASTree>> t);
NameCheck(string mname);
~NameCheck();
shared_ptr<ThompResult> x_thompson(shared_ptr<Dfa> mNfa);
string name;
private:
};
class AnonymityCatch : public ASTList
{
public:
AnonymityCatch();
AnonymityCatch(vector<shared_ptr<ASTree>> t);
~AnonymityCatch();
shared_ptr<ThompResult> x_thompson(shared_ptr<Dfa> mNfa);
private:
};
#endif | [
"[email protected]"
] | |
348c98d4dc9999cf8ba254ee4160779f492ff2a4 | 7e18522294e211534e0f14267062dc6c9a1dfd5a | /src/module/cmds/cmds.h | 5018628f5ac212c47e12d7e7b8762ed5c4e69aa1 | [] | no_license | lanzze/Diffusion | d4e752d1ca47b2c1e03762451460c6a08def43a6 | 15ddc10332f62d7586ef0b5f53467f82f9c30ed2 | refs/heads/master | 2021-10-22T22:40:03.761515 | 2017-12-12T13:20:39 | 2017-12-12T13:20:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 318 | h | //
// Created by Angel on 2017/3/31.
//
#ifndef DIFFUSION_CMDS_H
#define DIFFUSION_CMDS_H
namespace lc{
typedef class CommandKey {
public:
static const int FILE_CIPHER = 1;
static const int TEXT_ENCIPHER = 2;
static const int TEXT_DECIPHER = 3;
} cmd;
}
#endif //DIFFUSION_CMDS_H
| [
"[email protected]"
] | |
f8c1584f0ec7a80e5e1848148600d9ff63bd61a3 | 44bee3f4d8a92a353db08532e613a0b05d2f8c31 | /third/basic_lib/lib2-64/bsl/include/bsl/var/Ref.h | 35f982691cd2d90c9ad6f7dec8e9730755c12374 | [] | no_license | tengyue-ma/spokenlanguageunderstand | 73e4acb90295f9b38e3ab40355729560f614d75a | 8877ba7c20aee5b0a597b842974c50a51b804bda | refs/heads/master | 2020-04-23T13:35:57.015770 | 2019-02-18T05:41:34 | 2019-02-18T05:41:34 | 171,202,326 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 19,778 | h | /***************************************************************************
*
* Copyright (c) 2008 Baidu.com, Inc. All Rights Reserved
* $Id: Ref.h,v 1.4 2010/04/28 12:45:33 scmpf Exp $
*
**************************************************************************/
/**
* @file Ref.h
* @author chenxm([email protected])
* @date 2008/09/24 01:30:35
* @version $Revision: 1.4 $
* @brief
*
**/
#ifndef __BSL_VAR_REF_H__
#define __BSL_VAR_REF_H__
#include "bsl/var/IRef.h"
#include "bsl/var/Null.h"
namespace bsl{
namespace var{
class Ref: public IRef{
public:
typedef IRef::string_type string_type;
typedef IRef::field_type field_type;
//special methods
Ref( )
:IRef(), _p(&Null::null) {}
Ref( const Ref& other )
:IRef(other), _p(other._p) { }
Ref( IVar& var )
:IRef(), _p(&var){
if ( var.is_ref() ){
IRef * __p = dynamic_cast<IRef*>(&var);
if ( NULL != __p ){
//make a shortcut
_p = &__p->ref();
}
}
}
/**
* @brief Ref is a kind of "weak ref" which do nothing on destructor
*
* @see
* @author chenxm
* @date 2008/09/25 12:08:53
**/
~Ref(){
//pass
}
Ref& operator = ( const Ref& other ){
_p = other._p;
return *this;
}
virtual IVar& ref() const {
return *_p;
}
//methods for all
/**
* @brief 清理函数
*
* @return void
* @retval
* @see
* @author chenxm
* @date 2010/03/17 17:48:46
**/
virtual void clear() {
return _p->clear();
}
/**
* @brief 克隆函数
*
* 该函数只克隆本身结点,不克隆子结点,对引用类型,克隆指向的结点
*
* @param [in] rp : bsl::ResourcePool&
* @return IVar&
* @retval
* @see
* @author chenxm
* @date 2010/03/17 17:58:07
**/
virtual IVar& clone( bsl::ResourcePool& rp ) const {
return _p->clone(rp);
}
/**
* @brief 克隆函数
*
* 由is_deep_copy参数控制是否深复制
* 若为false, 只克隆本身结点,不克隆子结点
* 若为true, 克隆本身结点,并且递归克隆子结点
* 对引用类型,克隆指向的结点
*
**@param [in] rp : bsl::ResourcePool&
* @param [in] is_deep_copy : bool
* @return IVar&
* @retval
* @see
* @author chenxm
* @date 2010/03/17 17:58:07 / modified by zhujianwei at 2011/03/22
**/
virtual IVar& clone( bsl::ResourcePool& rp, bool is_deep_copy ) const {
return _p->clone(rp, is_deep_copy);
}
/**
* @brief 输出调试信息(仅用于调试)可通过verbose_level控制递归层数
*
* @return string_type
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:44:20
**/
virtual string_type dump(size_t verbose_level = 0) const {
string_type res;
res.appendf("@%p: ", _p);
res.append(_p->dump(verbose_level));
return res;
}
/**
* @brief 转化为字符串
*
* @return string_type
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:44:20
**/
virtual string_type to_string() const {
return _p->to_string();
}
/**
* @brief 获取类型字符串(所有var类型都支持,仅用于调试使用,勿用于类型判断)
*
* @return string_type
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:44:20
**/
virtual string_type get_type() const {
string_type res("bsl::var::Ref(");
res.append(_p->get_type());
res.append(")");
return res;
}
/**
* @brief 获取类型掩码(所有var类型都支持)
*
* @return IVar::mask_type
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:44:20
**/
virtual IVar::mask_type get_mask() const {
return IVar::IS_REF | _p->get_mask();
}
virtual Ref& operator = ( IVar& var ){
if ( var.is_ref() ){
IRef * __p = dynamic_cast<IRef*>(&var);
if ( NULL != __p ){
//make a shortcut
_p = &__p->ref();
}else{
//unknown ref type
_p = &var;
}
}else{
//non-ref value;
_p = &var;
}
return *this;
}
//methods for all, test methods
virtual bool is_null() const {
return _p->is_null();
}
virtual bool is_ref() const {
return true;
}
virtual bool is_bool() const {
return _p->is_bool();
}
virtual bool is_number() const {
return _p->is_number();
}
virtual bool is_int8() const {
return _p->is_int8();
}
virtual bool is_uint8() const {
return _p->is_uint8();
}
virtual bool is_int16() const {
return _p->is_int16();
}
virtual bool is_uint16() const {
return _p->is_uint16();
}
virtual bool is_int32() const {
return _p->is_int32();
}
virtual bool is_uint32() const {
return _p->is_uint32();
}
virtual bool is_int64() const {
return _p->is_int64();
}
virtual bool is_uint64() const {
return _p->is_uint64();
}
virtual bool is_float() const {
return _p->is_float();
}
virtual bool is_double() const {
return _p->is_double();
}
/**
* @brief 判断是否是字符串类型
*
* @return bool
* @retval
* @see
* @author chenxm
* @date 2010/03/17 18:05:44
**/
virtual bool is_string() const {
return _p->is_string();
}
virtual bool is_array() const {
return _p->is_array();
}
virtual bool is_dict() const {
return _p->is_dict();
}
virtual bool is_callable() const {
return _p->is_callable();
}
virtual bool is_raw() const {
return _p->is_raw();
}
//methods for value
/**
* @brief 转化为布尔类型
*
* @return bool
* @retval
* @see
* @author chenxm
* @date 2010/03/17 18:09:14
**/
virtual bool to_bool() const {
return _p->to_bool();
}
/**
* @brief 转化为8位有符号整数类型(所有is_number()返回真的类型都支持)
*
* @return signed char
* @retval
* @see
* @author chenxm
* @date 2010/03/17 18:09:14
**/
virtual signed char to_int8() const {
return _p->to_int8();
}
/**
* @brief 转化为8位无符号整数类型(所有is_number()返回真的类型都支持)
*
* @return unsigned char
* @retval
* @see
* @author chenxm
* @date 2010/03/17 18:09:14
**/
virtual unsigned char to_uint8() const {
return _p->to_uint8();
}
/**
* @brief 转化为16位有符号整数类型(所有is_number()返回真的类型都支持)
*
* @return signed short
* @retval
* @see
* @author chenxm
* @date 2010/03/17 18:09:14
**/
virtual signed short to_int16() const {
return _p->to_int16();
}
/**
* @brief 转化为16位无符号整数类型(所有is_number()返回真的类型都支持)
*
* @return unsigned short
* @retval
* @see
* @author chenxm
* @date 2010/03/17 18:09:14
**/
virtual unsigned short to_uint16() const {
return _p->to_uint16();
}
/**
* @brief 转化为32位有符号整数类型(所有is_number()返回真的类型都支持)
*
* @return signed int
* @retval
* @see
* @author chenxm
* @date 2010/03/17 18:09:14
**/
virtual signed int to_int32() const {
return _p->to_int32();
}
/**
* @brief 转化为32位无符号整数类型(所有is_number()返回真的类型都支持)
*
* @return unsigned int
* @retval
* @see
* @author chenxm
* @date 2010/03/17 18:09:14
**/
virtual unsigned int to_uint32() const {
return _p->to_uint32();
}
/**
* @brief 转化为64位有符号整数类型(所有is_number()返回真的类型都支持)
*
* @return signed long long
* @retval
* @see
* @author chenxm
* @date 2010/03/17 18:09:14
**/
virtual signed long long to_int64() const {
return _p->to_int64();
}
/**
* @brief 转化为64位无符号整数类型(所有is_number()返回真的类型都支持)
*
* @return unsigned long long
* @retval
* @see
* @author chenxm
* @date 2010/03/17 18:09:14
**/
virtual unsigned long long to_uint64() const {
return _p->to_uint64();
}
/**
* @brief 转化为单精度浮点数类型(所有is_number()返回真的类型都支持)
*
* @return float
* @retval
* @see
* @author chenxm
* @date 2010/03/17 18:09:14
**/
virtual float to_float() const {
return _p->to_float();
}
/**
* @brief 转化为双精度浮点数类型(所有is_number()返回真的类型都支持)
*
* @return double
* @retval
* @see
* @author chenxm
* @date 2010/03/17 18:09:14
**/
virtual double to_double() const {
return _p->to_double();
}
virtual raw_type to_raw() const {
return _p->to_raw();
}
virtual Ref& operator = ( bool val ){
_p->operator = ( val );
return *this;
}
/**
* @brief 使用signed char类型赋值
*
* @param [in] val : signed char
* @return Ref&
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:23:16
**/
virtual Ref& operator = ( signed char val ){
_p->operator = ( val );
return *this;
}
/**
* @brief 使用unsigned char类型赋值
*
* @param [in] val : unsigned char
* @return Ref&
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:23:16
**/
virtual Ref& operator = ( unsigned char val ){
_p->operator = ( val );
return *this;
}
/**
* @brief 使用signed short类型赋值
*
* @param [in] val : signed short
* @return Ref&
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:23:16
**/
virtual Ref& operator = ( signed short val ){
_p->operator = ( val );
return *this;
}
/**
* @brief 使用unsigned short类型赋值
*
* @param [in] val : unsigned short
* @return Ref&
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:23:16
**/
virtual Ref& operator = ( unsigned short val ){
_p->operator = ( val );
return *this;
}
/**
* @brief 使用signed int类型赋值
*
* @param [in] val : signed int
* @return Ref&
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:23:16
**/
virtual Ref& operator = ( signed int val ){
_p->operator = ( val );
return *this;
}
/**
* @brief 使用unsigned int类型赋值
*
* @param [in] val : unsigned int
* @return Ref&
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:23:16
**/
virtual Ref& operator = ( unsigned int val ){
_p->operator = ( val );
return *this;
}
/**
* @brief 使用signed long long类型赋值
*
* @param [in] val : signed long long
* @return Ref&
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:23:16
**/
virtual Ref& operator = ( signed long long val ){
_p->operator = ( val );
return *this;
}
/**
* @brief 使用unsigned long long类型赋值
*
* @param [in] val : unsigned long long
* @return Ref&
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:23:16
**/
virtual Ref& operator = ( unsigned long long val ){
_p->operator = ( val );
return *this;
}
/**
* @brief 使用float类型赋值
*
* @param [in] val : float
* @return Ref&
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:23:16
**/
virtual Ref& operator = ( float val ){
_p->operator = ( val );
return *this;
}
/**
* @brief 使用double类型赋值
*
* @param [in] val : double
* @return Ref&
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:23:16
**/
virtual Ref& operator = ( double val ){
_p->operator = ( val );
return *this;
}
/**
* @brief 使用const char *类型赋值
*
* @param [in] val : const char *
* @return Ref&
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:23:16
**/
virtual Ref& operator = ( const char *val ){
_p->operator = ( val );
return *this;
}
/**
* @brief 使用字符串类型赋值
*
* @param [in] val : const string_type&
* @return Ref&
* @retval
* @see
* @author chenxm
* @date 2010/03/17 19:23:16
**/
virtual Ref& operator = ( const string_type& val ){
_p->operator = ( val );
return *this;
}
virtual Ref& operator = ( const raw_type& val ){
_p->operator = ( val );
return *this;
}
//methods for string
virtual const char *c_str() const {
return _p->c_str();
}
virtual size_t c_str_len() const {
return _p->c_str_len();
}
//methods for array or dict
/**
* @brief 返回子元素个数(数组或字典)类型支持
*
* @return size_t
* @retval
* @see
* @author chenxm
* @date 2010/03/17 17:35:15
**/
virtual size_t size() const {
return _p->size();
}
//methods for array
virtual IVar& get( size_t index ) {
return _p->get(index);
}
virtual IVar& get( size_t index, IVar& default_value ) {
return _p->get(index, default_value);
}
virtual const IVar& get( size_t index ) const {
return _p->get(index);
}
virtual const IVar& get( size_t index, const IVar& default_value ) const {
return _p->get(index,default_value);
}
virtual void set( size_t index, IVar& value ){
return _p->set( index, value );
}
virtual bool del( size_t index ){
return _p->del(index);
}
virtual array_const_iterator array_begin() const {
return const_cast<const IVar *>(_p)->array_begin();
}
virtual array_iterator array_begin() {
return _p->array_begin();
}
virtual array_const_iterator array_end() const {
return const_cast<const IVar *>(_p)->array_end();
}
virtual array_iterator array_end() {
return _p->array_end();
}
virtual const IVar& operator []( int index ) const {
return _p->operator [](index);
}
virtual IVar& operator []( int index ){
return _p->operator [](index);
}
//methods for dict
virtual IVar& get( const field_type& name ) {
return _p->get(name);
}
virtual IVar& get( const field_type& name, IVar& default_value ) {
return _p->get(name, default_value);
}
virtual const IVar& get( const field_type& name ) const {
return _p->get(name);
}
virtual const IVar& get( const field_type& name, const IVar& default_value ) const {
return _p->get(name, default_value);
}
virtual void set( const field_type& name, IVar& value ){
return _p->set(name, value);
}
virtual bool del( const field_type& name ){
return _p->del(name);
}
virtual const IVar& operator []( const field_type& name ) const {
return _p->operator [](name);
}
virtual IVar& operator []( const field_type& name ){
return _p->operator []( name );
}
virtual dict_const_iterator dict_begin() const {
return const_cast<const IVar *>(_p)->dict_begin();
}
virtual dict_iterator dict_begin() {
return _p->dict_begin();
}
virtual dict_const_iterator dict_end() const {
return const_cast<const IVar *>(_p)->dict_end();
}
virtual dict_iterator dict_end() {
return _p->dict_end();
}
virtual IVar& operator()(IVar& param, bsl::ResourcePool& rp ){
return (*_p)(param, rp);
}
virtual IVar& operator()(IVar& self, IVar& param, bsl::ResourcePool& rp ){
return (*_p)(self, param, rp);
}
private:
IVar * _p;
};
}} //namespace bsl::var
#endif //__BSL_VAR_REF_H__
/* vim: set ts=4 sw=4 sts=4 tw=100 */
| [
"[email protected]"
] | |
79ac4837de4a54bc9f9bab506cbf3f311895f854 | 665f0b9ee240d5e153f855ae9fdafee18317a16b | /PAT again/A1126. Eulerian Path (25)/源.cpp | 65bc5c619f2b44dfb3d52c73bc70e3b073f13eaa | [] | no_license | diegoQiu/PAT-advanced | f3b15cb5a626067d319c792dfa5e4c697054a3a4 | 331e1d16416bc8f5d6e467cf52c5e3d8620c8f27 | refs/heads/master | 2021-09-09T05:55:19.163518 | 2018-03-14T03:31:33 | 2018-03-14T03:31:33 | 123,377,775 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 855 | cpp | #include<iostream>
#include<vector>
using namespace std;
const int maxn = 505;
int N, M;
int degree[maxn];
bool vis[maxn];
vector<int> pre[maxn];
int num = 0;
void dfs(int s) {
num++;
vis[s] = true;
for (int i = 0; i < pre[s].size(); i++) {
if (vis[pre[s][i]] == false) {
dfs(pre[s][i]);
}
}
}
int main() {
cin >> N >> M;
for (int i = 0; i < M; i++) {
int a, b;
scanf("%d %d", &a, &b);
degree[a]++;
pre[a].push_back(b);
degree[b]++;
pre[b].push_back(a);
}
bool flag = true;
int cnt = 0;
for (int i = 1; i <= N; i++) {
printf("%d", degree[i]);
if (degree[i] % 2 != 0) {
cnt++;
flag = false;
}
if (i < N)
printf(" ");
else
printf("\n");
}
dfs(1);
if (flag&&num==N)
printf("Eulerian\n");
else if (cnt == 2 && num == N) {
printf("Semi-Eulerian");
}
else {
printf("Non-Eulerian");
}
return 0;
} | [
"[email protected]"
] | |
3760259dc8e94974e23c51e1c3f370d8f90ff8d6 | 53bbde66a89cf44fa459509a0c5154df2a447494 | /detection/src/skeleton_detection.cpp | 0c56f1fbea0015e2d41759ef117ec307f475800b | [] | no_license | marketto89/open_ptrack | 0fb41c9d3047d79a0aa4116be9be73185ce2de86 | f3790b6aa1139f6b72c48ec43e8ee890e2fa704d | HEAD | 2019-07-06T15:58:08.375880 | 2017-09-26T21:34:58 | 2017-09-26T21:34:58 | 103,685,443 | 37 | 10 | null | null | null | null | UTF-8 | C++ | false | false | 7,332 | cpp | /*
* Software License Agreement (BSD License)
*
* Copyright (c) 2011-2012, Matteo Munaro [[email protected]], Filippo Basso [[email protected]]
* Copyright (c) 2013-, Open Perception, Inc.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of the copyright holder(s) nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* Author: Matteo Munaro [[email protected]], Filippo Basso [[email protected]]
*
*/
#include <open_ptrack/detection/skeleton_detection.h>
namespace open_ptrack
{
namespace detection
{
Eigen::Vector3d
SkeletonDetection::averageOverValidJoints(
const std::vector<rtpose_wrapper::Joint3DMsg>& joints)
{
Eigen::Vector3d v(0.0,0.0,0.0);
auto acc_lambda = [](Eigen::Vector3d m,
const rtpose_wrapper::Joint3DMsg& m1)
{
return std::isfinite(m1.x) and std::isfinite(m1.y) and std::isfinite(m1.z)?
m + Eigen::Vector3d(m1.x,m1.y,m1.z):
m;
};
auto count_lambda = [](const rtpose_wrapper::Joint3DMsg& m) {
return not ((fabs(m.x) < 0.01 and fabs(m.y) < 0.01 and fabs(m.z) < 0.01)
or not (std::isfinite(m.x) and std::isfinite(m.y)
and std::isfinite(m.z))
);};
v = std::accumulate(joints.begin(),
joints.end(),
Eigen::Vector3d(0.0,0.0,0.0),
acc_lambda);
uint count = std::count_if(joints.begin(),
joints.end(),
count_lambda);
return count == 0 ? Eigen::Vector3d(0.0,0.0,0.0) : Eigen::Vector3d(v / count);
}
Eigen::Vector3d
SkeletonDetection::averageOverValidJoints(
const std::vector<geometry_msgs::Point>& joints)
{
Eigen::Vector3d v(0.0,0.0,0.0);
auto acc_lambda = [](Eigen::Vector3d m,
const geometry_msgs::Point& m1)
{
return std::isfinite(m1.x) and std::isfinite(m1.y) and std::isfinite(m1.z)?
m + Eigen::Vector3d(m1.x,m1.y,m1.z):
m;
};
auto count_lambda = [](const geometry_msgs::Point& m) {
return not ((fabs(m.x) < 0.01 and fabs(m.y) < 0.01 and fabs(m.z) < 0.01)
or not (std::isfinite(m.x) and std::isfinite(m.y)
and std::isfinite(m.z))
);};
v = std::accumulate(joints.begin(),
joints.end(),
Eigen::Vector3d(0.0,0.0,0.0),
acc_lambda);
uint count = std::count_if(joints.begin(),
joints.end(),
count_lambda);
return count == 0 ? Eigen::Vector3d(0.0,0.0,0.0) : Eigen::Vector3d(v / count);
}
bool
SkeletonDetection::isValidJoint(const rtpose_wrapper::Joint3DMsg& joint) const
{
return std::isfinite(joint.x)
and std::isfinite(joint.y)
and std::isfinite(joint.z);
}
SkeletonDetection::SkeletonDetection
(const rtpose_wrapper::SkeletonMsg &detection,
open_ptrack::detection::DetectionSource* source):
Detection (opt_msgs::Detection(), source)
{
detection_msg_ = detection;
source_ = source;
Eigen::Vector3d v = computeCentroid();
world_centroid_ = source->transform(v);
for(auto it = detection_msg_.joints.begin(),
end = detection_msg_.joints.end(); it !=end; ++it)
{
int index = (it - detection_msg_.joints.begin());
Eigen::Vector3d tmp = source->transform(Eigen::Vector3d
(it->x, it->y, it->z));
it->x = tmp(0);
it->y = tmp(1);
it->z = tmp(2);
}
}
Eigen::Vector3d
SkeletonDetection::computeCentroid() const
{
Eigen::Vector3d v;
// switch(detection_msg_.skeleton_type)
// {
// case rtpose_wrapper::SkeletonMsg::MPI: //MPI
// {
// v = averageOverValidJoints(detection_msg_.joints);
// break;
// }
// case rtpose_wrapper::SkeletonMsg::COCO: //COCO
// {
// // barycenter of joints 1, 8 and 11
// if(not isValidJoint(detection_msg_.joints[1])
// or not isValidJoint(detection_msg_.joints[8])
// or not isValidJoint(detection_msg_.joints[11]))
// {
// ROS_INFO_STREAM("WARNING: Centroid obtained from at least "
// "one non-valid joint");
// v = averageOverValidJoints(detection_msg_.joints);
// }
// double mul_factor = 0.333f;
// v(0) = (detection_msg_.joints[1].x +
// detection_msg_.joints[8].x + detection_msg_.joints[11].x) * mul_factor;
// v(1) = (detection_msg_.joints[1].y +
// detection_msg_.joints[8].y + detection_msg_.joints[11].y) * mul_factor;
// v(2) = (detection_msg_.joints[1].z +
// detection_msg_.joints[8].z + detection_msg_.joints[11].z) * mul_factor;
// break;
// }
// // default = average between valid joints
// default:
// {
v = averageOverValidJoints(detection_msg_.joints);
// }
// } // switch
return v;
}
void
SkeletonDetection::refineSkeletonJoints(const
Eigen::Matrix4d& registration_matrix)
{
for(auto it = detection_msg_.joints.begin(),
end = detection_msg_.joints.end(); it != end; ++it)
{
Eigen::Vector4d refined = registration_matrix
* Eigen::Vector4d(it->x, it->y, it->z, 1.0);
it->x = refined(0); it->y = refined(1); it->z = refined(2);
}
}
std::ostream&
operator<<(std::ostream& ss, const SkeletonDetection& s)
{
ss << s.getWorldCentroid().transpose();
return ss;
}
int SkeletonDetection::debug_count = 0;
SkeletonDetection::~SkeletonDetection()
{
SkeletonDetection::debug_count++;
}
double
SkeletonDetection::getConfidence() const
{
return detection_msg_.confidence;
}
double
SkeletonDetection::getDistance() const
{
return detection_msg_.distance;
}
bool
SkeletonDetection::isOccluded() const
{
return detection_msg_.occluded;
}
void
SkeletonDetection::setConfidence(double confidence)
{
detection_msg_.confidence = confidence;
}
} /* namespace detection */
} /* namespace open_ptrack */
| [
"[email protected]"
] | |
c043c140ed2280f5d936498873d3b84f9d28c44b | 5b4f65ddbf6c806025a433d062c71767af51ef7d | /src/qt/editaddressdialog.cpp | 2defed58af695720c8d0ef44a68c115f9f06733f | [
"MIT"
] | permissive | TangCoin/tangcoin_src | 659ed547d915305f83dfec29e4d51e117ce9f70e | 370e1de9b0d3867aba8724c2b63154331296ee41 | refs/heads/master | 2021-01-18T14:06:20.426523 | 2014-01-04T05:31:29 | 2014-01-04T05:31:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,565 | cpp | #include "editaddressdialog.h"
#include "ui_editaddressdialog.h"
#include "addresstablemodel.h"
#include "guiutil.h"
#include <QDataWidgetMapper>
#include <QMessageBox>
EditAddressDialog::EditAddressDialog(Mode mode, QWidget *parent) :
QDialog(parent),
ui(new Ui::EditAddressDialog), mapper(0), mode(mode), model(0)
{
ui->setupUi(this);
GUIUtil::setupAddressWidget(ui->addressEdit, this);
switch(mode)
{
case NewReceivingAddress:
setWindowTitle(tr("New receiving address"));
ui->addressEdit->setEnabled(false);
break;
case NewSendingAddress:
setWindowTitle(tr("New sending address"));
break;
case EditReceivingAddress:
setWindowTitle(tr("Edit receiving address"));
ui->addressEdit->setDisabled(true);
break;
case EditSendingAddress:
setWindowTitle(tr("Edit sending address"));
break;
}
mapper = new QDataWidgetMapper(this);
mapper->setSubmitPolicy(QDataWidgetMapper::ManualSubmit);
}
EditAddressDialog::~EditAddressDialog()
{
delete ui;
}
void EditAddressDialog::setModel(AddressTableModel *model)
{
this->model = model;
mapper->setModel(model);
mapper->addMapping(ui->labelEdit, AddressTableModel::Label);
mapper->addMapping(ui->addressEdit, AddressTableModel::Address);
}
void EditAddressDialog::loadRow(int row)
{
mapper->setCurrentIndex(row);
}
bool EditAddressDialog::saveCurrentRow()
{
if(!model)
return false;
switch(mode)
{
case NewReceivingAddress:
case NewSendingAddress:
address = model->addRow(
mode == NewSendingAddress ? AddressTableModel::Send : AddressTableModel::Receive,
ui->labelEdit->text(),
ui->addressEdit->text());
break;
case EditReceivingAddress:
case EditSendingAddress:
if(mapper->submit())
{
address = ui->addressEdit->text();
}
break;
}
return !address.isEmpty();
}
void EditAddressDialog::accept()
{
if(!model)
return;
if(!saveCurrentRow())
{
switch(model->getEditStatus())
{
case AddressTableModel::DUPLICATE_ADDRESS:
QMessageBox::warning(this, windowTitle(),
tr("The entered address \"%1\" is already in the address book.").arg(ui->addressEdit->text()),
QMessageBox::Ok, QMessageBox::Ok);
break;
case AddressTableModel::INVALID_ADDRESS:
QMessageBox::warning(this, windowTitle(),
tr("The entered address \"%1\" is not a valid TangCoin address.").arg(ui->addressEdit->text()),
QMessageBox::Ok, QMessageBox::Ok);
return;
case AddressTableModel::WALLET_UNLOCK_FAILURE:
QMessageBox::critical(this, windowTitle(),
tr("Could not unlock wallet."),
QMessageBox::Ok, QMessageBox::Ok);
return;
case AddressTableModel::KEY_GENERATION_FAILURE:
QMessageBox::critical(this, windowTitle(),
tr("New key generation failed."),
QMessageBox::Ok, QMessageBox::Ok);
return;
case AddressTableModel::OK:
// Failed with unknown reason. Just reject.
break;
}
return;
}
QDialog::accept();
}
QString EditAddressDialog::getAddress() const
{
return address;
}
void EditAddressDialog::setAddress(const QString &address)
{
this->address = address;
ui->addressEdit->setText(address);
}
| [
"[email protected]"
] | |
6f5fd09fce7adf5f22b0a15ab303f95c2bd7f72f | 669fa4c410e0e71102b1f896529068a471e15db6 | /libraries/EctoControl/include/EctoControl/EctoSMC/EctoSMC.h | 607dd5210d912843f2ac9b7266ce088e2462860a | [] | no_license | Botbusters4635/2019RobotCode | f014dc83d3e8cb0839807ca5ab4fb0ed85e6634a | 2c056881107a085ddbb134ce7fa06c38bb065bc4 | refs/heads/master | 2020-12-04T09:44:42.379433 | 2020-01-04T07:16:03 | 2020-01-04T07:16:03 | 231,715,976 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,526 | h | //
// Created by alberto on 02/09/19.
//
#ifndef SLIDING_MODE_CONTROL_SLIDINGMODECONTROL_H
#define SLIDING_MODE_CONTROL_SLIDINGMODECONTROL_H
#include "EctoControl/EctoController.h"
#include "EctoControl/EctoControllerOutput.h"
#include "EctoControl/EctoControllerSource.h"
struct EctoSMCConfig {
double k2 = 0.0; //gain PD
double k3 = 0.0; //Rate of change of adaptive gain'
double lambda = 0.0; //P
double kMin = 0.01; //Gain deadband
double mu = 0.0; //Offset
bool continous = false;
double maxInput = M_PI;
double minInput = -M_PI;
};
class EctoSMC : public EctoController {
public:
explicit EctoSMC(EctoControllerSource& source, EctoControllerOutput &output, const EctoSMCConfig &config);
void setSetpoint(double setpoint) override;
double getSetpoint() const override;
double getError() const override;
void update() override;
const EctoControllerOutput& getControllerOutput() const;
const EctoControllerSource& getControllerSource() const;
double getSlidingSurface();
void setConfig(const EctoSMCConfig &config);
private:
//TODO Maybe move this to EctoMath
template <typename T> int sign(T val) {
return (T(0) < val) - (val < T(0));
}
EctoSMCConfig config;
EctoControllerSource &source;
EctoControllerOutput &output;
double setpoint = 0;
double maxError;
double error = 0;
double lastError = 0;
double ka = 0; //Adaptive gain
};
#endif //SLIDING_MODE_CONTROL_SLIDINGMODECONTROL_H
| [
"[email protected]"
] | |
ccec18908774619abe2883b79d861d6cc2f08b3a | cd060892280983a64d1d463fcea7b3edbf843cf8 | /former_work/BMC/Interframe/inc/Singleton.h | aa427c416bdecaf3486c43d43a1b9837a41f6db2 | [] | no_license | zhvirus/zhangtina | c8741d3cab4cc0929db6776dde3ce5a4733fabe1 | 88a6f85992861862e22cd9edbe852f45b8a62775 | refs/heads/master | 2021-01-21T04:31:30.673821 | 2016-06-29T03:14:16 | 2016-06-29T03:14:16 | 14,973,156 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 757 | h | #pragma once
template <typename T>
class Singleton
{
protected:
static T* ms_Singleton;
public:
Singleton( void )
{
assert( !ms_Singleton );
#if defined( _MSC_VER ) && _MSC_VER < 1200
int offset = (int)(T*)1 - (int)(Singleton <T>*)(T*)1;
ms_Singleton = (T*)((int)this + offset);
#else
ms_Singleton = static_cast< T* >( this );
#endif
}
~Singleton( void )
{
assert( ms_Singleton );
ms_Singleton = 0;
}
static T* getSingletonPtr( void )
{
if(ms_Singleton==NULL)
{
ms_Singleton = new T;
return ms_Singleton;
}
else
return ms_Singleton;
}
};
template<typename T>
T* Singleton<T>::ms_Singleton=NULL;
| [
"[email protected]"
] | |
c32b717e4b1080c356547c8da1d07e0e27d05245 | 2d56e306d86fadefea165e45da03a33c98187892 | /main.cpp | cd1dd3ffc7fb5b4f5f58c03b36f5526422949e3b | [] | no_license | areyeslo/Mass-Spring | ab7518d03179453f286235ab58caade52c65cc35 | 9417fb2d81201559920f3bb0c274d17d500f67c6 | refs/heads/master | 2021-01-22T13:13:59.662956 | 2015-02-13T04:35:06 | 2015-02-13T04:35:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 262 | cpp | /*!
* \author Babak Tootoonchi
* \version 1.0
* \date Sept. 2014
*/
#include <QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
| [
"[email protected]"
] | |
b57b88e3ac97de7e07b7938523bcded070af1569 | f2db2d18b559cf3eb776c630a25a4f4e1f9ac433 | /utility/asynccontext.h | c7a41d8f35311d64e4ae8a598f5f80bcbbd1fcac | [
"Apache-2.0"
] | permissive | bliotti/beam | c1bc6d0ca9d4b447ed5283365d26da0844e2284d | 8560926b391917e122c3c9bbebdbf569d5c707ad | refs/heads/master | 2020-03-28T21:40:01.778751 | 2018-09-17T17:14:51 | 2018-09-17T17:16:49 | 149,173,152 | 0 | 0 | Apache-2.0 | 2018-09-17T19:18:21 | 2018-09-17T18:55:09 | C | UTF-8 | C++ | false | false | 2,660 | h | // Copyright 2018 The Beam Team
//
// 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 "helpers.h"
#include "io/coarsetimer.h"
#include <unordered_map>
#include <atomic>
namespace beam {
class AsyncContext;
// Current AsyncContext API
namespace async {
/// Returns current context if any
AsyncContext* ctx();
// TODO other stuff
} //namespace
/// Wrapper for asynchrony
class AsyncContext {
public:
// TODO: unify IDs
using TimerID = io::CoarseTimer::ID;
using TimerCallback = io::CoarseTimer::Callback;
explicit AsyncContext(unsigned coarseTimerResolutionMsec=100);
/// Dtor, allows for derived classes if needed
virtual ~AsyncContext();
/// Runs event loop in this thread, blocks
void run_in_this_thread();
using RunCallback = std::function<void()>;
/// Spawns the dedicated thread and runs there
void run_async(RunCallback&& beforeRun=RunCallback(), RunCallback&& afterRun=RunCallback());
/// Stops the event loop, can be called from any thread
void stop();
/// Waits for thread, if any is running
void wait();
/// Sets one-shot coarse timer
io::Result set_coarse_timer(TimerID id, unsigned intervalMsec, TimerCallback&& callback);
/// Cancels one-shot timer
void cancel_coarse_timer(TimerID id);
/// periodic timer
io::Timer::Ptr set_timer(unsigned periodMsec, io::Timer::Callback&& onTimer) {
io::Timer::Ptr timer(io::Timer::create(_reactor));
timer->start(periodMsec, true, std::move(onTimer));
return timer;
}
private:
/// Thread function
void thread_func(RunCallback&& beforeRun, RunCallback&& afterRun);
/// Internal timer callback
void on_coarse_timer(TimerID id);
void attach_to_thread();
void detach_from_thread();
protected:
io::Reactor::Ptr _reactor;
private:
std::unordered_map<TimerID, TimerCallback> _timerCallbacks;
io::CoarseTimer::Ptr _timer;
Thread _thread;
AsyncContext* _prevInThread=0;
std::atomic<bool> _started;
};
} //namespace
| [
"[email protected]"
] | |
61adebf40bd37f660187a6124ae3703d67ebff30 | b9995bd3337e0c0175e9480fd8961b6f414b34fe | /Temp/StagingArea/Data/il2cppOutput/Il2CppGenericMethodDefinitions.cpp | e1ff2f5751302f078f3dcc4f10081932cab67b10 | [] | no_license | PanattaE/Tarot_Numerology | 7dbfe50010e47b895d2a66c73b03b221474e8a75 | ebfdb3698ad5daf69998cc4efc9ee1651164884b | refs/heads/master | 2021-09-28T19:05:46.618751 | 2018-11-19T16:35:40 | 2018-11-19T16:35:40 | 155,305,434 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 94,015 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include "class-internals.h"
#include "codegen/il2cpp-codegen.h"
extern const Il2CppMethodSpec g_Il2CppMethodSpecTable[4847] =
{
{ 86, 0, -1 },
{ 94, 0, -1 },
{ 303, 0, -1 },
{ 486, 0, -1 },
{ 770, -1, 0 },
{ 772, -1, 0 },
{ 773, -1, 0 },
{ 774, -1, 0 },
{ 775, -1, 0 },
{ 776, -1, 0 },
{ 778, -1, 0 },
{ 779, -1, 0 },
{ 780, -1, 0 },
{ 781, -1, 0 },
{ 782, -1, 0 },
{ 843, -1, 0 },
{ 865, -1, 0 },
{ 866, -1, 31 },
{ 867, -1, 0 },
{ 868, -1, 31 },
{ 869, -1, 0 },
{ 870, -1, 31 },
{ 871, -1, 0 },
{ 872, -1, 31 },
{ 873, -1, 0 },
{ 874, -1, 0 },
{ 875, -1, 31 },
{ 876, -1, 0 },
{ 877, -1, 0 },
{ 878, -1, 31 },
{ 879, -1, 0 },
{ 882, -1, 0 },
{ 883, -1, 0 },
{ 884, -1, 0 },
{ 885, -1, 0 },
{ 886, -1, 31 },
{ 887, -1, 0 },
{ 888, -1, 0 },
{ 889, -1, 0 },
{ 890, -1, 0 },
{ 891, -1, 0 },
{ 892, -1, 0 },
{ 893, -1, 0 },
{ 894, -1, 0 },
{ 895, -1, 0 },
{ 896, -1, 0 },
{ 897, -1, 0 },
{ 898, -1, 0 },
{ 899, -1, 0 },
{ 900, -1, 0 },
{ 901, -1, 0 },
{ 902, -1, 0 },
{ 903, -1, 0 },
{ 904, -1, 0 },
{ 905, -1, 0 },
{ 906, -1, 0 },
{ 907, -1, 0 },
{ 911, 0, -1 },
{ 914, 0, -1 },
{ 909, 0, -1 },
{ 910, 0, -1 },
{ 912, 0, -1 },
{ 913, 0, -1 },
{ 922, 0, -1 },
{ 923, 0, -1 },
{ 924, 0, -1 },
{ 925, 0, -1 },
{ 920, 0, -1 },
{ 921, 0, -1 },
{ 926, 0, -1 },
{ 927, 0, -1 },
{ 928, 0, -1 },
{ 929, 0, -1 },
{ 930, 0, -1 },
{ 931, 0, -1 },
{ 932, 0, -1 },
{ 933, 0, -1 },
{ 934, 0, -1 },
{ 935, 0, -1 },
{ 937, 0, -1 },
{ 938, 0, -1 },
{ 936, 0, -1 },
{ 939, 0, -1 },
{ 940, 0, -1 },
{ 941, 0, -1 },
{ 964, 0, -1 },
{ 965, 0, -1 },
{ 961, 0, -1 },
{ 962, 0, -1 },
{ 963, 0, -1 },
{ 966, 0, -1 },
{ 967, 0, -1 },
{ 968, 0, -1 },
{ 969, 0, -1 },
{ 970, 0, -1 },
{ 971, 0, -1 },
{ 972, 0, -1 },
{ 1679, 0, -1 },
{ 1675, 0, -1 },
{ 1676, 0, -1 },
{ 1677, 0, -1 },
{ 1678, 0, -1 },
{ 1680, 0, -1 },
{ 1681, 0, -1 },
{ 1682, 0, -1 },
{ 1683, 0, -1 },
{ 1688, 31, -1 },
{ 1689, 31, -1 },
{ 1692, 31, -1 },
{ 1693, 31, -1 },
{ 1694, 31, -1 },
{ 1703, 31, -1 },
{ 1704, 31, -1 },
{ 1705, 31, -1 },
{ 1722, 31, -1 },
{ 1684, 31, -1 },
{ 1685, 31, -1 },
{ 1686, 31, -1 },
{ 1687, 31, -1 },
{ 1690, 31, -1 },
{ 1691, 31, -1 },
{ 1695, 31, -1 },
{ 1696, 31, -1 },
{ 1697, 31, -1 },
{ 1698, 31, -1 },
{ 1699, 31, -1 },
{ 1700, 31, -1 },
{ 1701, 31, -1 },
{ 1702, 31, -1 },
{ 1706, 31, -1 },
{ 1707, 31, -1 },
{ 1708, 31, -1 },
{ 1709, 31, 31 },
{ 1710, 31, -1 },
{ 1711, 31, -1 },
{ 1712, 31, -1 },
{ 1713, 31, 0 },
{ 1714, 31, -1 },
{ 1715, 31, -1 },
{ 1716, 31, -1 },
{ 1717, 31, -1 },
{ 1718, 31, -1 },
{ 1719, 31, -1 },
{ 1720, 31, -1 },
{ 1721, 31, -1 },
{ 1723, 31, -1 },
{ 1724, 31, -1 },
{ 1725, 31, -1 },
{ 1726, 31, -1 },
{ 1727, 31, -1 },
{ 1730, 31, -1 },
{ 1731, 31, -1 },
{ 1732, 31, -1 },
{ 1733, 31, -1 },
{ 1728, 31, -1 },
{ 1729, 31, -1 },
{ 1734, 31, -1 },
{ 1736, 31, -1 },
{ 1738, 31, -1 },
{ 1739, 31, -1 },
{ 1740, 31, -1 },
{ 1742, 31, -1 },
{ 1743, 31, -1 },
{ 1744, 31, -1 },
{ 1735, 31, -1 },
{ 1737, 31, -1 },
{ 1741, 31, -1 },
{ 1745, 31, -1 },
{ 1746, 31, -1 },
{ 1747, 31, -1 },
{ 1748, 31, -1 },
{ 1757, 31, -1 },
{ 1758, 31, -1 },
{ 1759, 31, -1 },
{ 1762, 31, -1 },
{ 1749, 31, -1 },
{ 1750, 31, -1 },
{ 1751, 31, -1 },
{ 1752, 31, -1 },
{ 1753, 31, -1 },
{ 1754, 31, -1 },
{ 1755, 31, -1 },
{ 1756, 31, -1 },
{ 1760, 31, -1 },
{ 1761, 31, -1 },
{ 1764, 31, -1 },
{ 1768, 31, -1 },
{ 1763, 31, -1 },
{ 1765, 31, -1 },
{ 1766, 31, -1 },
{ 1767, 31, -1 },
{ 1769, 60, -1 },
{ 1770, 60, -1 },
{ 1771, 60, -1 },
{ 1772, 60, -1 },
{ 1779, 0, -1 },
{ 1773, 0, -1 },
{ 1774, 0, -1 },
{ 1775, 0, -1 },
{ 1776, 0, -1 },
{ 1777, 0, -1 },
{ 1778, 0, -1 },
{ 1780, 0, -1 },
{ 1781, 0, -1 },
{ 1782, 0, -1 },
{ 1783, 0, -1 },
{ 1784, 0, -1 },
{ 1785, 0, -1 },
{ 1786, 0, -1 },
{ 1787, 0, -1 },
{ 1788, 0, -1 },
{ 1793, 31, -1 },
{ 1794, 31, -1 },
{ 1795, 31, -1 },
{ 1796, 31, -1 },
{ 1792, 31, -1 },
{ 1797, 31, -1 },
{ 1809, 0, -1 },
{ 1810, 0, -1 },
{ 1811, 0, -1 },
{ 1812, 0, -1 },
{ 1813, 0, -1 },
{ 1814, 0, -1 },
{ 1815, 0, -1 },
{ 1842, 0, -1 },
{ 1843, 0, -1 },
{ 1844, 0, -1 },
{ 1845, 0, -1 },
{ 1846, 0, -1 },
{ 1798, 0, -1 },
{ 1799, 0, -1 },
{ 1800, 0, -1 },
{ 1801, 0, -1 },
{ 1802, 0, -1 },
{ 1803, 0, -1 },
{ 1804, 0, -1 },
{ 1805, 0, -1 },
{ 1806, 0, -1 },
{ 1807, 0, -1 },
{ 1808, 0, -1 },
{ 1816, 0, -1 },
{ 1817, 0, -1 },
{ 1818, 0, -1 },
{ 1819, 0, -1 },
{ 1820, 0, -1 },
{ 1821, 0, -1 },
{ 1822, 0, -1 },
{ 1823, 0, -1 },
{ 1824, 0, -1 },
{ 1825, 0, -1 },
{ 1826, 0, -1 },
{ 1827, 0, -1 },
{ 1828, 0, -1 },
{ 1829, 0, -1 },
{ 1830, 0, -1 },
{ 1831, 0, -1 },
{ 1832, 0, -1 },
{ 1833, 0, -1 },
{ 1834, 0, -1 },
{ 1835, 0, -1 },
{ 1836, 0, -1 },
{ 1837, 0, -1 },
{ 1838, 0, -1 },
{ 1839, 0, -1 },
{ 1840, 0, -1 },
{ 1841, 0, -1 },
{ 1849, 0, -1 },
{ 1853, 0, -1 },
{ 1847, 0, -1 },
{ 1848, 0, -1 },
{ 1850, 0, -1 },
{ 1851, 0, -1 },
{ 1852, 0, -1 },
{ 1855, 0, -1 },
{ 1863, 0, -1 },
{ 1864, 0, -1 },
{ 1865, 0, -1 },
{ 1866, 0, -1 },
{ 1867, 0, -1 },
{ 1868, 0, -1 },
{ 1881, 0, -1 },
{ 1882, 0, -1 },
{ 1883, 0, -1 },
{ 1854, 0, -1 },
{ 1856, 0, -1 },
{ 1857, 0, -1 },
{ 1858, 0, -1 },
{ 1859, 0, -1 },
{ 1860, 0, -1 },
{ 1861, 0, -1 },
{ 1862, 0, -1 },
{ 1869, 0, -1 },
{ 1870, 0, -1 },
{ 1871, 0, -1 },
{ 1872, 0, -1 },
{ 1873, 0, -1 },
{ 1874, 0, -1 },
{ 1875, 0, -1 },
{ 1876, 0, -1 },
{ 1877, 0, -1 },
{ 1878, 0, -1 },
{ 1879, 0, -1 },
{ 1880, 0, -1 },
{ 1884, 0, -1 },
{ 1885, 0, -1 },
{ 1886, 0, -1 },
{ 1887, 0, -1 },
{ 1888, 0, -1 },
{ 1889, 0, -1 },
{ 1896, 0, -1 },
{ 1897, 0, -1 },
{ 1898, 0, -1 },
{ 1908, 0, -1 },
{ 1909, 0, -1 },
{ 1910, 0, -1 },
{ 1911, 0, -1 },
{ 1912, 0, -1 },
{ 1913, 0, -1 },
{ 1918, 0, -1 },
{ 1919, 0, -1 },
{ 1890, 0, -1 },
{ 1891, 0, -1 },
{ 1892, 0, -1 },
{ 1893, 0, -1 },
{ 1894, 0, -1 },
{ 1895, 0, -1 },
{ 1899, 0, -1 },
{ 1900, 0, -1 },
{ 1901, 0, -1 },
{ 1902, 0, -1 },
{ 1903, 0, -1 },
{ 1904, 0, -1 },
{ 1905, 0, -1 },
{ 1906, 0, -1 },
{ 1907, 0, -1 },
{ 1914, 0, -1 },
{ 1915, 0, -1 },
{ 1916, 0, -1 },
{ 1917, 0, -1 },
{ 3282, -1, 0 },
{ 3462, -1, 31 },
{ 3463, -1, 0 },
{ 3476, 31, -1 },
{ 3477, 31, -1 },
{ 3478, 31, -1 },
{ 3479, 31, -1 },
{ 3480, 0, -1 },
{ 3481, 0, -1 },
{ 3482, 0, -1 },
{ 3483, 0, -1 },
{ 5102, -1, 0 },
{ 5194, -1, 0 },
{ 6106, 0, -1 },
{ 6107, 0, -1 },
{ 6108, 0, -1 },
{ 6109, 0, -1 },
{ 6118, 0, -1 },
{ 6119, 0, -1 },
{ 6120, 0, -1 },
{ 6121, 0, -1 },
{ 6122, 31, -1 },
{ 6123, 31, -1 },
{ 6124, 31, -1 },
{ 6125, 31, -1 },
{ 6130, 0, -1 },
{ 6131, 0, -1 },
{ 6132, 0, -1 },
{ 6133, 0, -1 },
{ 7069, 0, -1 },
{ 7070, 0, -1 },
{ 7075, 0, -1 },
{ 7066, 0, -1 },
{ 7067, 0, -1 },
{ 7068, 0, -1 },
{ 7071, 0, -1 },
{ 7072, 0, -1 },
{ 7073, 0, -1 },
{ 7074, 0, -1 },
{ 7076, 0, -1 },
{ 7079, 0, -1 },
{ 7082, 0, -1 },
{ 7077, 0, -1 },
{ 7078, 0, -1 },
{ 7080, 0, -1 },
{ 7081, 0, -1 },
{ 7084, 0, -1 },
{ 7085, 0, -1 },
{ 7092, 0, -1 },
{ 7083, 0, -1 },
{ 7086, 0, -1 },
{ 7087, 0, -1 },
{ 7088, 0, -1 },
{ 7089, 0, -1 },
{ 7090, 0, -1 },
{ 7091, 0, -1 },
{ 7093, 0, -1 },
{ 7096, 0, -1 },
{ 7099, 0, -1 },
{ 7094, 0, -1 },
{ 7095, 0, -1 },
{ 7097, 0, -1 },
{ 7098, 0, -1 },
{ 8038, 0, -1 },
{ 8042, 0, -1 },
{ 8035, 0, -1 },
{ 8036, 0, -1 },
{ 8037, 0, -1 },
{ 8039, 0, -1 },
{ 8040, 0, -1 },
{ 8041, 0, -1 },
{ 8043, 0, -1 },
{ 8044, 0, -1 },
{ 8045, 0, -1 },
{ 8046, 0, -1 },
{ 8047, 0, -1 },
{ 8048, 0, -1 },
{ 8049, 0, -1 },
{ 8050, 0, -1 },
{ 8051, 0, -1 },
{ 8052, 0, -1 },
{ 8053, 0, -1 },
{ 8054, 0, -1 },
{ 8055, 0, -1 },
{ 8056, 0, -1 },
{ 8058, 0, -1 },
{ 8061, 0, -1 },
{ 8057, 0, -1 },
{ 8059, 0, -1 },
{ 8060, 0, -1 },
{ 8062, 0, -1 },
{ 8063, 0, -1 },
{ 8064, 0, -1 },
{ 8065, 0, -1 },
{ 8066, 0, -1 },
{ 8067, 0, -1 },
{ 8070, -1, 0 },
{ 8071, -1, 0 },
{ 8072, -1, 0 },
{ 8074, 0, -1 },
{ 8075, 0, -1 },
{ 8073, 0, -1 },
{ 8076, 0, -1 },
{ 8077, 0, -1 },
{ 8078, 0, -1 },
{ 8079, 0, -1 },
{ 8080, 0, -1 },
{ 8106, 31, -1 },
{ 8107, 31, -1 },
{ 8108, 31, -1 },
{ 8109, 31, -1 },
{ 8110, 60, -1 },
{ 8111, 60, -1 },
{ 8112, 60, -1 },
{ 8113, 60, -1 },
{ 8145, -1, 0 },
{ 8183, -1, 0 },
{ 8185, -1, 0 },
{ 8186, -1, 0 },
{ 8187, -1, 0 },
{ 8188, -1, 0 },
{ 8190, -1, 0 },
{ 8191, -1, 0 },
{ 8194, -1, 0 },
{ 8195, -1, 0 },
{ 8242, -1, 0 },
{ 8244, -1, 0 },
{ 8245, -1, 0 },
{ 8247, -1, 0 },
{ 8248, -1, 0 },
{ 8249, -1, 0 },
{ 8250, -1, 0 },
{ 8261, -1, 0 },
{ 8459, -1, 0 },
{ 8460, -1, 0 },
{ 8461, -1, 0 },
{ 8463, -1, 0 },
{ 8464, -1, 0 },
{ 8477, -1, 0 },
{ 8496, -1, 0 },
{ 8565, -1, 0 },
{ 8576, -1, 0 },
{ 8696, -1, 0 },
{ 8830, -1, 0 },
{ 8840, 0, -1 },
{ 8841, 0, -1 },
{ 8842, 0, -1 },
{ 8843, 0, -1 },
{ 8844, 0, -1 },
{ 8845, 0, -1 },
{ 8846, 0, -1 },
{ 8847, 31, -1 },
{ 8848, 31, -1 },
{ 8849, 31, -1 },
{ 8850, 60, -1 },
{ 8851, 60, -1 },
{ 8852, 60, -1 },
{ 8853, 185, -1 },
{ 8854, 185, -1 },
{ 8855, 185, -1 },
{ 8856, 0, -1 },
{ 8857, 0, -1 },
{ 8858, 0, -1 },
{ 8899, 0, -1 },
{ 8900, 0, -1 },
{ 8901, 0, -1 },
{ 8902, 0, -1 },
{ 8903, 0, -1 },
{ 8904, 0, -1 },
{ 8905, 0, -1 },
{ 8906, 0, -1 },
{ 8907, 0, -1 },
{ 8908, 0, -1 },
{ 8909, 0, -1 },
{ 8910, 31, -1 },
{ 8911, 31, -1 },
{ 8912, 31, -1 },
{ 8913, 31, -1 },
{ 8914, 31, -1 },
{ 8915, 31, -1 },
{ 8916, 31, -1 },
{ 8917, 60, -1 },
{ 8918, 60, -1 },
{ 8919, 60, -1 },
{ 8920, 60, -1 },
{ 8921, 60, -1 },
{ 8922, 60, -1 },
{ 8923, 60, -1 },
{ 8924, 185, -1 },
{ 8925, 185, -1 },
{ 8926, 185, -1 },
{ 8927, 185, -1 },
{ 8928, 185, -1 },
{ 8929, 185, -1 },
{ 8930, 185, -1 },
{ 9532, -1, 0 },
{ 9568, -1, 0 },
{ 9569, -1, 0 },
{ 9570, -1, 0 },
{ 9571, -1, 0 },
{ 9572, -1, 0 },
{ 9573, -1, 0 },
{ 9576, 0, -1 },
{ 9577, 0, -1 },
{ 9578, 0, -1 },
{ 9579, 0, -1 },
{ 9952, -1, 0 },
{ 10614, -1, 0 },
{ 10938, -1, 0 },
{ 11007, 0, -1 },
{ 11008, 0, -1 },
{ 11012, 0, -1 },
{ 11013, 0, -1 },
{ 10998, 0, -1 },
{ 10999, 0, -1 },
{ 11000, 0, -1 },
{ 11001, 0, -1 },
{ 11002, 0, -1 },
{ 11003, 0, -1 },
{ 11004, 0, -1 },
{ 11005, 0, -1 },
{ 11006, 0, -1 },
{ 11009, 0, -1 },
{ 11010, 0, -1 },
{ 11011, 0, -1 },
{ 11014, 0, -1 },
{ 11015, 0, -1 },
{ 11016, 0, -1 },
{ 11017, 0, -1 },
{ 11018, 0, -1 },
{ 11019, 0, -1 },
{ 11021, 0, -1 },
{ 11022, 0, -1 },
{ 11023, 0, -1 },
{ 11024, 0, -1 },
{ 11020, 0, -1 },
{ 11025, 0, -1 },
{ 11026, 0, -1 },
{ 909, 360, -1 },
{ 872, -1, 361 },
{ 872, -1, 362 },
{ 872, -1, 364 },
{ 872, -1, 366 },
{ 872, -1, 367 },
{ 872, -1, 368 },
{ 872, -1, 370 },
{ 843, -1, 372 },
{ 875, -1, 373 },
{ 874, -1, 374 },
{ 877, -1, 375 },
{ 876, -1, 376 },
{ 878, -1, 377 },
{ 875, -1, 377 },
{ 6119, 379, -1 },
{ 879, -1, 379 },
{ 877, -1, 379 },
{ 883, -1, 380 },
{ 6131, 381, -1 },
{ 6107, 382, -1 },
{ 6123, 383, -1 },
{ 889, -1, 384 },
{ 889, -1, 385 },
{ 6131, 386, -1 },
{ 892, -1, 387 },
{ 892, -1, 388 },
{ 6131, 389, -1 },
{ 896, -1, 390 },
{ 896, -1, 391 },
{ 896, -1, 392 },
{ 1679, 393, -1 },
{ 899, -1, 394 },
{ 899, -1, 395 },
{ 1779, 396, -1 },
{ 1778, 396, -1 },
{ 901, -1, 397 },
{ 902, -1, 398 },
{ 1779, 399, -1 },
{ 1778, 399, -1 },
{ 6131, 400, -1 },
{ 882, -1, 400 },
{ 6131, 401, -1 },
{ 920, 402, -1 },
{ 1890, 402, -1 },
{ 6131, 403, -1 },
{ 6131, 404, -1 },
{ 914, 405, -1 },
{ 779, -1, 405 },
{ 930, 406, -1 },
{ 935, 406, -1 },
{ 897, -1, 406 },
{ 936, 406, -1 },
{ 1142, 410, -1 },
{ 1675, 412, -1 },
{ 1680, 411, -1 },
{ 1678, 411, -1 },
{ 1675, 413, -1 },
{ 86, 413, -1 },
{ 1770, 417, -1 },
{ 1709, 415, 419 },
{ 1726, 421, -1 },
{ 1741, 421, -1 },
{ 1742, 421, -1 },
{ 1793, 421, -1 },
{ 1795, 421, -1 },
{ 1730, 421, -1 },
{ 1745, 421, -1 },
{ 1747, 422, -1 },
{ 1745, 422, -1 },
{ 1793, 422, -1 },
{ 1795, 422, -1 },
{ 1743, 422, -1 },
{ 1744, 422, -1 },
{ 1746, 422, -1 },
{ 1792, 422, -1 },
{ 1726, 426, -1 },
{ 1744, 426, -1 },
{ 1745, 426, -1 },
{ 1748, 426, -1 },
{ 1741, 426, -1 },
{ 1795, 426, -1 },
{ 1718, 424, -1 },
{ 1761, 424, -1 },
{ 1760, 424, -1 },
{ 1708, 424, -1 },
{ 1711, 424, -1 },
{ 1769, 428, -1 },
{ 1713, 424, 425 },
{ 1709, 424, 429 },
{ 1763, 424, -1 },
{ 1703, 424, -1 },
{ 1706, 415, -1 },
{ 1717, 415, -1 },
{ 1723, 415, -1 },
{ 1704, 415, -1 },
{ 1724, 415, -1 },
{ 1705, 415, -1 },
{ 1715, 415, -1 },
{ 1720, 415, -1 },
{ 1793, 415, -1 },
{ 1795, 415, -1 },
{ 1725, 415, -1 },
{ 1712, 415, -1 },
{ 1708, 415, -1 },
{ 1727, 415, -1 },
{ 1769, 420, -1 },
{ 1709, 415, 430 },
{ 1710, 415, -1 },
{ 1769, 431, -1 },
{ 1713, 415, 416 },
{ 1735, 415, -1 },
{ 1728, 415, -1 },
{ 1714, 415, -1 },
{ 1779, 414, -1 },
{ 1707, 415, -1 },
{ 1703, 415, -1 },
{ 1792, 415, -1 },
{ 1709, 415, 432 },
{ 1779, 433, -1 },
{ 1749, 415, -1 },
{ 1721, 415, -1 },
{ 1778, 433, -1 },
{ 1773, 435, -1 },
{ 1780, 434, -1 },
{ 1777, 434, -1 },
{ 1778, 434, -1 },
{ 1773, 436, -1 },
{ 94, 436, -1 },
{ 1794, 439, -1 },
{ 1796, 439, -1 },
{ 1793, 439, -1 },
{ 1795, 439, -1 },
{ 1851, 441, -1 },
{ 1828, 440, -1 },
{ 1816, 440, -1 },
{ 1823, 440, -1 },
{ 1829, 440, -1 },
{ 1831, 440, -1 },
{ 1832, 440, -1 },
{ 1834, 440, -1 },
{ 1845, 440, -1 },
{ 1846, 440, -1 },
{ 1817, 440, -1 },
{ 1842, 440, -1 },
{ 1843, 440, -1 },
{ 1833, 440, -1 },
{ 1818, 440, -1 },
{ 1819, 440, -1 },
{ 1890, 440, -1 },
{ 899, -1, 440 },
{ 1826, 440, -1 },
{ 1827, 440, -1 },
{ 6131, 440, -1 },
{ 1847, 440, -1 },
{ 1830, 440, -1 },
{ 1836, 440, -1 },
{ 1679, 440, -1 },
{ 871, -1, 440 },
{ 874, -1, 440 },
{ 882, -1, 440 },
{ 1798, 442, -1 },
{ 1886, 442, -1 },
{ 1877, 442, -1 },
{ 1885, 442, -1 },
{ 1887, 442, -1 },
{ 1875, 442, -1 },
{ 1880, 442, -1 },
{ 1888, 442, -1 },
{ 1889, 442, -1 },
{ 1884, 442, -1 },
{ 1871, 442, -1 },
{ 1919, 443, -1 },
{ 1885, 443, -1 },
{ 3477, 444, -1 },
{ 3481, 445, -1 },
{ 7082, 447, -1 },
{ 7076, 446, -1 },
{ 7074, 446, -1 },
{ 7077, 446, -1 },
{ 7099, 449, -1 },
{ 7093, 448, -1 },
{ 882, -1, 448 },
{ 7094, 448, -1 },
{ 8063, 451, -1 },
{ 8049, 451, -1 },
{ 8065, 452, -1 },
{ 8066, 452, -1 },
{ 8043, 450, -1 },
{ 8057, 450, -1 },
{ 8046, 450, -1 },
{ 8051, 450, -1 },
{ 1779, 450, -1 },
{ 8044, 450, -1 },
{ 8047, 450, -1 },
{ 8049, 450, -1 },
{ 8067, 450, -1 },
{ 8050, 450, -1 },
{ 8045, 450, -1 },
{ 8048, 450, -1 },
{ 8072, -1, 454 },
{ 8073, 456, -1 },
{ 8077, 458, -1 },
{ 8073, 458, -1 },
{ 8107, 459, -1 },
{ 8186, -1, 460 },
{ 8249, -1, 461 },
{ 8187, -1, 462 },
{ 8250, -1, 463 },
{ 8247, -1, 465 },
{ 8245, -1, 466 },
{ 8459, -1, 470 },
{ 1844, 471, -1 },
{ 8461, -1, 472 },
{ 8461, -1, 473 },
{ 8463, -1, 474 },
{ 8842, 475, -1 },
{ 5102, -1, 476 },
{ 8830, -1, 475 },
{ 8900, 475, -1 },
{ 8830, -1, 478 },
{ 8830, -1, 479 },
{ 8911, 477, -1 },
{ 8830, -1, 481 },
{ 8830, -1, 482 },
{ 8830, -1, 483 },
{ 8918, 480, -1 },
{ 8830, -1, 485 },
{ 8830, -1, 486 },
{ 8830, -1, 487 },
{ 8830, -1, 488 },
{ 8925, 484, -1 },
{ 8840, 489, -1 },
{ 8845, 489, -1 },
{ 8908, 490, -1 },
{ 8840, 490, -1 },
{ 8841, 490, -1 },
{ 8845, 490, -1 },
{ 8847, 491, -1 },
{ 8850, 492, -1 },
{ 8853, 493, -1 },
{ 9571, -1, 494 },
{ 9577, 494, -1 },
{ 9568, -1, 495 },
{ 9570, -1, 496 },
{ 9571, -1, 497 },
{ 9572, -1, 498 },
{ 9839, 499, -1 },
{ 9838, 499, -1 },
{ 9835, 499, -1 },
{ 8242, -1, 500 },
{ 8261, -1, 500 },
{ 1779, 501, -1 },
{ 1778, 501, -1 },
{ 1798, 502, -1 },
{ 1684, 503, -1 },
{ 1816, 502, -1 },
{ 1844, 502, -1 },
{ 1715, 503, -1 },
{ 1717, 503, -1 },
{ 1721, 503, -1 },
{ 11011, 502, -1 },
{ 11002, 502, -1 },
{ 1822, 502, -1 },
{ 1716, 503, -1 },
{ 1824, 502, -1 },
{ 1845, 502, -1 },
{ 1720, 503, -1 },
{ 1836, 502, -1 },
{ 1846, 502, -1 },
{ 1705, 503, -1 },
{ 6131, 502, -1 },
{ 11001, 502, -1 },
{ 1839, 502, -1 },
{ 11025, 505, -1 },
{ 11026, 505, -1 },
{ 11019, 504, -1 },
{ 8899, 505, -1 },
{ 11020, 505, -1 },
{ 1822, 504, -1 },
{ 7083, 506, -1 },
{ 11021, 506, -1 },
{ 11024, 506, -1 },
{ 7092, 506, -1 },
{ 5194, -1, 506 },
{ 11022, 506, -1 },
{ 7090, 506, -1 },
{ 8900, 506, -1 },
{ 7089, 506, -1 },
{ 7091, 506, -1 },
{ 1677, 412, -1 },
{ 1677, 413, -1 },
{ 1776, 435, -1 },
{ 1775, 435, -1 },
{ 1776, 436, -1 },
{ 1775, 436, -1 },
{ 8846, 489, -1 },
{ 8906, 192, -1 },
{ 8907, 192, -1 },
{ 8906, 1, -1 },
{ 8907, 1, -1 },
{ 8906, 253, -1 },
{ 8907, 253, -1 },
{ 8906, 281, -1 },
{ 8907, 281, -1 },
{ 8906, 24, -1 },
{ 8907, 24, -1 },
{ 8906, 10, -1 },
{ 8907, 10, -1 },
{ 8906, 26, -1 },
{ 8907, 26, -1 },
{ 8906, 171, -1 },
{ 8907, 171, -1 },
{ 1686, 44, -1 },
{ 1715, 44, -1 },
{ 1721, 44, -1 },
{ 1682, 129, -1 },
{ 1783, 129, -1 },
{ 1682, 136, -1 },
{ 1783, 136, -1 },
{ 1138, 130, -1 },
{ 1139, 130, -1 },
{ 1140, 130, -1 },
{ 1682, 137, -1 },
{ 1783, 137, -1 },
{ 905, -1, 122 },
{ 897, -1, 17 },
{ 3282, -1, 120 },
{ 905, -1, 120 },
{ 3282, -1, 121 },
{ 905, -1, 121 },
{ 1799, 133, -1 },
{ 1798, 10, -1 },
{ 1844, 10, -1 },
{ 1816, 10, -1 },
{ 1840, 10, -1 },
{ 1682, 130, -1 },
{ 1783, 130, -1 },
{ 1685, 147, -1 },
{ 1715, 147, -1 },
{ 895, -1, 1 },
{ 6107, 162, -1 },
{ 7083, 17, -1 },
{ 7091, 17, -1 },
{ 7090, 17, -1 },
{ 7092, 17, -1 },
{ 1798, 17, -1 },
{ 1816, 17, -1 },
{ 1840, 17, -1 },
{ 8696, -1, 507 },
{ 1721, 193, -1 },
{ 1684, 193, -1 },
{ 1798, 187, -1 },
{ 1816, 187, -1 },
{ 1845, 187, -1 },
{ 1844, 187, -1 },
{ 1823, 187, -1 },
{ 6130, 187, -1 },
{ 1835, 187, -1 },
{ 1822, 187, -1 },
{ 1820, 187, -1 },
{ 8856, 24, -1 },
{ 8856, 1, -1 },
{ 8856, 10, -1 },
{ 8856, 26, -1 },
{ 1798, 186, -1 },
{ 1828, 186, -1 },
{ 1853, 186, -1 },
{ 1852, 186, -1 },
{ 1850, 186, -1 },
{ 8461, -1, 1 },
{ 8460, -1, 169 },
{ 8460, -1, 170 },
{ 8460, -1, 171 },
{ 8459, -1, 172 },
{ 8464, -1, 169 },
{ 8464, -1, 170 },
{ 8463, -1, 172 },
{ 8477, -1, 171 },
{ 1798, 1, -1 },
{ 8145, -1, 508 },
{ 1816, 1, -1 },
{ 8909, 1, -1 },
{ 1798, 190, -1 },
{ 8106, 191, -1 },
{ 8071, -1, 190 },
{ 8070, -1, 190 },
{ 8909, 192, -1 },
{ 8903, 1, -1 },
{ 8903, 192, -1 },
{ 8911, 175, -1 },
{ 8900, 176, -1 },
{ 8911, 177, -1 },
{ 8183, -1, 509 },
{ 6106, 178, -1 },
{ 7067, 188, -1 },
{ 7073, 188, -1 },
{ 7075, 188, -1 },
{ 1798, 203, -1 },
{ 6107, 204, -1 },
{ 1799, 205, -1 },
{ 1799, 206, -1 },
{ 1799, 207, -1 },
{ 8576, -1, 209 },
{ 8576, -1, 211 },
{ 8576, -1, 212 },
{ 1828, 213, -1 },
{ 1853, 213, -1 },
{ 1852, 213, -1 },
{ 1850, 213, -1 },
{ 1828, 214, -1 },
{ 1853, 214, -1 },
{ 1852, 214, -1 },
{ 1850, 214, -1 },
{ 1816, 215, -1 },
{ 1844, 215, -1 },
{ 1845, 215, -1 },
{ 1846, 215, -1 },
{ 1836, 215, -1 },
{ 1798, 213, -1 },
{ 1798, 214, -1 },
{ 1798, 215, -1 },
{ 1798, 230, -1 },
{ 1844, 230, -1 },
{ 1828, 230, -1 },
{ 1853, 230, -1 },
{ 1852, 230, -1 },
{ 1850, 230, -1 },
{ 1845, 230, -1 },
{ 1721, 220, -1 },
{ 1705, 220, -1 },
{ 1684, 220, -1 },
{ 8111, 231, -1 },
{ 8107, 232, -1 },
{ 1798, 244, -1 },
{ 8195, -1, 271 },
{ 8261, -1, 271 },
{ 8183, -1, 240 },
{ 1845, 244, -1 },
{ 1844, 244, -1 },
{ 1845, 270, -1 },
{ 9568, -1, 255 },
{ 1844, 270, -1 },
{ 1822, 270, -1 },
{ 1834, 270, -1 },
{ 9568, -1, 254 },
{ 1816, 270, -1 },
{ 1798, 243, -1 },
{ 1844, 240, -1 },
{ 1845, 240, -1 },
{ 1829, 240, -1 },
{ 1836, 240, -1 },
{ 1832, 240, -1 },
{ 8194, -1, 243 },
{ 1844, 243, -1 },
{ 1845, 243, -1 },
{ 1836, 243, -1 },
{ 9568, -1, 245 },
{ 9568, -1, 250 },
{ 1822, 244, -1 },
{ 1845, 251, -1 },
{ 1844, 251, -1 },
{ 1839, 244, -1 },
{ 1816, 240, -1 },
{ 1834, 240, -1 },
{ 1798, 240, -1 },
{ 6118, 244, -1 },
{ 1798, 252, -1 },
{ 1844, 252, -1 },
{ 1845, 252, -1 },
{ 8909, 253, -1 },
{ 8903, 253, -1 },
{ 9532, -1, 273 },
{ 9532, -1, 510 },
{ 9576, 254, -1 },
{ 9576, 255, -1 },
{ 9576, 256, -1 },
{ 9576, 257, -1 },
{ 9576, 258, -1 },
{ 9576, 259, -1 },
{ 9576, 260, -1 },
{ 9576, 261, -1 },
{ 9576, 262, -1 },
{ 9576, 263, -1 },
{ 9576, 264, -1 },
{ 9576, 265, -1 },
{ 9576, 250, -1 },
{ 9576, 245, -1 },
{ 9576, 266, -1 },
{ 9576, 267, -1 },
{ 9576, 268, -1 },
{ 8899, 247, -1 },
{ 11020, 247, -1 },
{ 1799, 269, -1 },
{ 1822, 246, -1 },
{ 8242, -1, 511 },
{ 1816, 244, -1 },
{ 8183, -1, 163 },
{ 6118, 238, -1 },
{ 873, -1, 238 },
{ 1798, 270, -1 },
{ 1684, 272, -1 },
{ 1721, 272, -1 },
{ 1715, 272, -1 },
{ 1720, 272, -1 },
{ 9568, -1, 260 },
{ 9568, -1, 257 },
{ 9568, -1, 261 },
{ 1722, 272, -1 },
{ 1761, 272, -1 },
{ 1768, 272, -1 },
{ 1767, 272, -1 },
{ 1766, 272, -1 },
{ 1716, 272, -1 },
{ 1726, 272, -1 },
{ 1742, 272, -1 },
{ 1795, 272, -1 },
{ 1793, 272, -1 },
{ 1741, 272, -1 },
{ 1748, 272, -1 },
{ 9573, -1, 250 },
{ 1798, 279, -1 },
{ 1845, 279, -1 },
{ 1844, 279, -1 },
{ 1816, 279, -1 },
{ 1823, 251, -1 },
{ 1816, 251, -1 },
{ 1834, 251, -1 },
{ 1798, 251, -1 },
{ 9569, -1, 256 },
{ 9573, -1, 258 },
{ 9573, -1, 261 },
{ 9568, -1, 259 },
{ 9568, -1, 258 },
{ 9569, -1, 263 },
{ 9568, -1, 262 },
{ 9569, -1, 255 },
{ 9568, -1, 267 },
{ 9568, -1, 268 },
{ 9568, -1, 266 },
{ 9573, -1, 264 },
{ 9569, -1, 264 },
{ 9568, -1, 265 },
{ 1797, 272, -1 },
{ 10613, -1, 345 },
{ 10613, -1, 24 },
{ 8183, -1, 347 },
{ 8183, -1, 300 },
{ 8183, -1, 290 },
{ 10998, 282, -1 },
{ 11007, 282, -1 },
{ 11012, 282, -1 },
{ 11011, 282, -1 },
{ 11015, 282, -1 },
{ 11004, 282, -1 },
{ 11005, 282, -1 },
{ 11000, 282, -1 },
{ 11001, 282, -1 },
{ 6118, 282, -1 },
{ 10998, 328, -1 },
{ 11012, 328, -1 },
{ 11007, 328, -1 },
{ 11000, 328, -1 },
{ 11001, 328, -1 },
{ 1844, 327, -1 },
{ 1845, 327, -1 },
{ 10613, -1, 346 },
{ 8909, 281, -1 },
{ 8904, 281, -1 },
{ 8903, 281, -1 },
{ 8909, 24, -1 },
{ 8904, 24, -1 },
{ 8903, 24, -1 },
{ 8261, -1, 347 },
{ 8242, -1, 347 },
{ 8261, -1, 512 },
{ 8261, -1, 513 },
{ 8261, -1, 293 },
{ 8261, -1, 514 },
{ 8261, -1, 515 },
{ 8261, -1, 516 },
{ 8261, -1, 339 },
{ 8261, -1, 517 },
{ 8242, -1, 516 },
{ 8261, -1, 518 },
{ 8261, -1, 324 },
{ 8261, -1, 519 },
{ 1816, 286, -1 },
{ 1798, 287, -1 },
{ 1844, 286, -1 },
{ 9834, 288, -1 },
{ 9836, 288, -1 },
{ 1845, 286, -1 },
{ 1820, 286, -1 },
{ 1845, 10, -1 },
{ 1845, 289, -1 },
{ 1844, 289, -1 },
{ 1822, 286, -1 },
{ 8185, -1, 339 },
{ 8261, -1, 287 },
{ 9952, -1, 290 },
{ 9952, -1, 520 },
{ 9952, -1, 336 },
{ 11016, 290, -1 },
{ 8250, -1, 290 },
{ 1844, 290, -1 },
{ 1845, 290, -1 },
{ 11017, 290, -1 },
{ 8244, -1, 287 },
{ 1822, 287, -1 },
{ 8899, 26, -1 },
{ 8904, 26, -1 },
{ 1844, 287, -1 },
{ 1845, 287, -1 },
{ 8261, -1, 290 },
{ 8242, -1, 290 },
{ 8261, -1, 520 },
{ 8565, -1, 270 },
{ 8565, -1, 287 },
{ 1816, 287, -1 },
{ 8242, -1, 336 },
{ 8899, 24, -1 },
{ 9837, 288, -1 },
{ 8190, -1, 519 },
{ 1798, 286, -1 },
{ 1721, 292, -1 },
{ 1703, 292, -1 },
{ 6106, 204, -1 },
{ 8035, 293, -1 },
{ 1715, 292, -1 },
{ 8053, 293, -1 },
{ 8051, 293, -1 },
{ 8056, 293, -1 },
{ 8061, 293, -1 },
{ 8060, 293, -1 },
{ 8062, 293, -1 },
{ 8054, 293, -1 },
{ 8042, 293, -1 },
{ 1720, 292, -1 },
{ 1684, 292, -1 },
{ 9834, 305, -1 },
{ 9836, 305, -1 },
{ 8183, -1, 521 },
{ 11016, 165, -1 },
{ 1845, 165, -1 },
{ 1844, 165, -1 },
{ 11017, 165, -1 },
{ 8194, -1, 165 },
{ 9838, 305, -1 },
{ 8899, 281, -1 },
{ 9837, 305, -1 },
{ 1798, 300, -1 },
{ 1822, 300, -1 },
{ 1844, 300, -1 },
{ 1845, 300, -1 },
{ 1816, 300, -1 },
{ 6118, 300, -1 },
{ 1839, 300, -1 },
{ 1684, 306, -1 },
{ 1721, 306, -1 },
{ 11000, 300, -1 },
{ 10998, 300, -1 },
{ 10999, 300, -1 },
{ 1715, 306, -1 },
{ 11001, 300, -1 },
{ 11007, 300, -1 },
{ 1720, 306, -1 },
{ 10938, -1, 522 },
{ 10938, -1, 523 },
{ 10938, -1, 171 },
{ 10938, -1, 524 },
{ 10938, -1, 1 },
{ 1844, 347, -1 },
{ 1845, 347, -1 },
{ 10938, -1, 24 },
{ 10938, -1, 26 },
{ 10614, -1, 289 },
{ 10613, -1, 317 },
{ 10613, -1, 26 },
{ 10613, -1, 318 },
{ 10613, -1, 1 },
{ 10614, -1, 293 },
{ 10614, -1, 300 },
{ 10614, -1, 525 },
{ 10614, -1, 526 },
{ 10614, -1, 527 },
{ 10613, -1, 319 },
{ 10613, -1, 320 },
{ 10613, -1, 321 },
{ 10613, -1, 322 },
{ 10613, -1, 323 },
{ 10613, -1, 2 },
{ 8909, 10, -1 },
{ 8242, -1, 521 },
{ 8261, -1, 528 },
{ 8903, 10, -1 },
{ 1798, 347, -1 },
{ 10938, -1, 529 },
{ 10938, -1, 530 },
{ 1822, 347, -1 },
{ 1816, 347, -1 },
{ 8899, 348, -1 },
{ 11020, 348, -1 },
{ 6130, 165, -1 },
{ 1835, 165, -1 },
{ 11025, 348, -1 },
{ 11026, 348, -1 },
{ 8899, 165, -1 },
{ 8900, 165, -1 },
{ 8106, 349, -1 },
{ 8107, 349, -1 },
{ 8183, -1, 324 },
{ 8909, 26, -1 },
{ 8903, 26, -1 },
{ 8188, -1, 165 },
{ 8191, -1, 290 },
{ 11016, 324, -1 },
{ 8194, -1, 324 },
{ 1845, 324, -1 },
{ 1844, 324, -1 },
{ 11017, 324, -1 },
{ 11016, 327, -1 },
{ 8191, -1, 327 },
{ 11017, 327, -1 },
{ 1822, 327, -1 },
{ 1816, 327, -1 },
{ 11016, 205, -1 },
{ 1844, 205, -1 },
{ 1842, 205, -1 },
{ 1843, 205, -1 },
{ 11017, 205, -1 },
{ 8183, -1, 269 },
{ 8035, 297, -1 },
{ 1798, 327, -1 },
{ 8052, 297, -1 },
{ 8056, 297, -1 },
{ 8061, 297, -1 },
{ 8060, 297, -1 },
{ 8062, 297, -1 },
{ 8053, 297, -1 },
{ 8051, 297, -1 },
{ 8054, 297, -1 },
{ 10614, -1, 347 },
{ 10613, -1, 332 },
{ 8905, 24, -1 },
{ 8909, 171, -1 },
{ 8903, 171, -1 },
{ 1798, 336, -1 },
{ 10613, -1, 330 },
{ 10613, -1, 334 },
{ 10613, -1, 285 },
{ 10613, -1, 335 },
{ 10614, -1, 531 },
{ 8183, -1, 532 },
{ 8194, -1, 336 },
{ 1845, 336, -1 },
{ 1844, 336, -1 },
{ 1816, 333, -1 },
{ 1834, 333, -1 },
{ 1845, 333, -1 },
{ 1844, 333, -1 },
{ 1798, 333, -1 },
{ 1845, 205, -1 },
{ 1816, 205, -1 },
{ 1846, 205, -1 },
{ 10613, -1, 337 },
{ 8183, -1, 512 },
{ 1845, 338, -1 },
{ 1844, 338, -1 },
{ 1816, 338, -1 },
{ 1836, 338, -1 },
{ 1822, 338, -1 },
{ 1798, 338, -1 },
{ 8496, -1, 204 },
{ 1798, 339, -1 },
{ 1823, 339, -1 },
{ 1845, 339, -1 },
{ 1844, 339, -1 },
{ 1834, 339, -1 },
{ 1816, 339, -1 },
{ 6130, 339, -1 },
{ 1825, 339, -1 },
{ 8106, 340, -1 },
{ 8071, -1, 339 },
{ 11016, 169, -1 },
{ 11016, 172, -1 },
{ 11016, 171, -1 },
{ 11016, 170, -1 },
{ 11016, 1, -1 },
{ 1820, 169, -1 },
{ 1820, 172, -1 },
{ 1820, 171, -1 },
{ 1820, 170, -1 },
{ 1820, 1, -1 },
{ 1822, 169, -1 },
{ 1822, 172, -1 },
{ 1822, 171, -1 },
{ 1822, 170, -1 },
{ 1822, 1, -1 },
{ 1844, 169, -1 },
{ 1844, 1, -1 },
{ 1845, 169, -1 },
{ 1845, 172, -1 },
{ 1845, 171, -1 },
{ 1845, 170, -1 },
{ 1846, 169, -1 },
{ 1846, 172, -1 },
{ 1846, 171, -1 },
{ 1846, 170, -1 },
{ 11017, 169, -1 },
{ 11017, 172, -1 },
{ 11017, 171, -1 },
{ 11017, 170, -1 },
{ 11017, 1, -1 },
{ 1816, 169, -1 },
{ 1816, 172, -1 },
{ 1816, 171, -1 },
{ 1816, 170, -1 },
{ 8242, -1, 533 },
{ 843, -1, 1 },
{ 843, -1, 121 },
{ 843, -1, 120 },
{ 843, -1, 172 },
{ 843, -1, 244 },
{ 843, -1, 206 },
{ 843, -1, 207 },
{ 843, -1, 205 },
{ 843, -1, 171 },
{ 843, -1, 169 },
{ 843, -1, 170 },
{ 774, -1, 42 },
{ 774, -1, 146 },
{ 774, -1, 26 },
{ 774, -1, 6 },
{ 774, -1, 2 },
{ 774, -1, 50 },
{ 774, -1, 161 },
{ 774, -1, 222 },
{ 774, -1, 195 },
{ 774, -1, 149 },
{ 774, -1, 46 },
{ 774, -1, 59 },
{ 774, -1, 47 },
{ 774, -1, 63 },
{ 774, -1, 64 },
{ 774, -1, 129 },
{ 774, -1, 25 },
{ 774, -1, 23 },
{ 774, -1, 8 },
{ 774, -1, 1 },
{ 774, -1, 3 },
{ 774, -1, 41 },
{ 774, -1, 121 },
{ 774, -1, 120 },
{ 774, -1, 99 },
{ 774, -1, 100 },
{ 774, -1, 98 },
{ 774, -1, 111 },
{ 774, -1, 104 },
{ 774, -1, 34 },
{ 774, -1, 124 },
{ 774, -1, 123 },
{ 774, -1, 131 },
{ 774, -1, 7 },
{ 774, -1, 156 },
{ 774, -1, 24 },
{ 774, -1, 159 },
{ 774, -1, 130 },
{ 774, -1, 9 },
{ 774, -1, 4 },
{ 774, -1, 5 },
{ 774, -1, 160 },
{ 774, -1, 358 },
{ 774, -1, 172 },
{ 774, -1, 239 },
{ 774, -1, 244 },
{ 774, -1, 168 },
{ 774, -1, 189 },
{ 774, -1, 238 },
{ 774, -1, 280 },
{ 774, -1, 184 },
{ 774, -1, 319 },
{ 774, -1, 206 },
{ 774, -1, 207 },
{ 774, -1, 205 },
{ 774, -1, 188 },
{ 774, -1, 171 },
{ 774, -1, 169 },
{ 774, -1, 170 },
{ 773, -1, 42 },
{ 773, -1, 146 },
{ 773, -1, 26 },
{ 773, -1, 6 },
{ 773, -1, 2 },
{ 773, -1, 50 },
{ 773, -1, 161 },
{ 773, -1, 222 },
{ 773, -1, 195 },
{ 773, -1, 149 },
{ 773, -1, 46 },
{ 773, -1, 59 },
{ 773, -1, 47 },
{ 773, -1, 63 },
{ 773, -1, 64 },
{ 773, -1, 129 },
{ 773, -1, 25 },
{ 773, -1, 23 },
{ 773, -1, 8 },
{ 773, -1, 1 },
{ 773, -1, 3 },
{ 773, -1, 41 },
{ 773, -1, 121 },
{ 773, -1, 120 },
{ 773, -1, 99 },
{ 773, -1, 100 },
{ 773, -1, 98 },
{ 773, -1, 111 },
{ 773, -1, 104 },
{ 773, -1, 34 },
{ 773, -1, 124 },
{ 773, -1, 123 },
{ 773, -1, 131 },
{ 773, -1, 7 },
{ 773, -1, 156 },
{ 773, -1, 24 },
{ 773, -1, 159 },
{ 773, -1, 130 },
{ 773, -1, 9 },
{ 773, -1, 4 },
{ 773, -1, 5 },
{ 773, -1, 160 },
{ 773, -1, 358 },
{ 773, -1, 172 },
{ 773, -1, 239 },
{ 773, -1, 244 },
{ 773, -1, 168 },
{ 773, -1, 189 },
{ 773, -1, 238 },
{ 773, -1, 280 },
{ 773, -1, 184 },
{ 773, -1, 319 },
{ 773, -1, 206 },
{ 773, -1, 207 },
{ 773, -1, 205 },
{ 773, -1, 188 },
{ 773, -1, 171 },
{ 773, -1, 169 },
{ 773, -1, 170 },
{ 11025, 247, -1 },
{ 1844, 246, -1 },
{ 11026, 247, -1 },
{ 1845, 246, -1 },
{ 770, -1, 42 },
{ 770, -1, 146 },
{ 770, -1, 26 },
{ 770, -1, 6 },
{ 770, -1, 2 },
{ 770, -1, 50 },
{ 770, -1, 161 },
{ 770, -1, 222 },
{ 770, -1, 195 },
{ 770, -1, 149 },
{ 770, -1, 46 },
{ 770, -1, 59 },
{ 770, -1, 47 },
{ 770, -1, 63 },
{ 770, -1, 64 },
{ 770, -1, 129 },
{ 770, -1, 25 },
{ 770, -1, 23 },
{ 770, -1, 8 },
{ 770, -1, 1 },
{ 770, -1, 3 },
{ 770, -1, 41 },
{ 770, -1, 121 },
{ 770, -1, 120 },
{ 770, -1, 99 },
{ 770, -1, 100 },
{ 770, -1, 98 },
{ 770, -1, 111 },
{ 770, -1, 104 },
{ 770, -1, 34 },
{ 770, -1, 124 },
{ 770, -1, 123 },
{ 770, -1, 131 },
{ 770, -1, 7 },
{ 770, -1, 156 },
{ 770, -1, 24 },
{ 770, -1, 159 },
{ 770, -1, 130 },
{ 770, -1, 9 },
{ 770, -1, 4 },
{ 770, -1, 5 },
{ 770, -1, 160 },
{ 770, -1, 358 },
{ 770, -1, 172 },
{ 770, -1, 239 },
{ 770, -1, 244 },
{ 770, -1, 168 },
{ 770, -1, 189 },
{ 770, -1, 238 },
{ 770, -1, 280 },
{ 770, -1, 184 },
{ 770, -1, 319 },
{ 770, -1, 206 },
{ 770, -1, 207 },
{ 770, -1, 205 },
{ 770, -1, 188 },
{ 770, -1, 171 },
{ 770, -1, 169 },
{ 770, -1, 170 },
{ 896, -1, 1 },
{ 876, -1, 1 },
{ 876, -1, 121 },
{ 876, -1, 120 },
{ 876, -1, 172 },
{ 876, -1, 244 },
{ 876, -1, 206 },
{ 876, -1, 207 },
{ 876, -1, 205 },
{ 876, -1, 171 },
{ 876, -1, 169 },
{ 876, -1, 170 },
{ 899, -1, 1 },
{ 897, -1, 121 },
{ 899, -1, 121 },
{ 897, -1, 120 },
{ 899, -1, 120 },
{ 899, -1, 172 },
{ 899, -1, 244 },
{ 899, -1, 206 },
{ 899, -1, 207 },
{ 899, -1, 205 },
{ 899, -1, 171 },
{ 899, -1, 169 },
{ 899, -1, 170 },
{ 778, -1, 42 },
{ 778, -1, 146 },
{ 778, -1, 26 },
{ 778, -1, 6 },
{ 778, -1, 2 },
{ 778, -1, 50 },
{ 778, -1, 161 },
{ 778, -1, 222 },
{ 778, -1, 195 },
{ 778, -1, 149 },
{ 778, -1, 46 },
{ 778, -1, 59 },
{ 778, -1, 47 },
{ 778, -1, 63 },
{ 778, -1, 64 },
{ 778, -1, 129 },
{ 778, -1, 25 },
{ 778, -1, 23 },
{ 778, -1, 8 },
{ 778, -1, 1 },
{ 778, -1, 3 },
{ 778, -1, 41 },
{ 778, -1, 121 },
{ 778, -1, 120 },
{ 778, -1, 99 },
{ 778, -1, 100 },
{ 778, -1, 98 },
{ 778, -1, 111 },
{ 778, -1, 104 },
{ 778, -1, 34 },
{ 778, -1, 124 },
{ 778, -1, 123 },
{ 778, -1, 131 },
{ 778, -1, 7 },
{ 778, -1, 156 },
{ 778, -1, 24 },
{ 778, -1, 159 },
{ 778, -1, 130 },
{ 778, -1, 9 },
{ 778, -1, 4 },
{ 778, -1, 5 },
{ 778, -1, 160 },
{ 778, -1, 358 },
{ 778, -1, 172 },
{ 778, -1, 239 },
{ 778, -1, 244 },
{ 778, -1, 168 },
{ 778, -1, 189 },
{ 778, -1, 238 },
{ 778, -1, 280 },
{ 778, -1, 184 },
{ 778, -1, 319 },
{ 778, -1, 206 },
{ 778, -1, 207 },
{ 778, -1, 205 },
{ 778, -1, 188 },
{ 778, -1, 171 },
{ 778, -1, 169 },
{ 778, -1, 170 },
{ 8461, -1, 172 },
{ 8461, -1, 171 },
{ 8461, -1, 169 },
{ 8461, -1, 170 },
{ 772, -1, 42 },
{ 772, -1, 146 },
{ 772, -1, 26 },
{ 772, -1, 6 },
{ 772, -1, 2 },
{ 772, -1, 50 },
{ 772, -1, 161 },
{ 772, -1, 222 },
{ 772, -1, 195 },
{ 772, -1, 149 },
{ 772, -1, 46 },
{ 772, -1, 59 },
{ 772, -1, 47 },
{ 772, -1, 63 },
{ 772, -1, 64 },
{ 772, -1, 129 },
{ 772, -1, 25 },
{ 772, -1, 23 },
{ 772, -1, 8 },
{ 772, -1, 1 },
{ 772, -1, 3 },
{ 772, -1, 41 },
{ 772, -1, 121 },
{ 772, -1, 120 },
{ 772, -1, 99 },
{ 772, -1, 100 },
{ 772, -1, 98 },
{ 772, -1, 111 },
{ 772, -1, 104 },
{ 772, -1, 34 },
{ 772, -1, 124 },
{ 772, -1, 123 },
{ 772, -1, 131 },
{ 772, -1, 7 },
{ 772, -1, 156 },
{ 772, -1, 24 },
{ 772, -1, 159 },
{ 772, -1, 130 },
{ 772, -1, 9 },
{ 772, -1, 4 },
{ 772, -1, 5 },
{ 772, -1, 160 },
{ 772, -1, 358 },
{ 772, -1, 172 },
{ 772, -1, 239 },
{ 772, -1, 244 },
{ 772, -1, 168 },
{ 772, -1, 189 },
{ 772, -1, 238 },
{ 772, -1, 280 },
{ 772, -1, 184 },
{ 772, -1, 319 },
{ 772, -1, 206 },
{ 772, -1, 207 },
{ 772, -1, 205 },
{ 772, -1, 188 },
{ 772, -1, 171 },
{ 772, -1, 169 },
{ 772, -1, 170 },
{ 775, -1, 42 },
{ 775, -1, 146 },
{ 775, -1, 26 },
{ 775, -1, 6 },
{ 775, -1, 2 },
{ 775, -1, 50 },
{ 775, -1, 161 },
{ 775, -1, 222 },
{ 775, -1, 195 },
{ 775, -1, 149 },
{ 775, -1, 46 },
{ 775, -1, 59 },
{ 775, -1, 47 },
{ 775, -1, 63 },
{ 775, -1, 64 },
{ 775, -1, 129 },
{ 775, -1, 25 },
{ 775, -1, 23 },
{ 775, -1, 8 },
{ 775, -1, 1 },
{ 775, -1, 3 },
{ 775, -1, 41 },
{ 775, -1, 121 },
{ 775, -1, 120 },
{ 775, -1, 99 },
{ 775, -1, 100 },
{ 775, -1, 98 },
{ 775, -1, 111 },
{ 775, -1, 104 },
{ 775, -1, 34 },
{ 775, -1, 124 },
{ 775, -1, 123 },
{ 775, -1, 131 },
{ 775, -1, 7 },
{ 775, -1, 156 },
{ 775, -1, 24 },
{ 775, -1, 159 },
{ 775, -1, 130 },
{ 775, -1, 9 },
{ 775, -1, 4 },
{ 775, -1, 5 },
{ 775, -1, 160 },
{ 775, -1, 358 },
{ 775, -1, 172 },
{ 775, -1, 239 },
{ 775, -1, 244 },
{ 775, -1, 168 },
{ 775, -1, 189 },
{ 775, -1, 238 },
{ 775, -1, 280 },
{ 775, -1, 184 },
{ 775, -1, 319 },
{ 775, -1, 206 },
{ 775, -1, 207 },
{ 775, -1, 205 },
{ 775, -1, 188 },
{ 775, -1, 171 },
{ 775, -1, 169 },
{ 775, -1, 170 },
{ 776, -1, 42 },
{ 776, -1, 146 },
{ 776, -1, 26 },
{ 776, -1, 6 },
{ 776, -1, 2 },
{ 776, -1, 50 },
{ 776, -1, 161 },
{ 776, -1, 222 },
{ 776, -1, 195 },
{ 776, -1, 149 },
{ 776, -1, 46 },
{ 776, -1, 59 },
{ 776, -1, 47 },
{ 776, -1, 63 },
{ 776, -1, 64 },
{ 776, -1, 129 },
{ 776, -1, 25 },
{ 776, -1, 23 },
{ 776, -1, 8 },
{ 776, -1, 1 },
{ 776, -1, 3 },
{ 776, -1, 41 },
{ 776, -1, 121 },
{ 776, -1, 120 },
{ 776, -1, 99 },
{ 776, -1, 100 },
{ 776, -1, 98 },
{ 776, -1, 111 },
{ 776, -1, 104 },
{ 776, -1, 34 },
{ 776, -1, 124 },
{ 776, -1, 123 },
{ 776, -1, 131 },
{ 776, -1, 7 },
{ 776, -1, 156 },
{ 776, -1, 24 },
{ 776, -1, 159 },
{ 776, -1, 130 },
{ 776, -1, 9 },
{ 776, -1, 4 },
{ 776, -1, 5 },
{ 776, -1, 160 },
{ 776, -1, 358 },
{ 776, -1, 172 },
{ 776, -1, 239 },
{ 776, -1, 244 },
{ 776, -1, 168 },
{ 776, -1, 189 },
{ 776, -1, 238 },
{ 776, -1, 280 },
{ 776, -1, 184 },
{ 776, -1, 319 },
{ 776, -1, 206 },
{ 776, -1, 207 },
{ 776, -1, 205 },
{ 776, -1, 188 },
{ 776, -1, 171 },
{ 776, -1, 169 },
{ 776, -1, 170 },
{ 780, -1, 42 },
{ 780, -1, 146 },
{ 780, -1, 26 },
{ 780, -1, 6 },
{ 780, -1, 2 },
{ 780, -1, 50 },
{ 780, -1, 161 },
{ 780, -1, 222 },
{ 780, -1, 195 },
{ 780, -1, 149 },
{ 780, -1, 46 },
{ 780, -1, 59 },
{ 780, -1, 47 },
{ 780, -1, 63 },
{ 780, -1, 64 },
{ 780, -1, 129 },
{ 780, -1, 25 },
{ 780, -1, 23 },
{ 780, -1, 8 },
{ 780, -1, 1 },
{ 780, -1, 3 },
{ 780, -1, 41 },
{ 780, -1, 121 },
{ 780, -1, 120 },
{ 780, -1, 99 },
{ 780, -1, 100 },
{ 780, -1, 98 },
{ 780, -1, 111 },
{ 780, -1, 104 },
{ 780, -1, 34 },
{ 780, -1, 124 },
{ 780, -1, 123 },
{ 780, -1, 131 },
{ 780, -1, 7 },
{ 780, -1, 156 },
{ 780, -1, 24 },
{ 780, -1, 159 },
{ 780, -1, 130 },
{ 780, -1, 9 },
{ 780, -1, 4 },
{ 780, -1, 5 },
{ 780, -1, 160 },
{ 780, -1, 358 },
{ 780, -1, 172 },
{ 780, -1, 239 },
{ 780, -1, 244 },
{ 780, -1, 168 },
{ 780, -1, 189 },
{ 780, -1, 238 },
{ 780, -1, 280 },
{ 780, -1, 184 },
{ 780, -1, 319 },
{ 780, -1, 206 },
{ 780, -1, 207 },
{ 780, -1, 205 },
{ 780, -1, 188 },
{ 780, -1, 171 },
{ 780, -1, 169 },
{ 780, -1, 170 },
{ 875, -1, 534 },
{ 877, -1, 1 },
{ 875, -1, 535 },
{ 877, -1, 121 },
{ 875, -1, 536 },
{ 877, -1, 120 },
{ 875, -1, 537 },
{ 877, -1, 172 },
{ 875, -1, 538 },
{ 877, -1, 244 },
{ 877, -1, 238 },
{ 875, -1, 539 },
{ 877, -1, 206 },
{ 875, -1, 540 },
{ 877, -1, 207 },
{ 875, -1, 541 },
{ 877, -1, 205 },
{ 875, -1, 542 },
{ 877, -1, 171 },
{ 875, -1, 543 },
{ 877, -1, 169 },
{ 875, -1, 544 },
{ 877, -1, 170 },
{ 882, -1, 1 },
{ 883, -1, 1 },
{ 882, -1, 121 },
{ 883, -1, 121 },
{ 882, -1, 120 },
{ 883, -1, 120 },
{ 882, -1, 172 },
{ 883, -1, 172 },
{ 882, -1, 244 },
{ 883, -1, 244 },
{ 882, -1, 206 },
{ 883, -1, 206 },
{ 882, -1, 207 },
{ 883, -1, 207 },
{ 882, -1, 205 },
{ 883, -1, 205 },
{ 882, -1, 171 },
{ 883, -1, 171 },
{ 882, -1, 169 },
{ 883, -1, 169 },
{ 882, -1, 170 },
{ 883, -1, 170 },
{ 872, -1, 534 },
{ 874, -1, 1 },
{ 871, -1, 1 },
{ 872, -1, 535 },
{ 874, -1, 121 },
{ 871, -1, 121 },
{ 872, -1, 536 },
{ 874, -1, 120 },
{ 871, -1, 120 },
{ 872, -1, 537 },
{ 874, -1, 172 },
{ 871, -1, 172 },
{ 872, -1, 538 },
{ 874, -1, 244 },
{ 871, -1, 244 },
{ 874, -1, 238 },
{ 872, -1, 539 },
{ 874, -1, 206 },
{ 871, -1, 206 },
{ 872, -1, 540 },
{ 874, -1, 207 },
{ 871, -1, 207 },
{ 872, -1, 541 },
{ 874, -1, 205 },
{ 871, -1, 205 },
{ 872, -1, 542 },
{ 874, -1, 171 },
{ 871, -1, 171 },
{ 872, -1, 543 },
{ 874, -1, 169 },
{ 871, -1, 169 },
{ 872, -1, 544 },
{ 874, -1, 170 },
{ 871, -1, 170 },
{ 878, -1, 534 },
{ 879, -1, 1 },
{ 878, -1, 535 },
{ 879, -1, 121 },
{ 878, -1, 536 },
{ 879, -1, 120 },
{ 878, -1, 537 },
{ 879, -1, 172 },
{ 878, -1, 538 },
{ 879, -1, 244 },
{ 879, -1, 238 },
{ 878, -1, 539 },
{ 879, -1, 206 },
{ 878, -1, 540 },
{ 879, -1, 207 },
{ 878, -1, 541 },
{ 879, -1, 205 },
{ 878, -1, 542 },
{ 879, -1, 171 },
{ 878, -1, 543 },
{ 879, -1, 169 },
{ 878, -1, 544 },
{ 879, -1, 170 },
{ 1709, 221, 430 },
{ 1709, 221, 545 },
{ 1709, 221, 546 },
{ 1709, 221, 31 },
{ 1713, 221, 222 },
{ 1713, 221, 0 },
{ 1709, 194, 430 },
{ 1709, 194, 547 },
{ 1709, 194, 548 },
{ 1709, 194, 31 },
{ 1713, 194, 195 },
{ 1713, 194, 0 },
{ 1709, 148, 549 },
{ 1709, 148, 550 },
{ 1709, 148, 430 },
{ 1709, 148, 551 },
{ 1709, 148, 552 },
{ 1713, 148, 26 },
{ 1713, 148, 149 },
{ 1709, 45, 430 },
{ 1709, 45, 553 },
{ 1709, 45, 554 },
{ 1709, 45, 534 },
{ 1709, 45, 221 },
{ 1713, 45, 46 },
{ 1713, 45, 1 },
{ 1709, 31, 430 },
{ 1709, 31, 555 },
{ 1709, 31, 556 },
{ 1713, 31, 59 },
{ 8830, -1, 26 },
{ 8830, -1, 1 },
{ 8830, -1, 24 },
{ 8830, -1, 281 },
{ 8830, -1, 171 },
{ 8248, -1, 165 },
{ 8463, -1, 171 },
{ 779, -1, 42 },
{ 779, -1, 146 },
{ 779, -1, 26 },
{ 779, -1, 6 },
{ 779, -1, 2 },
{ 779, -1, 50 },
{ 779, -1, 161 },
{ 779, -1, 222 },
{ 779, -1, 195 },
{ 779, -1, 149 },
{ 779, -1, 46 },
{ 779, -1, 59 },
{ 779, -1, 47 },
{ 779, -1, 63 },
{ 779, -1, 64 },
{ 779, -1, 129 },
{ 779, -1, 25 },
{ 779, -1, 23 },
{ 779, -1, 8 },
{ 779, -1, 1 },
{ 779, -1, 3 },
{ 779, -1, 41 },
{ 779, -1, 121 },
{ 779, -1, 120 },
{ 779, -1, 99 },
{ 779, -1, 100 },
{ 779, -1, 98 },
{ 779, -1, 111 },
{ 779, -1, 104 },
{ 779, -1, 34 },
{ 779, -1, 124 },
{ 779, -1, 123 },
{ 779, -1, 131 },
{ 779, -1, 7 },
{ 779, -1, 156 },
{ 779, -1, 24 },
{ 779, -1, 159 },
{ 779, -1, 130 },
{ 779, -1, 9 },
{ 779, -1, 4 },
{ 779, -1, 5 },
{ 779, -1, 160 },
{ 779, -1, 358 },
{ 779, -1, 172 },
{ 779, -1, 239 },
{ 779, -1, 244 },
{ 779, -1, 168 },
{ 779, -1, 189 },
{ 779, -1, 238 },
{ 779, -1, 280 },
{ 779, -1, 184 },
{ 779, -1, 319 },
{ 779, -1, 206 },
{ 779, -1, 207 },
{ 779, -1, 205 },
{ 779, -1, 188 },
{ 779, -1, 171 },
{ 779, -1, 169 },
{ 779, -1, 170 },
{ 8459, -1, 171 },
{ 8459, -1, 169 },
{ 8459, -1, 170 },
{ 1845, 269, -1 },
{ 1844, 269, -1 },
{ 936, 121, -1 },
{ 937, 121, -1 },
{ 938, 121, -1 },
{ 939, 121, -1 },
{ 940, 121, -1 },
{ 941, 121, -1 },
{ 936, 120, -1 },
{ 937, 120, -1 },
{ 938, 120, -1 },
{ 939, 120, -1 },
{ 940, 120, -1 },
{ 941, 120, -1 },
{ 920, 121, -1 },
{ 921, 121, -1 },
{ 922, 121, -1 },
{ 923, 121, -1 },
{ 924, 121, -1 },
{ 925, 121, -1 },
{ 926, 121, -1 },
{ 927, 121, -1 },
{ 928, 121, -1 },
{ 929, 121, -1 },
{ 930, 121, -1 },
{ 931, 121, -1 },
{ 932, 121, -1 },
{ 933, 121, -1 },
{ 934, 121, -1 },
{ 935, 121, -1 },
{ 920, 120, -1 },
{ 921, 120, -1 },
{ 922, 120, -1 },
{ 923, 120, -1 },
{ 924, 120, -1 },
{ 925, 120, -1 },
{ 926, 120, -1 },
{ 927, 120, -1 },
{ 928, 120, -1 },
{ 929, 120, -1 },
{ 930, 120, -1 },
{ 931, 120, -1 },
{ 932, 120, -1 },
{ 933, 120, -1 },
{ 934, 120, -1 },
{ 935, 120, -1 },
{ 909, 42, -1 },
{ 910, 42, -1 },
{ 911, 42, -1 },
{ 912, 42, -1 },
{ 913, 42, -1 },
{ 914, 42, -1 },
{ 909, 146, -1 },
{ 910, 146, -1 },
{ 911, 146, -1 },
{ 912, 146, -1 },
{ 913, 146, -1 },
{ 914, 146, -1 },
{ 909, 26, -1 },
{ 910, 26, -1 },
{ 911, 26, -1 },
{ 912, 26, -1 },
{ 913, 26, -1 },
{ 914, 26, -1 },
{ 909, 6, -1 },
{ 910, 6, -1 },
{ 911, 6, -1 },
{ 912, 6, -1 },
{ 913, 6, -1 },
{ 914, 6, -1 },
{ 909, 2, -1 },
{ 910, 2, -1 },
{ 911, 2, -1 },
{ 912, 2, -1 },
{ 913, 2, -1 },
{ 914, 2, -1 },
{ 909, 50, -1 },
{ 910, 50, -1 },
{ 911, 50, -1 },
{ 912, 50, -1 },
{ 913, 50, -1 },
{ 914, 50, -1 },
{ 909, 161, -1 },
{ 910, 161, -1 },
{ 911, 161, -1 },
{ 912, 161, -1 },
{ 913, 161, -1 },
{ 914, 161, -1 },
{ 909, 222, -1 },
{ 910, 222, -1 },
{ 911, 222, -1 },
{ 912, 222, -1 },
{ 913, 222, -1 },
{ 914, 222, -1 },
{ 909, 195, -1 },
{ 910, 195, -1 },
{ 911, 195, -1 },
{ 912, 195, -1 },
{ 913, 195, -1 },
{ 914, 195, -1 },
{ 909, 149, -1 },
{ 910, 149, -1 },
{ 911, 149, -1 },
{ 912, 149, -1 },
{ 913, 149, -1 },
{ 914, 149, -1 },
{ 909, 46, -1 },
{ 910, 46, -1 },
{ 911, 46, -1 },
{ 912, 46, -1 },
{ 913, 46, -1 },
{ 914, 46, -1 },
{ 909, 59, -1 },
{ 910, 59, -1 },
{ 911, 59, -1 },
{ 912, 59, -1 },
{ 913, 59, -1 },
{ 914, 59, -1 },
{ 909, 47, -1 },
{ 910, 47, -1 },
{ 911, 47, -1 },
{ 912, 47, -1 },
{ 913, 47, -1 },
{ 914, 47, -1 },
{ 909, 63, -1 },
{ 910, 63, -1 },
{ 911, 63, -1 },
{ 912, 63, -1 },
{ 913, 63, -1 },
{ 914, 63, -1 },
{ 909, 64, -1 },
{ 910, 64, -1 },
{ 911, 64, -1 },
{ 912, 64, -1 },
{ 913, 64, -1 },
{ 914, 64, -1 },
{ 909, 129, -1 },
{ 910, 129, -1 },
{ 911, 129, -1 },
{ 912, 129, -1 },
{ 913, 129, -1 },
{ 914, 129, -1 },
{ 909, 25, -1 },
{ 910, 25, -1 },
{ 911, 25, -1 },
{ 912, 25, -1 },
{ 913, 25, -1 },
{ 914, 25, -1 },
{ 909, 23, -1 },
{ 910, 23, -1 },
{ 911, 23, -1 },
{ 912, 23, -1 },
{ 913, 23, -1 },
{ 914, 23, -1 },
{ 909, 8, -1 },
{ 910, 8, -1 },
{ 911, 8, -1 },
{ 912, 8, -1 },
{ 913, 8, -1 },
{ 914, 8, -1 },
{ 909, 1, -1 },
{ 910, 1, -1 },
{ 911, 1, -1 },
{ 912, 1, -1 },
{ 913, 1, -1 },
{ 914, 1, -1 },
{ 909, 3, -1 },
{ 910, 3, -1 },
{ 911, 3, -1 },
{ 912, 3, -1 },
{ 913, 3, -1 },
{ 914, 3, -1 },
{ 909, 41, -1 },
{ 910, 41, -1 },
{ 911, 41, -1 },
{ 912, 41, -1 },
{ 913, 41, -1 },
{ 914, 41, -1 },
{ 909, 121, -1 },
{ 910, 121, -1 },
{ 911, 121, -1 },
{ 912, 121, -1 },
{ 913, 121, -1 },
{ 914, 121, -1 },
{ 909, 120, -1 },
{ 910, 120, -1 },
{ 911, 120, -1 },
{ 912, 120, -1 },
{ 913, 120, -1 },
{ 914, 120, -1 },
{ 909, 99, -1 },
{ 910, 99, -1 },
{ 911, 99, -1 },
{ 912, 99, -1 },
{ 913, 99, -1 },
{ 914, 99, -1 },
{ 909, 100, -1 },
{ 910, 100, -1 },
{ 911, 100, -1 },
{ 912, 100, -1 },
{ 913, 100, -1 },
{ 914, 100, -1 },
{ 909, 98, -1 },
{ 910, 98, -1 },
{ 911, 98, -1 },
{ 912, 98, -1 },
{ 913, 98, -1 },
{ 914, 98, -1 },
{ 909, 111, -1 },
{ 910, 111, -1 },
{ 911, 111, -1 },
{ 912, 111, -1 },
{ 913, 111, -1 },
{ 914, 111, -1 },
{ 909, 104, -1 },
{ 910, 104, -1 },
{ 911, 104, -1 },
{ 912, 104, -1 },
{ 913, 104, -1 },
{ 914, 104, -1 },
{ 909, 34, -1 },
{ 910, 34, -1 },
{ 911, 34, -1 },
{ 912, 34, -1 },
{ 913, 34, -1 },
{ 914, 34, -1 },
{ 909, 124, -1 },
{ 910, 124, -1 },
{ 911, 124, -1 },
{ 912, 124, -1 },
{ 913, 124, -1 },
{ 914, 124, -1 },
{ 909, 123, -1 },
{ 910, 123, -1 },
{ 911, 123, -1 },
{ 912, 123, -1 },
{ 913, 123, -1 },
{ 914, 123, -1 },
{ 909, 131, -1 },
{ 910, 131, -1 },
{ 911, 131, -1 },
{ 912, 131, -1 },
{ 913, 131, -1 },
{ 914, 131, -1 },
{ 909, 7, -1 },
{ 910, 7, -1 },
{ 911, 7, -1 },
{ 912, 7, -1 },
{ 913, 7, -1 },
{ 914, 7, -1 },
{ 909, 156, -1 },
{ 910, 156, -1 },
{ 911, 156, -1 },
{ 912, 156, -1 },
{ 913, 156, -1 },
{ 914, 156, -1 },
{ 909, 24, -1 },
{ 910, 24, -1 },
{ 911, 24, -1 },
{ 912, 24, -1 },
{ 913, 24, -1 },
{ 914, 24, -1 },
{ 909, 159, -1 },
{ 910, 159, -1 },
{ 911, 159, -1 },
{ 912, 159, -1 },
{ 913, 159, -1 },
{ 914, 159, -1 },
{ 909, 130, -1 },
{ 910, 130, -1 },
{ 911, 130, -1 },
{ 912, 130, -1 },
{ 913, 130, -1 },
{ 914, 130, -1 },
{ 909, 9, -1 },
{ 910, 9, -1 },
{ 911, 9, -1 },
{ 912, 9, -1 },
{ 913, 9, -1 },
{ 914, 9, -1 },
{ 909, 4, -1 },
{ 910, 4, -1 },
{ 911, 4, -1 },
{ 912, 4, -1 },
{ 913, 4, -1 },
{ 914, 4, -1 },
{ 909, 5, -1 },
{ 910, 5, -1 },
{ 911, 5, -1 },
{ 912, 5, -1 },
{ 913, 5, -1 },
{ 914, 5, -1 },
{ 909, 160, -1 },
{ 910, 160, -1 },
{ 911, 160, -1 },
{ 912, 160, -1 },
{ 913, 160, -1 },
{ 914, 160, -1 },
{ 909, 358, -1 },
{ 910, 358, -1 },
{ 911, 358, -1 },
{ 912, 358, -1 },
{ 913, 358, -1 },
{ 914, 358, -1 },
{ 909, 172, -1 },
{ 910, 172, -1 },
{ 911, 172, -1 },
{ 912, 172, -1 },
{ 913, 172, -1 },
{ 914, 172, -1 },
{ 909, 239, -1 },
{ 910, 239, -1 },
{ 911, 239, -1 },
{ 912, 239, -1 },
{ 913, 239, -1 },
{ 914, 239, -1 },
{ 909, 244, -1 },
{ 910, 244, -1 },
{ 911, 244, -1 },
{ 912, 244, -1 },
{ 913, 244, -1 },
{ 914, 244, -1 },
{ 909, 168, -1 },
{ 910, 168, -1 },
{ 911, 168, -1 },
{ 912, 168, -1 },
{ 913, 168, -1 },
{ 914, 168, -1 },
{ 909, 189, -1 },
{ 910, 189, -1 },
{ 911, 189, -1 },
{ 912, 189, -1 },
{ 913, 189, -1 },
{ 914, 189, -1 },
{ 909, 238, -1 },
{ 910, 238, -1 },
{ 911, 238, -1 },
{ 912, 238, -1 },
{ 913, 238, -1 },
{ 914, 238, -1 },
{ 909, 280, -1 },
{ 910, 280, -1 },
{ 911, 280, -1 },
{ 912, 280, -1 },
{ 913, 280, -1 },
{ 914, 280, -1 },
{ 909, 184, -1 },
{ 910, 184, -1 },
{ 911, 184, -1 },
{ 912, 184, -1 },
{ 913, 184, -1 },
{ 914, 184, -1 },
{ 909, 319, -1 },
{ 910, 319, -1 },
{ 911, 319, -1 },
{ 912, 319, -1 },
{ 913, 319, -1 },
{ 914, 319, -1 },
{ 909, 206, -1 },
{ 910, 206, -1 },
{ 911, 206, -1 },
{ 912, 206, -1 },
{ 913, 206, -1 },
{ 914, 206, -1 },
{ 909, 207, -1 },
{ 910, 207, -1 },
{ 911, 207, -1 },
{ 912, 207, -1 },
{ 913, 207, -1 },
{ 914, 207, -1 },
{ 909, 205, -1 },
{ 910, 205, -1 },
{ 911, 205, -1 },
{ 912, 205, -1 },
{ 913, 205, -1 },
{ 914, 205, -1 },
{ 909, 188, -1 },
{ 910, 188, -1 },
{ 911, 188, -1 },
{ 912, 188, -1 },
{ 913, 188, -1 },
{ 914, 188, -1 },
{ 909, 171, -1 },
{ 910, 171, -1 },
{ 911, 171, -1 },
{ 912, 171, -1 },
{ 913, 171, -1 },
{ 914, 171, -1 },
{ 909, 169, -1 },
{ 910, 169, -1 },
{ 911, 169, -1 },
{ 912, 169, -1 },
{ 913, 169, -1 },
{ 914, 169, -1 },
{ 909, 170, -1 },
{ 910, 170, -1 },
{ 911, 170, -1 },
{ 912, 170, -1 },
{ 913, 170, -1 },
{ 914, 170, -1 },
{ 1680, 129, -1 },
{ 1681, 129, -1 },
{ 1680, 136, -1 },
{ 1681, 136, -1 },
{ 1680, 137, -1 },
{ 1681, 137, -1 },
{ 1680, 1, -1 },
{ 1681, 1, -1 },
{ 1680, 121, -1 },
{ 1681, 121, -1 },
{ 1680, 120, -1 },
{ 1681, 120, -1 },
{ 1680, 130, -1 },
{ 1681, 130, -1 },
{ 1680, 172, -1 },
{ 1681, 172, -1 },
{ 1680, 244, -1 },
{ 1681, 244, -1 },
{ 1680, 206, -1 },
{ 1681, 206, -1 },
{ 1680, 207, -1 },
{ 1681, 207, -1 },
{ 1680, 205, -1 },
{ 1681, 205, -1 },
{ 1680, 171, -1 },
{ 1681, 171, -1 },
{ 1680, 169, -1 },
{ 1681, 169, -1 },
{ 1680, 170, -1 },
{ 1681, 170, -1 },
{ 1675, 129, -1 },
{ 1676, 129, -1 },
{ 1677, 129, -1 },
{ 1679, 129, -1 },
{ 1675, 136, -1 },
{ 1676, 136, -1 },
{ 1677, 136, -1 },
{ 1679, 136, -1 },
{ 1675, 137, -1 },
{ 1676, 137, -1 },
{ 1677, 137, -1 },
{ 1679, 137, -1 },
{ 1675, 1, -1 },
{ 1676, 1, -1 },
{ 1677, 1, -1 },
{ 1679, 1, -1 },
{ 1675, 121, -1 },
{ 1676, 121, -1 },
{ 1677, 121, -1 },
{ 1679, 121, -1 },
{ 1675, 120, -1 },
{ 1676, 120, -1 },
{ 1677, 120, -1 },
{ 1679, 120, -1 },
{ 1675, 130, -1 },
{ 1676, 130, -1 },
{ 1677, 130, -1 },
{ 1679, 130, -1 },
{ 1675, 172, -1 },
{ 1676, 172, -1 },
{ 1677, 172, -1 },
{ 1679, 172, -1 },
{ 1675, 244, -1 },
{ 1676, 244, -1 },
{ 1677, 244, -1 },
{ 1679, 244, -1 },
{ 1675, 206, -1 },
{ 1676, 206, -1 },
{ 1677, 206, -1 },
{ 1679, 206, -1 },
{ 1675, 207, -1 },
{ 1676, 207, -1 },
{ 1677, 207, -1 },
{ 1679, 207, -1 },
{ 1675, 205, -1 },
{ 1676, 205, -1 },
{ 1677, 205, -1 },
{ 1679, 205, -1 },
{ 1675, 171, -1 },
{ 1676, 171, -1 },
{ 1677, 171, -1 },
{ 1679, 171, -1 },
{ 1675, 169, -1 },
{ 1676, 169, -1 },
{ 1677, 169, -1 },
{ 1679, 169, -1 },
{ 1675, 170, -1 },
{ 1676, 170, -1 },
{ 1677, 170, -1 },
{ 1679, 170, -1 },
{ 1735, 221, -1 },
{ 1736, 221, -1 },
{ 1737, 221, -1 },
{ 1738, 221, -1 },
{ 1739, 221, -1 },
{ 1740, 221, -1 },
{ 1741, 221, -1 },
{ 1742, 221, -1 },
{ 1743, 221, -1 },
{ 1744, 221, -1 },
{ 1745, 221, -1 },
{ 1746, 221, -1 },
{ 1747, 221, -1 },
{ 1748, 221, -1 },
{ 1735, 194, -1 },
{ 1736, 194, -1 },
{ 1737, 194, -1 },
{ 1738, 194, -1 },
{ 1739, 194, -1 },
{ 1740, 194, -1 },
{ 1741, 194, -1 },
{ 1742, 194, -1 },
{ 1743, 194, -1 },
{ 1744, 194, -1 },
{ 1745, 194, -1 },
{ 1746, 194, -1 },
{ 1747, 194, -1 },
{ 1748, 194, -1 },
{ 1735, 148, -1 },
{ 1736, 148, -1 },
{ 1737, 148, -1 },
{ 1738, 148, -1 },
{ 1739, 148, -1 },
{ 1740, 148, -1 },
{ 1741, 148, -1 },
{ 1742, 148, -1 },
{ 1743, 148, -1 },
{ 1744, 148, -1 },
{ 1745, 148, -1 },
{ 1746, 148, -1 },
{ 1747, 148, -1 },
{ 1748, 148, -1 },
{ 1735, 45, -1 },
{ 1736, 45, -1 },
{ 1737, 45, -1 },
{ 1738, 45, -1 },
{ 1739, 45, -1 },
{ 1740, 45, -1 },
{ 1741, 45, -1 },
{ 1742, 45, -1 },
{ 1743, 45, -1 },
{ 1744, 45, -1 },
{ 1745, 45, -1 },
{ 1746, 45, -1 },
{ 1747, 45, -1 },
{ 1748, 45, -1 },
{ 1728, 221, -1 },
{ 1729, 221, -1 },
{ 1730, 221, -1 },
{ 1731, 221, -1 },
{ 1732, 221, -1 },
{ 1733, 221, -1 },
{ 1734, 221, -1 },
{ 1728, 194, -1 },
{ 1729, 194, -1 },
{ 1730, 194, -1 },
{ 1731, 194, -1 },
{ 1732, 194, -1 },
{ 1733, 194, -1 },
{ 1734, 194, -1 },
{ 1728, 148, -1 },
{ 1729, 148, -1 },
{ 1730, 148, -1 },
{ 1731, 148, -1 },
{ 1732, 148, -1 },
{ 1733, 148, -1 },
{ 1734, 148, -1 },
{ 1728, 45, -1 },
{ 1729, 45, -1 },
{ 1730, 45, -1 },
{ 1731, 45, -1 },
{ 1732, 45, -1 },
{ 1733, 45, -1 },
{ 1734, 45, -1 },
{ 1769, 224, -1 },
{ 1770, 224, -1 },
{ 1771, 224, -1 },
{ 1772, 224, -1 },
{ 1769, 225, -1 },
{ 1770, 225, -1 },
{ 1771, 225, -1 },
{ 1772, 225, -1 },
{ 1769, 223, -1 },
{ 1770, 223, -1 },
{ 1771, 223, -1 },
{ 1772, 223, -1 },
{ 1769, 197, -1 },
{ 1770, 197, -1 },
{ 1771, 197, -1 },
{ 1772, 197, -1 },
{ 1769, 198, -1 },
{ 1770, 198, -1 },
{ 1771, 198, -1 },
{ 1772, 198, -1 },
{ 1769, 196, -1 },
{ 1770, 196, -1 },
{ 1771, 196, -1 },
{ 1772, 196, -1 },
{ 1769, 150, -1 },
{ 1770, 150, -1 },
{ 1771, 150, -1 },
{ 1772, 150, -1 },
{ 1769, 151, -1 },
{ 1770, 151, -1 },
{ 1771, 151, -1 },
{ 1772, 151, -1 },
{ 1769, 152, -1 },
{ 1770, 152, -1 },
{ 1771, 152, -1 },
{ 1772, 152, -1 },
{ 1769, 49, -1 },
{ 1770, 49, -1 },
{ 1771, 49, -1 },
{ 1772, 49, -1 },
{ 1769, 51, -1 },
{ 1770, 51, -1 },
{ 1771, 51, -1 },
{ 1772, 51, -1 },
{ 1769, 48, -1 },
{ 1770, 48, -1 },
{ 1771, 48, -1 },
{ 1772, 48, -1 },
{ 1769, 61, -1 },
{ 1770, 61, -1 },
{ 1771, 61, -1 },
{ 1772, 61, -1 },
{ 1769, 62, -1 },
{ 1770, 62, -1 },
{ 1771, 62, -1 },
{ 1772, 62, -1 },
{ 1763, 221, -1 },
{ 1764, 221, -1 },
{ 1765, 221, -1 },
{ 1766, 221, -1 },
{ 1767, 221, -1 },
{ 1768, 221, -1 },
{ 1763, 194, -1 },
{ 1764, 194, -1 },
{ 1765, 194, -1 },
{ 1766, 194, -1 },
{ 1767, 194, -1 },
{ 1768, 194, -1 },
{ 1763, 148, -1 },
{ 1764, 148, -1 },
{ 1765, 148, -1 },
{ 1766, 148, -1 },
{ 1767, 148, -1 },
{ 1768, 148, -1 },
{ 1763, 45, -1 },
{ 1764, 45, -1 },
{ 1765, 45, -1 },
{ 1766, 45, -1 },
{ 1767, 45, -1 },
{ 1768, 45, -1 },
{ 1749, 221, -1 },
{ 1750, 221, -1 },
{ 1751, 221, -1 },
{ 1752, 221, -1 },
{ 1753, 221, -1 },
{ 1754, 221, -1 },
{ 1755, 221, -1 },
{ 1756, 221, -1 },
{ 1757, 221, -1 },
{ 1758, 221, -1 },
{ 1759, 221, -1 },
{ 1760, 221, -1 },
{ 1761, 221, -1 },
{ 1762, 221, -1 },
{ 1749, 194, -1 },
{ 1750, 194, -1 },
{ 1751, 194, -1 },
{ 1752, 194, -1 },
{ 1753, 194, -1 },
{ 1754, 194, -1 },
{ 1755, 194, -1 },
{ 1756, 194, -1 },
{ 1757, 194, -1 },
{ 1758, 194, -1 },
{ 1759, 194, -1 },
{ 1760, 194, -1 },
{ 1761, 194, -1 },
{ 1762, 194, -1 },
{ 1749, 148, -1 },
{ 1750, 148, -1 },
{ 1751, 148, -1 },
{ 1752, 148, -1 },
{ 1753, 148, -1 },
{ 1754, 148, -1 },
{ 1755, 148, -1 },
{ 1756, 148, -1 },
{ 1757, 148, -1 },
{ 1758, 148, -1 },
{ 1759, 148, -1 },
{ 1760, 148, -1 },
{ 1761, 148, -1 },
{ 1762, 148, -1 },
{ 1749, 45, -1 },
{ 1750, 45, -1 },
{ 1751, 45, -1 },
{ 1752, 45, -1 },
{ 1753, 45, -1 },
{ 1754, 45, -1 },
{ 1755, 45, -1 },
{ 1756, 45, -1 },
{ 1757, 45, -1 },
{ 1758, 45, -1 },
{ 1759, 45, -1 },
{ 1760, 45, -1 },
{ 1761, 45, -1 },
{ 1762, 45, -1 },
{ 1684, 221, -1 },
{ 1685, 221, -1 },
{ 1686, 221, -1 },
{ 1687, 221, -1 },
{ 1688, 221, -1 },
{ 1689, 221, -1 },
{ 1690, 221, -1 },
{ 1691, 221, -1 },
{ 1692, 221, -1 },
{ 1693, 221, -1 },
{ 1694, 221, -1 },
{ 1695, 221, -1 },
{ 1696, 221, -1 },
{ 1697, 221, -1 },
{ 1698, 221, -1 },
{ 1699, 221, -1 },
{ 1700, 221, -1 },
{ 1701, 221, -1 },
{ 1702, 221, -1 },
{ 1703, 221, -1 },
{ 1704, 221, -1 },
{ 1705, 221, -1 },
{ 1706, 221, -1 },
{ 1707, 221, -1 },
{ 1708, 221, -1 },
{ 1710, 221, -1 },
{ 1711, 221, -1 },
{ 1712, 221, -1 },
{ 1714, 221, -1 },
{ 1715, 221, -1 },
{ 1716, 221, -1 },
{ 1717, 221, -1 },
{ 1718, 221, -1 },
{ 1719, 221, -1 },
{ 1720, 221, -1 },
{ 1721, 221, -1 },
{ 1722, 221, -1 },
{ 1723, 221, -1 },
{ 1724, 221, -1 },
{ 1725, 221, -1 },
{ 1726, 221, -1 },
{ 1727, 221, -1 },
{ 1684, 194, -1 },
{ 1685, 194, -1 },
{ 1686, 194, -1 },
{ 1687, 194, -1 },
{ 1688, 194, -1 },
{ 1689, 194, -1 },
{ 1690, 194, -1 },
{ 1691, 194, -1 },
{ 1692, 194, -1 },
{ 1693, 194, -1 },
{ 1694, 194, -1 },
{ 1695, 194, -1 },
{ 1696, 194, -1 },
{ 1697, 194, -1 },
{ 1698, 194, -1 },
{ 1699, 194, -1 },
{ 1700, 194, -1 },
{ 1701, 194, -1 },
{ 1702, 194, -1 },
{ 1703, 194, -1 },
{ 1704, 194, -1 },
{ 1705, 194, -1 },
{ 1706, 194, -1 },
{ 1707, 194, -1 },
{ 1708, 194, -1 },
{ 1710, 194, -1 },
{ 1711, 194, -1 },
{ 1712, 194, -1 },
{ 1714, 194, -1 },
{ 1715, 194, -1 },
{ 1716, 194, -1 },
{ 1717, 194, -1 },
{ 1718, 194, -1 },
{ 1719, 194, -1 },
{ 1720, 194, -1 },
{ 1721, 194, -1 },
{ 1722, 194, -1 },
{ 1723, 194, -1 },
{ 1724, 194, -1 },
{ 1725, 194, -1 },
{ 1726, 194, -1 },
{ 1727, 194, -1 },
{ 1684, 148, -1 },
{ 1685, 148, -1 },
{ 1686, 148, -1 },
{ 1687, 148, -1 },
{ 1688, 148, -1 },
{ 1689, 148, -1 },
{ 1690, 148, -1 },
{ 1691, 148, -1 },
{ 1692, 148, -1 },
{ 1693, 148, -1 },
{ 1694, 148, -1 },
{ 1695, 148, -1 },
{ 1696, 148, -1 },
{ 1697, 148, -1 },
{ 1698, 148, -1 },
{ 1699, 148, -1 },
{ 1700, 148, -1 },
{ 1701, 148, -1 },
{ 1702, 148, -1 },
{ 1703, 148, -1 },
{ 1704, 148, -1 },
{ 1705, 148, -1 },
{ 1706, 148, -1 },
{ 1707, 148, -1 },
{ 1708, 148, -1 },
{ 1710, 148, -1 },
{ 1711, 148, -1 },
{ 1712, 148, -1 },
{ 1714, 148, -1 },
{ 1715, 148, -1 },
{ 1716, 148, -1 },
{ 1717, 148, -1 },
{ 1718, 148, -1 },
{ 1719, 148, -1 },
{ 1720, 148, -1 },
{ 1721, 148, -1 },
{ 1722, 148, -1 },
{ 1723, 148, -1 },
{ 1724, 148, -1 },
{ 1725, 148, -1 },
{ 1726, 148, -1 },
{ 1727, 148, -1 },
{ 1684, 45, -1 },
{ 1685, 45, -1 },
{ 1686, 45, -1 },
{ 1687, 45, -1 },
{ 1688, 45, -1 },
{ 1689, 45, -1 },
{ 1690, 45, -1 },
{ 1691, 45, -1 },
{ 1692, 45, -1 },
{ 1693, 45, -1 },
{ 1694, 45, -1 },
{ 1695, 45, -1 },
{ 1696, 45, -1 },
{ 1697, 45, -1 },
{ 1698, 45, -1 },
{ 1699, 45, -1 },
{ 1700, 45, -1 },
{ 1701, 45, -1 },
{ 1702, 45, -1 },
{ 1703, 45, -1 },
{ 1704, 45, -1 },
{ 1705, 45, -1 },
{ 1706, 45, -1 },
{ 1707, 45, -1 },
{ 1708, 45, -1 },
{ 1710, 45, -1 },
{ 1711, 45, -1 },
{ 1712, 45, -1 },
{ 1714, 45, -1 },
{ 1715, 45, -1 },
{ 1716, 45, -1 },
{ 1717, 45, -1 },
{ 1718, 45, -1 },
{ 1719, 45, -1 },
{ 1720, 45, -1 },
{ 1721, 45, -1 },
{ 1722, 45, -1 },
{ 1723, 45, -1 },
{ 1724, 45, -1 },
{ 1725, 45, -1 },
{ 1726, 45, -1 },
{ 1727, 45, -1 },
{ 1780, 26, -1 },
{ 1781, 26, -1 },
{ 1782, 26, -1 },
{ 1780, 2, -1 },
{ 1781, 2, -1 },
{ 1782, 2, -1 },
{ 1780, 129, -1 },
{ 1781, 129, -1 },
{ 1782, 129, -1 },
{ 1780, 136, -1 },
{ 1781, 136, -1 },
{ 1782, 136, -1 },
{ 1780, 137, -1 },
{ 1781, 137, -1 },
{ 1782, 137, -1 },
{ 1780, 1, -1 },
{ 1781, 1, -1 },
{ 1782, 1, -1 },
{ 1780, 41, -1 },
{ 1781, 41, -1 },
{ 1782, 41, -1 },
{ 1780, 121, -1 },
{ 1781, 121, -1 },
{ 1782, 121, -1 },
{ 1780, 120, -1 },
{ 1781, 120, -1 },
{ 1782, 120, -1 },
{ 1780, 24, -1 },
{ 1781, 24, -1 },
{ 1782, 24, -1 },
{ 1780, 130, -1 },
{ 1781, 130, -1 },
{ 1782, 130, -1 },
{ 1780, 172, -1 },
{ 1781, 172, -1 },
{ 1782, 172, -1 },
{ 1780, 244, -1 },
{ 1781, 244, -1 },
{ 1782, 244, -1 },
{ 1780, 322, -1 },
{ 1781, 322, -1 },
{ 1782, 322, -1 },
{ 1780, 345, -1 },
{ 1781, 345, -1 },
{ 1782, 345, -1 },
{ 1780, 285, -1 },
{ 1781, 285, -1 },
{ 1782, 285, -1 },
{ 1780, 346, -1 },
{ 1781, 346, -1 },
{ 1782, 346, -1 },
{ 1780, 318, -1 },
{ 1781, 318, -1 },
{ 1782, 318, -1 },
{ 1780, 317, -1 },
{ 1781, 317, -1 },
{ 1782, 317, -1 },
{ 1780, 323, -1 },
{ 1781, 323, -1 },
{ 1782, 323, -1 },
{ 1780, 319, -1 },
{ 1781, 319, -1 },
{ 1782, 319, -1 },
{ 1780, 321, -1 },
{ 1781, 321, -1 },
{ 1782, 321, -1 },
{ 1780, 320, -1 },
{ 1781, 320, -1 },
{ 1782, 320, -1 },
{ 1780, 330, -1 },
{ 1781, 330, -1 },
{ 1782, 330, -1 },
{ 1780, 332, -1 },
{ 1781, 332, -1 },
{ 1782, 332, -1 },
{ 1780, 334, -1 },
{ 1781, 334, -1 },
{ 1782, 334, -1 },
{ 1780, 337, -1 },
{ 1781, 337, -1 },
{ 1782, 337, -1 },
{ 1780, 335, -1 },
{ 1781, 335, -1 },
{ 1782, 335, -1 },
{ 1780, 206, -1 },
{ 1781, 206, -1 },
{ 1782, 206, -1 },
{ 1780, 207, -1 },
{ 1781, 207, -1 },
{ 1782, 207, -1 },
{ 1780, 205, -1 },
{ 1781, 205, -1 },
{ 1782, 205, -1 },
{ 1780, 171, -1 },
{ 1781, 171, -1 },
{ 1782, 171, -1 },
{ 1780, 169, -1 },
{ 1781, 169, -1 },
{ 1782, 169, -1 },
{ 1780, 170, -1 },
{ 1781, 170, -1 },
{ 1782, 170, -1 },
{ 1773, 26, -1 },
{ 1774, 26, -1 },
{ 1775, 26, -1 },
{ 1776, 26, -1 },
{ 1779, 26, -1 },
{ 1773, 2, -1 },
{ 1774, 2, -1 },
{ 1775, 2, -1 },
{ 1776, 2, -1 },
{ 1779, 2, -1 },
{ 1773, 129, -1 },
{ 1774, 129, -1 },
{ 1775, 129, -1 },
{ 1776, 129, -1 },
{ 1779, 129, -1 },
{ 1773, 136, -1 },
{ 1774, 136, -1 },
{ 1775, 136, -1 },
{ 1776, 136, -1 },
{ 1779, 136, -1 },
{ 1773, 137, -1 },
{ 1774, 137, -1 },
{ 1775, 137, -1 },
{ 1776, 137, -1 },
{ 1779, 137, -1 },
{ 1773, 1, -1 },
{ 1774, 1, -1 },
{ 1775, 1, -1 },
{ 1776, 1, -1 },
{ 1779, 1, -1 },
{ 1773, 41, -1 },
{ 1774, 41, -1 },
{ 1775, 41, -1 },
{ 1776, 41, -1 },
{ 1779, 41, -1 },
{ 1773, 121, -1 },
{ 1774, 121, -1 },
{ 1775, 121, -1 },
{ 1776, 121, -1 },
{ 1779, 121, -1 },
{ 1773, 120, -1 },
{ 1774, 120, -1 },
{ 1775, 120, -1 },
{ 1776, 120, -1 },
{ 1779, 120, -1 },
{ 1773, 24, -1 },
{ 1774, 24, -1 },
{ 1775, 24, -1 },
{ 1776, 24, -1 },
{ 1779, 24, -1 },
{ 1773, 130, -1 },
{ 1774, 130, -1 },
{ 1775, 130, -1 },
{ 1776, 130, -1 },
{ 1779, 130, -1 },
{ 1773, 172, -1 },
{ 1774, 172, -1 },
{ 1775, 172, -1 },
{ 1776, 172, -1 },
{ 1779, 172, -1 },
{ 1773, 244, -1 },
{ 1774, 244, -1 },
{ 1775, 244, -1 },
{ 1776, 244, -1 },
{ 1779, 244, -1 },
{ 1773, 322, -1 },
{ 1774, 322, -1 },
{ 1775, 322, -1 },
{ 1776, 322, -1 },
{ 1779, 322, -1 },
{ 1773, 345, -1 },
{ 1774, 345, -1 },
{ 1775, 345, -1 },
{ 1776, 345, -1 },
{ 1779, 345, -1 },
{ 1773, 285, -1 },
{ 1774, 285, -1 },
{ 1775, 285, -1 },
{ 1776, 285, -1 },
{ 1779, 285, -1 },
{ 1773, 346, -1 },
{ 1774, 346, -1 },
{ 1775, 346, -1 },
{ 1776, 346, -1 },
{ 1779, 346, -1 },
{ 1773, 318, -1 },
{ 1774, 318, -1 },
{ 1775, 318, -1 },
{ 1776, 318, -1 },
{ 1779, 318, -1 },
{ 1773, 317, -1 },
{ 1774, 317, -1 },
{ 1775, 317, -1 },
{ 1776, 317, -1 },
{ 1779, 317, -1 },
{ 1773, 323, -1 },
{ 1774, 323, -1 },
{ 1775, 323, -1 },
{ 1776, 323, -1 },
{ 1779, 323, -1 },
{ 1773, 319, -1 },
{ 1774, 319, -1 },
{ 1775, 319, -1 },
{ 1776, 319, -1 },
{ 1779, 319, -1 },
{ 1773, 321, -1 },
{ 1774, 321, -1 },
{ 1775, 321, -1 },
{ 1776, 321, -1 },
{ 1779, 321, -1 },
{ 1773, 320, -1 },
{ 1774, 320, -1 },
{ 1775, 320, -1 },
{ 1776, 320, -1 },
{ 1779, 320, -1 },
{ 1773, 330, -1 },
{ 1774, 330, -1 },
{ 1775, 330, -1 },
{ 1776, 330, -1 },
{ 1779, 330, -1 },
{ 1773, 332, -1 },
{ 1774, 332, -1 },
{ 1775, 332, -1 },
{ 1776, 332, -1 },
{ 1779, 332, -1 },
{ 1773, 334, -1 },
{ 1774, 334, -1 },
{ 1775, 334, -1 },
{ 1776, 334, -1 },
{ 1779, 334, -1 },
{ 1773, 337, -1 },
{ 1774, 337, -1 },
{ 1775, 337, -1 },
{ 1776, 337, -1 },
{ 1779, 337, -1 },
{ 1773, 335, -1 },
{ 1774, 335, -1 },
{ 1775, 335, -1 },
{ 1776, 335, -1 },
{ 1779, 335, -1 },
{ 1773, 206, -1 },
{ 1774, 206, -1 },
{ 1775, 206, -1 },
{ 1776, 206, -1 },
{ 1779, 206, -1 },
{ 1773, 207, -1 },
{ 1774, 207, -1 },
{ 1775, 207, -1 },
{ 1776, 207, -1 },
{ 1779, 207, -1 },
{ 1773, 205, -1 },
{ 1774, 205, -1 },
{ 1775, 205, -1 },
{ 1776, 205, -1 },
{ 1779, 205, -1 },
{ 1773, 171, -1 },
{ 1774, 171, -1 },
{ 1775, 171, -1 },
{ 1776, 171, -1 },
{ 1779, 171, -1 },
{ 1773, 169, -1 },
{ 1774, 169, -1 },
{ 1775, 169, -1 },
{ 1776, 169, -1 },
{ 1779, 169, -1 },
{ 1773, 170, -1 },
{ 1774, 170, -1 },
{ 1775, 170, -1 },
{ 1776, 170, -1 },
{ 1779, 170, -1 },
{ 1683, 129, -1 },
{ 1683, 136, -1 },
{ 1683, 137, -1 },
{ 1682, 1, -1 },
{ 1683, 1, -1 },
{ 1683, 130, -1 },
{ 1783, 26, -1 },
{ 1784, 26, -1 },
{ 1785, 26, -1 },
{ 1783, 2, -1 },
{ 1784, 2, -1 },
{ 1785, 2, -1 },
{ 1784, 129, -1 },
{ 1785, 129, -1 },
{ 1784, 136, -1 },
{ 1785, 136, -1 },
{ 1784, 137, -1 },
{ 1785, 137, -1 },
{ 1783, 1, -1 },
{ 1784, 1, -1 },
{ 1785, 1, -1 },
{ 1783, 24, -1 },
{ 1784, 24, -1 },
{ 1785, 24, -1 },
{ 1784, 130, -1 },
{ 1785, 130, -1 },
{ 1783, 285, -1 },
{ 1784, 285, -1 },
{ 1785, 285, -1 },
{ 1783, 330, -1 },
{ 1784, 330, -1 },
{ 1785, 330, -1 },
{ 1783, 335, -1 },
{ 1784, 335, -1 },
{ 1785, 335, -1 },
{ 1792, 221, -1 },
{ 1793, 221, -1 },
{ 1794, 221, -1 },
{ 1795, 221, -1 },
{ 1796, 221, -1 },
{ 1797, 221, -1 },
{ 1792, 194, -1 },
{ 1793, 194, -1 },
{ 1794, 194, -1 },
{ 1795, 194, -1 },
{ 1796, 194, -1 },
{ 1797, 194, -1 },
{ 1792, 148, -1 },
{ 1793, 148, -1 },
{ 1794, 148, -1 },
{ 1795, 148, -1 },
{ 1796, 148, -1 },
{ 1797, 148, -1 },
{ 1792, 45, -1 },
{ 1793, 45, -1 },
{ 1794, 45, -1 },
{ 1795, 45, -1 },
{ 1796, 45, -1 },
{ 1797, 45, -1 },
{ 1847, 1, -1 },
{ 1848, 1, -1 },
{ 1849, 1, -1 },
{ 1850, 1, -1 },
{ 1851, 1, -1 },
{ 1852, 1, -1 },
{ 1853, 1, -1 },
{ 1847, 121, -1 },
{ 1848, 121, -1 },
{ 1849, 121, -1 },
{ 1850, 121, -1 },
{ 1851, 121, -1 },
{ 1852, 121, -1 },
{ 1853, 121, -1 },
{ 1847, 120, -1 },
{ 1848, 120, -1 },
{ 1849, 120, -1 },
{ 1850, 120, -1 },
{ 1851, 120, -1 },
{ 1852, 120, -1 },
{ 1853, 120, -1 },
{ 1847, 172, -1 },
{ 1848, 172, -1 },
{ 1849, 172, -1 },
{ 1850, 172, -1 },
{ 1851, 172, -1 },
{ 1852, 172, -1 },
{ 1853, 172, -1 },
{ 1847, 244, -1 },
{ 1848, 244, -1 },
{ 1849, 244, -1 },
{ 1850, 244, -1 },
{ 1851, 244, -1 },
{ 1852, 244, -1 },
{ 1853, 244, -1 },
{ 1847, 206, -1 },
{ 1848, 206, -1 },
{ 1849, 206, -1 },
{ 1850, 206, -1 },
{ 1851, 206, -1 },
{ 1852, 206, -1 },
{ 1853, 206, -1 },
{ 1847, 207, -1 },
{ 1848, 207, -1 },
{ 1849, 207, -1 },
{ 1850, 207, -1 },
{ 1851, 207, -1 },
{ 1852, 207, -1 },
{ 1853, 207, -1 },
{ 1847, 205, -1 },
{ 1848, 205, -1 },
{ 1849, 205, -1 },
{ 1850, 205, -1 },
{ 1851, 205, -1 },
{ 1852, 205, -1 },
{ 1853, 205, -1 },
{ 1847, 171, -1 },
{ 1848, 171, -1 },
{ 1849, 171, -1 },
{ 1850, 171, -1 },
{ 1851, 171, -1 },
{ 1852, 171, -1 },
{ 1853, 171, -1 },
{ 1847, 169, -1 },
{ 1848, 169, -1 },
{ 1849, 169, -1 },
{ 1850, 169, -1 },
{ 1851, 169, -1 },
{ 1852, 169, -1 },
{ 1853, 169, -1 },
{ 1847, 170, -1 },
{ 1848, 170, -1 },
{ 1849, 170, -1 },
{ 1850, 170, -1 },
{ 1851, 170, -1 },
{ 1852, 170, -1 },
{ 1853, 170, -1 },
{ 1799, 1, -1 },
{ 1800, 1, -1 },
{ 1801, 1, -1 },
{ 1802, 1, -1 },
{ 1803, 1, -1 },
{ 1804, 1, -1 },
{ 1805, 1, -1 },
{ 1806, 1, -1 },
{ 1807, 1, -1 },
{ 1808, 1, -1 },
{ 1809, 1, -1 },
{ 1810, 1, -1 },
{ 1811, 1, -1 },
{ 1812, 1, -1 },
{ 1813, 1, -1 },
{ 1814, 1, -1 },
{ 1815, 1, -1 },
{ 1817, 1, -1 },
{ 1818, 1, -1 },
{ 1819, 1, -1 },
{ 1821, 1, -1 },
{ 1823, 1, -1 },
{ 1824, 1, -1 },
{ 1825, 1, -1 },
{ 1826, 1, -1 },
{ 1827, 1, -1 },
{ 1828, 1, -1 },
{ 1829, 1, -1 },
{ 1830, 1, -1 },
{ 1831, 1, -1 },
{ 1832, 1, -1 },
{ 1833, 1, -1 },
{ 1834, 1, -1 },
{ 1835, 1, -1 },
{ 1836, 1, -1 },
{ 1837, 1, -1 },
{ 1838, 1, -1 },
{ 1839, 1, -1 },
{ 1840, 1, -1 },
{ 1841, 1, -1 },
{ 1842, 1, -1 },
{ 1843, 1, -1 },
{ 1845, 1, -1 },
{ 1846, 1, -1 },
{ 1798, 121, -1 },
{ 1799, 121, -1 },
{ 1800, 121, -1 },
{ 1801, 121, -1 },
{ 1802, 121, -1 },
{ 1803, 121, -1 },
{ 1804, 121, -1 },
{ 1805, 121, -1 },
{ 1806, 121, -1 },
{ 1807, 121, -1 },
{ 1808, 121, -1 },
{ 1809, 121, -1 },
{ 1810, 121, -1 },
{ 1811, 121, -1 },
{ 1812, 121, -1 },
{ 1813, 121, -1 },
{ 1814, 121, -1 },
{ 1815, 121, -1 },
{ 1816, 121, -1 },
{ 1817, 121, -1 },
{ 1818, 121, -1 },
{ 1819, 121, -1 },
{ 1820, 121, -1 },
{ 1821, 121, -1 },
{ 1822, 121, -1 },
{ 1823, 121, -1 },
{ 1824, 121, -1 },
{ 1825, 121, -1 },
{ 1826, 121, -1 },
{ 1827, 121, -1 },
{ 1828, 121, -1 },
{ 1829, 121, -1 },
{ 1830, 121, -1 },
{ 1831, 121, -1 },
{ 1832, 121, -1 },
{ 1833, 121, -1 },
{ 1834, 121, -1 },
{ 1835, 121, -1 },
{ 1836, 121, -1 },
{ 1837, 121, -1 },
{ 1838, 121, -1 },
{ 1839, 121, -1 },
{ 1840, 121, -1 },
{ 1841, 121, -1 },
{ 1842, 121, -1 },
{ 1843, 121, -1 },
{ 1844, 121, -1 },
{ 1845, 121, -1 },
{ 1846, 121, -1 },
{ 1798, 120, -1 },
{ 1799, 120, -1 },
{ 1800, 120, -1 },
{ 1801, 120, -1 },
{ 1802, 120, -1 },
{ 1803, 120, -1 },
{ 1804, 120, -1 },
{ 1805, 120, -1 },
{ 1806, 120, -1 },
{ 1807, 120, -1 },
{ 1808, 120, -1 },
{ 1809, 120, -1 },
{ 1810, 120, -1 },
{ 1811, 120, -1 },
{ 1812, 120, -1 },
{ 1813, 120, -1 },
{ 1814, 120, -1 },
{ 1815, 120, -1 },
{ 1816, 120, -1 },
{ 1817, 120, -1 },
{ 1818, 120, -1 },
{ 1819, 120, -1 },
{ 1820, 120, -1 },
{ 1821, 120, -1 },
{ 1822, 120, -1 },
{ 1823, 120, -1 },
{ 1824, 120, -1 },
{ 1825, 120, -1 },
{ 1826, 120, -1 },
{ 1827, 120, -1 },
{ 1828, 120, -1 },
{ 1829, 120, -1 },
{ 1830, 120, -1 },
{ 1831, 120, -1 },
{ 1832, 120, -1 },
{ 1833, 120, -1 },
{ 1834, 120, -1 },
{ 1835, 120, -1 },
{ 1836, 120, -1 },
{ 1837, 120, -1 },
{ 1838, 120, -1 },
{ 1839, 120, -1 },
{ 1840, 120, -1 },
{ 1841, 120, -1 },
{ 1842, 120, -1 },
{ 1843, 120, -1 },
{ 1844, 120, -1 },
{ 1845, 120, -1 },
{ 1846, 120, -1 },
{ 1798, 172, -1 },
{ 1799, 172, -1 },
{ 1800, 172, -1 },
{ 1801, 172, -1 },
{ 1802, 172, -1 },
{ 1803, 172, -1 },
{ 1804, 172, -1 },
{ 1805, 172, -1 },
{ 1806, 172, -1 },
{ 1807, 172, -1 },
{ 1808, 172, -1 },
{ 1809, 172, -1 },
{ 1810, 172, -1 },
{ 1811, 172, -1 },
{ 1812, 172, -1 },
{ 1813, 172, -1 },
{ 1814, 172, -1 },
{ 1815, 172, -1 },
{ 1817, 172, -1 },
{ 1818, 172, -1 },
{ 1819, 172, -1 },
{ 1821, 172, -1 },
{ 1823, 172, -1 },
{ 1824, 172, -1 },
{ 1825, 172, -1 },
{ 1826, 172, -1 },
{ 1827, 172, -1 },
{ 1828, 172, -1 },
{ 1829, 172, -1 },
{ 1830, 172, -1 },
{ 1831, 172, -1 },
{ 1832, 172, -1 },
{ 1833, 172, -1 },
{ 1834, 172, -1 },
{ 1835, 172, -1 },
{ 1836, 172, -1 },
{ 1837, 172, -1 },
{ 1838, 172, -1 },
{ 1839, 172, -1 },
{ 1840, 172, -1 },
{ 1841, 172, -1 },
{ 1842, 172, -1 },
{ 1843, 172, -1 },
{ 1844, 172, -1 },
{ 1799, 244, -1 },
{ 1800, 244, -1 },
{ 1801, 244, -1 },
{ 1802, 244, -1 },
{ 1803, 244, -1 },
{ 1804, 244, -1 },
{ 1805, 244, -1 },
{ 1806, 244, -1 },
{ 1807, 244, -1 },
{ 1808, 244, -1 },
{ 1809, 244, -1 },
{ 1810, 244, -1 },
{ 1811, 244, -1 },
{ 1812, 244, -1 },
{ 1813, 244, -1 },
{ 1814, 244, -1 },
{ 1815, 244, -1 },
{ 1817, 244, -1 },
{ 1818, 244, -1 },
{ 1819, 244, -1 },
{ 1820, 244, -1 },
{ 1821, 244, -1 },
{ 1823, 244, -1 },
{ 1824, 244, -1 },
{ 1825, 244, -1 },
{ 1826, 244, -1 },
{ 1827, 244, -1 },
{ 1828, 244, -1 },
{ 1829, 244, -1 },
{ 1830, 244, -1 },
{ 1831, 244, -1 },
{ 1832, 244, -1 },
{ 1833, 244, -1 },
{ 1834, 244, -1 },
{ 1835, 244, -1 },
{ 1836, 244, -1 },
{ 1837, 244, -1 },
{ 1838, 244, -1 },
{ 1840, 244, -1 },
{ 1841, 244, -1 },
{ 1842, 244, -1 },
{ 1843, 244, -1 },
{ 1846, 244, -1 },
{ 1798, 206, -1 },
{ 1800, 206, -1 },
{ 1801, 206, -1 },
{ 1802, 206, -1 },
{ 1803, 206, -1 },
{ 1804, 206, -1 },
{ 1805, 206, -1 },
{ 1806, 206, -1 },
{ 1807, 206, -1 },
{ 1808, 206, -1 },
{ 1809, 206, -1 },
{ 1810, 206, -1 },
{ 1811, 206, -1 },
{ 1812, 206, -1 },
{ 1813, 206, -1 },
{ 1814, 206, -1 },
{ 1815, 206, -1 },
{ 1816, 206, -1 },
{ 1817, 206, -1 },
{ 1818, 206, -1 },
{ 1819, 206, -1 },
{ 1820, 206, -1 },
{ 1821, 206, -1 },
{ 1822, 206, -1 },
{ 1823, 206, -1 },
{ 1824, 206, -1 },
{ 1825, 206, -1 },
{ 1826, 206, -1 },
{ 1827, 206, -1 },
{ 1828, 206, -1 },
{ 1829, 206, -1 },
{ 1830, 206, -1 },
{ 1831, 206, -1 },
{ 1832, 206, -1 },
{ 1833, 206, -1 },
{ 1834, 206, -1 },
{ 1835, 206, -1 },
{ 1836, 206, -1 },
{ 1837, 206, -1 },
{ 1838, 206, -1 },
{ 1839, 206, -1 },
{ 1840, 206, -1 },
{ 1841, 206, -1 },
{ 1842, 206, -1 },
{ 1843, 206, -1 },
{ 1844, 206, -1 },
{ 1845, 206, -1 },
{ 1846, 206, -1 },
{ 1798, 207, -1 },
{ 1800, 207, -1 },
{ 1801, 207, -1 },
{ 1802, 207, -1 },
{ 1803, 207, -1 },
{ 1804, 207, -1 },
{ 1805, 207, -1 },
{ 1806, 207, -1 },
{ 1807, 207, -1 },
{ 1808, 207, -1 },
{ 1809, 207, -1 },
{ 1810, 207, -1 },
{ 1811, 207, -1 },
{ 1812, 207, -1 },
{ 1813, 207, -1 },
{ 1814, 207, -1 },
{ 1815, 207, -1 },
{ 1816, 207, -1 },
{ 1817, 207, -1 },
{ 1818, 207, -1 },
{ 1819, 207, -1 },
{ 1820, 207, -1 },
{ 1821, 207, -1 },
{ 1822, 207, -1 },
{ 1823, 207, -1 },
{ 1824, 207, -1 },
{ 1825, 207, -1 },
{ 1826, 207, -1 },
{ 1827, 207, -1 },
{ 1828, 207, -1 },
{ 1829, 207, -1 },
{ 1830, 207, -1 },
{ 1831, 207, -1 },
{ 1832, 207, -1 },
{ 1833, 207, -1 },
{ 1834, 207, -1 },
{ 1835, 207, -1 },
{ 1836, 207, -1 },
{ 1837, 207, -1 },
{ 1838, 207, -1 },
{ 1839, 207, -1 },
{ 1840, 207, -1 },
{ 1841, 207, -1 },
{ 1842, 207, -1 },
{ 1843, 207, -1 },
{ 1844, 207, -1 },
{ 1845, 207, -1 },
{ 1846, 207, -1 },
{ 1798, 205, -1 },
{ 1800, 205, -1 },
{ 1801, 205, -1 },
{ 1802, 205, -1 },
{ 1803, 205, -1 },
{ 1804, 205, -1 },
{ 1805, 205, -1 },
{ 1806, 205, -1 },
{ 1807, 205, -1 },
{ 1808, 205, -1 },
{ 1809, 205, -1 },
{ 1810, 205, -1 },
{ 1811, 205, -1 },
{ 1812, 205, -1 },
{ 1813, 205, -1 },
{ 1814, 205, -1 },
{ 1815, 205, -1 },
{ 1817, 205, -1 },
{ 1818, 205, -1 },
{ 1819, 205, -1 },
{ 1820, 205, -1 },
{ 1821, 205, -1 },
{ 1822, 205, -1 },
{ 1823, 205, -1 },
{ 1824, 205, -1 },
{ 1825, 205, -1 },
{ 1826, 205, -1 },
{ 1827, 205, -1 },
{ 1828, 205, -1 },
{ 1829, 205, -1 },
{ 1830, 205, -1 },
{ 1831, 205, -1 },
{ 1832, 205, -1 },
{ 1833, 205, -1 },
{ 1834, 205, -1 },
{ 1835, 205, -1 },
{ 1836, 205, -1 },
{ 1837, 205, -1 },
{ 1838, 205, -1 },
{ 1839, 205, -1 },
{ 1840, 205, -1 },
{ 1841, 205, -1 },
{ 1798, 171, -1 },
{ 1799, 171, -1 },
{ 1800, 171, -1 },
{ 1801, 171, -1 },
{ 1802, 171, -1 },
{ 1803, 171, -1 },
{ 1804, 171, -1 },
{ 1805, 171, -1 },
{ 1806, 171, -1 },
{ 1807, 171, -1 },
{ 1808, 171, -1 },
{ 1809, 171, -1 },
{ 1810, 171, -1 },
{ 1811, 171, -1 },
{ 1812, 171, -1 },
{ 1813, 171, -1 },
{ 1814, 171, -1 },
{ 1815, 171, -1 },
{ 1817, 171, -1 },
{ 1818, 171, -1 },
{ 1819, 171, -1 },
{ 1821, 171, -1 },
{ 1823, 171, -1 },
{ 1824, 171, -1 },
{ 1825, 171, -1 },
{ 1826, 171, -1 },
{ 1827, 171, -1 },
{ 1828, 171, -1 },
{ 1829, 171, -1 },
{ 1830, 171, -1 },
{ 1831, 171, -1 },
{ 1832, 171, -1 },
{ 1833, 171, -1 },
{ 1834, 171, -1 },
{ 1835, 171, -1 },
{ 1836, 171, -1 },
{ 1837, 171, -1 },
{ 1838, 171, -1 },
{ 1839, 171, -1 },
{ 1840, 171, -1 },
{ 1841, 171, -1 },
{ 1842, 171, -1 },
{ 1843, 171, -1 },
{ 1844, 171, -1 },
{ 1798, 169, -1 },
{ 1799, 169, -1 },
{ 1800, 169, -1 },
{ 1801, 169, -1 },
{ 1802, 169, -1 },
{ 1803, 169, -1 },
{ 1804, 169, -1 },
{ 1805, 169, -1 },
{ 1806, 169, -1 },
{ 1807, 169, -1 },
{ 1808, 169, -1 },
{ 1809, 169, -1 },
{ 1810, 169, -1 },
{ 1811, 169, -1 },
{ 1812, 169, -1 },
{ 1813, 169, -1 },
{ 1814, 169, -1 },
{ 1815, 169, -1 },
{ 1817, 169, -1 },
{ 1818, 169, -1 },
{ 1819, 169, -1 },
{ 1821, 169, -1 },
{ 1823, 169, -1 },
{ 1824, 169, -1 },
{ 1825, 169, -1 },
{ 1826, 169, -1 },
{ 1827, 169, -1 },
{ 1828, 169, -1 },
{ 1829, 169, -1 },
{ 1830, 169, -1 },
{ 1831, 169, -1 },
{ 1832, 169, -1 },
{ 1833, 169, -1 },
{ 1834, 169, -1 },
{ 1835, 169, -1 },
{ 1836, 169, -1 },
{ 1837, 169, -1 },
{ 1838, 169, -1 },
{ 1839, 169, -1 },
{ 1840, 169, -1 },
{ 1841, 169, -1 },
{ 1842, 169, -1 },
{ 1843, 169, -1 },
{ 1798, 170, -1 },
{ 1799, 170, -1 },
{ 1800, 170, -1 },
{ 1801, 170, -1 },
{ 1802, 170, -1 },
{ 1803, 170, -1 },
{ 1804, 170, -1 },
{ 1805, 170, -1 },
{ 1806, 170, -1 },
{ 1807, 170, -1 },
{ 1808, 170, -1 },
{ 1809, 170, -1 },
{ 1810, 170, -1 },
{ 1811, 170, -1 },
{ 1812, 170, -1 },
{ 1813, 170, -1 },
{ 1814, 170, -1 },
{ 1815, 170, -1 },
{ 1817, 170, -1 },
{ 1818, 170, -1 },
{ 1819, 170, -1 },
{ 1821, 170, -1 },
{ 1823, 170, -1 },
{ 1824, 170, -1 },
{ 1825, 170, -1 },
{ 1826, 170, -1 },
{ 1827, 170, -1 },
{ 1828, 170, -1 },
{ 1829, 170, -1 },
{ 1830, 170, -1 },
{ 1831, 170, -1 },
{ 1832, 170, -1 },
{ 1833, 170, -1 },
{ 1834, 170, -1 },
{ 1835, 170, -1 },
{ 1836, 170, -1 },
{ 1837, 170, -1 },
{ 1838, 170, -1 },
{ 1839, 170, -1 },
{ 1840, 170, -1 },
{ 1841, 170, -1 },
{ 1842, 170, -1 },
{ 1843, 170, -1 },
{ 1844, 170, -1 },
{ 7077, 188, -1 },
{ 7078, 188, -1 },
{ 7079, 188, -1 },
{ 7080, 188, -1 },
{ 7081, 188, -1 },
{ 7082, 188, -1 },
{ 7066, 188, -1 },
{ 7068, 188, -1 },
{ 7069, 188, -1 },
{ 7070, 188, -1 },
{ 7071, 188, -1 },
{ 7072, 188, -1 },
{ 7074, 188, -1 },
{ 7076, 188, -1 },
{ 1854, 1, -1 },
{ 1855, 1, -1 },
{ 1856, 1, -1 },
{ 1857, 1, -1 },
{ 1858, 1, -1 },
{ 1859, 1, -1 },
{ 1860, 1, -1 },
{ 1861, 1, -1 },
{ 1862, 1, -1 },
{ 1863, 1, -1 },
{ 1864, 1, -1 },
{ 1865, 1, -1 },
{ 1866, 1, -1 },
{ 1867, 1, -1 },
{ 1868, 1, -1 },
{ 1869, 1, -1 },
{ 1870, 1, -1 },
{ 1871, 1, -1 },
{ 1872, 1, -1 },
{ 1873, 1, -1 },
{ 1874, 1, -1 },
{ 1875, 1, -1 },
{ 1876, 1, -1 },
{ 1877, 1, -1 },
{ 1878, 1, -1 },
{ 1879, 1, -1 },
{ 1880, 1, -1 },
{ 1881, 1, -1 },
{ 1882, 1, -1 },
{ 1883, 1, -1 },
{ 1884, 1, -1 },
{ 1885, 1, -1 },
{ 1886, 1, -1 },
{ 1887, 1, -1 },
{ 1888, 1, -1 },
{ 1889, 1, -1 },
{ 1854, 121, -1 },
{ 1855, 121, -1 },
{ 1856, 121, -1 },
{ 1857, 121, -1 },
{ 1858, 121, -1 },
{ 1859, 121, -1 },
{ 1860, 121, -1 },
{ 1861, 121, -1 },
{ 1862, 121, -1 },
{ 1863, 121, -1 },
{ 1864, 121, -1 },
{ 1865, 121, -1 },
{ 1866, 121, -1 },
{ 1867, 121, -1 },
{ 1868, 121, -1 },
{ 1869, 121, -1 },
{ 1870, 121, -1 },
{ 1871, 121, -1 },
{ 1872, 121, -1 },
{ 1873, 121, -1 },
{ 1874, 121, -1 },
{ 1875, 121, -1 },
{ 1876, 121, -1 },
{ 1877, 121, -1 },
{ 1878, 121, -1 },
{ 1879, 121, -1 },
{ 1880, 121, -1 },
{ 1881, 121, -1 },
{ 1882, 121, -1 },
{ 1883, 121, -1 },
{ 1884, 121, -1 },
{ 1885, 121, -1 },
{ 1886, 121, -1 },
{ 1887, 121, -1 },
{ 1888, 121, -1 },
{ 1889, 121, -1 },
{ 1854, 120, -1 },
{ 1855, 120, -1 },
{ 1856, 120, -1 },
{ 1857, 120, -1 },
{ 1858, 120, -1 },
{ 1859, 120, -1 },
{ 1860, 120, -1 },
{ 1861, 120, -1 },
{ 1862, 120, -1 },
{ 1863, 120, -1 },
{ 1864, 120, -1 },
{ 1865, 120, -1 },
{ 1866, 120, -1 },
{ 1867, 120, -1 },
{ 1868, 120, -1 },
{ 1869, 120, -1 },
{ 1870, 120, -1 },
{ 1871, 120, -1 },
{ 1872, 120, -1 },
{ 1873, 120, -1 },
{ 1874, 120, -1 },
{ 1875, 120, -1 },
{ 1876, 120, -1 },
{ 1877, 120, -1 },
{ 1878, 120, -1 },
{ 1879, 120, -1 },
{ 1880, 120, -1 },
{ 1881, 120, -1 },
{ 1882, 120, -1 },
{ 1883, 120, -1 },
{ 1884, 120, -1 },
{ 1885, 120, -1 },
{ 1886, 120, -1 },
{ 1887, 120, -1 },
{ 1888, 120, -1 },
{ 1889, 120, -1 },
{ 1854, 172, -1 },
{ 1855, 172, -1 },
{ 1856, 172, -1 },
{ 1857, 172, -1 },
{ 1858, 172, -1 },
{ 1859, 172, -1 },
{ 1860, 172, -1 },
{ 1861, 172, -1 },
{ 1862, 172, -1 },
{ 1863, 172, -1 },
{ 1864, 172, -1 },
{ 1865, 172, -1 },
{ 1866, 172, -1 },
{ 1867, 172, -1 },
{ 1868, 172, -1 },
{ 1869, 172, -1 },
{ 1870, 172, -1 },
{ 1871, 172, -1 },
{ 1872, 172, -1 },
{ 1873, 172, -1 },
{ 1874, 172, -1 },
{ 1875, 172, -1 },
{ 1876, 172, -1 },
{ 1877, 172, -1 },
{ 1878, 172, -1 },
{ 1879, 172, -1 },
{ 1880, 172, -1 },
{ 1881, 172, -1 },
{ 1882, 172, -1 },
{ 1883, 172, -1 },
{ 1884, 172, -1 },
{ 1885, 172, -1 },
{ 1886, 172, -1 },
{ 1887, 172, -1 },
{ 1888, 172, -1 },
{ 1889, 172, -1 },
{ 1854, 244, -1 },
{ 1855, 244, -1 },
{ 1856, 244, -1 },
{ 1857, 244, -1 },
{ 1858, 244, -1 },
{ 1859, 244, -1 },
{ 1860, 244, -1 },
{ 1861, 244, -1 },
{ 1862, 244, -1 },
{ 1863, 244, -1 },
{ 1864, 244, -1 },
{ 1865, 244, -1 },
{ 1866, 244, -1 },
{ 1867, 244, -1 },
{ 1868, 244, -1 },
{ 1869, 244, -1 },
{ 1870, 244, -1 },
{ 1871, 244, -1 },
{ 1872, 244, -1 },
{ 1873, 244, -1 },
{ 1874, 244, -1 },
{ 1875, 244, -1 },
{ 1876, 244, -1 },
{ 1877, 244, -1 },
{ 1878, 244, -1 },
{ 1879, 244, -1 },
{ 1880, 244, -1 },
{ 1881, 244, -1 },
{ 1882, 244, -1 },
{ 1883, 244, -1 },
{ 1884, 244, -1 },
{ 1885, 244, -1 },
{ 1886, 244, -1 },
{ 1887, 244, -1 },
{ 1888, 244, -1 },
{ 1889, 244, -1 },
{ 1854, 206, -1 },
{ 1855, 206, -1 },
{ 1856, 206, -1 },
{ 1857, 206, -1 },
{ 1858, 206, -1 },
{ 1859, 206, -1 },
{ 1860, 206, -1 },
{ 1861, 206, -1 },
{ 1862, 206, -1 },
{ 1863, 206, -1 },
{ 1864, 206, -1 },
{ 1865, 206, -1 },
{ 1866, 206, -1 },
{ 1867, 206, -1 },
{ 1868, 206, -1 },
{ 1869, 206, -1 },
{ 1870, 206, -1 },
{ 1871, 206, -1 },
{ 1872, 206, -1 },
{ 1873, 206, -1 },
{ 1874, 206, -1 },
{ 1875, 206, -1 },
{ 1876, 206, -1 },
{ 1877, 206, -1 },
{ 1878, 206, -1 },
{ 1879, 206, -1 },
{ 1880, 206, -1 },
{ 1881, 206, -1 },
{ 1882, 206, -1 },
{ 1883, 206, -1 },
{ 1884, 206, -1 },
{ 1885, 206, -1 },
{ 1886, 206, -1 },
{ 1887, 206, -1 },
{ 1888, 206, -1 },
{ 1889, 206, -1 },
{ 1854, 207, -1 },
{ 1855, 207, -1 },
{ 1856, 207, -1 },
{ 1857, 207, -1 },
{ 1858, 207, -1 },
{ 1859, 207, -1 },
{ 1860, 207, -1 },
{ 1861, 207, -1 },
{ 1862, 207, -1 },
{ 1863, 207, -1 },
{ 1864, 207, -1 },
{ 1865, 207, -1 },
{ 1866, 207, -1 },
{ 1867, 207, -1 },
{ 1868, 207, -1 },
{ 1869, 207, -1 },
{ 1870, 207, -1 },
{ 1871, 207, -1 },
{ 1872, 207, -1 },
{ 1873, 207, -1 },
{ 1874, 207, -1 },
{ 1875, 207, -1 },
{ 1876, 207, -1 },
{ 1877, 207, -1 },
{ 1878, 207, -1 },
{ 1879, 207, -1 },
{ 1880, 207, -1 },
{ 1881, 207, -1 },
{ 1882, 207, -1 },
{ 1883, 207, -1 },
{ 1884, 207, -1 },
{ 1885, 207, -1 },
{ 1886, 207, -1 },
{ 1887, 207, -1 },
{ 1888, 207, -1 },
{ 1889, 207, -1 },
{ 1854, 205, -1 },
{ 1855, 205, -1 },
{ 1856, 205, -1 },
{ 1857, 205, -1 },
{ 1858, 205, -1 },
{ 1859, 205, -1 },
{ 1860, 205, -1 },
{ 1861, 205, -1 },
{ 1862, 205, -1 },
{ 1863, 205, -1 },
{ 1864, 205, -1 },
{ 1865, 205, -1 },
{ 1866, 205, -1 },
{ 1867, 205, -1 },
{ 1868, 205, -1 },
{ 1869, 205, -1 },
{ 1870, 205, -1 },
{ 1871, 205, -1 },
{ 1872, 205, -1 },
{ 1873, 205, -1 },
{ 1874, 205, -1 },
{ 1875, 205, -1 },
{ 1876, 205, -1 },
{ 1877, 205, -1 },
{ 1878, 205, -1 },
{ 1879, 205, -1 },
{ 1880, 205, -1 },
{ 1881, 205, -1 },
{ 1882, 205, -1 },
{ 1883, 205, -1 },
{ 1884, 205, -1 },
{ 1885, 205, -1 },
{ 1886, 205, -1 },
{ 1887, 205, -1 },
{ 1888, 205, -1 },
{ 1889, 205, -1 },
{ 1854, 171, -1 },
{ 1855, 171, -1 },
{ 1856, 171, -1 },
{ 1857, 171, -1 },
{ 1858, 171, -1 },
{ 1859, 171, -1 },
{ 1860, 171, -1 },
{ 1861, 171, -1 },
{ 1862, 171, -1 },
{ 1863, 171, -1 },
{ 1864, 171, -1 },
{ 1865, 171, -1 },
{ 1866, 171, -1 },
{ 1867, 171, -1 },
{ 1868, 171, -1 },
{ 1869, 171, -1 },
{ 1870, 171, -1 },
{ 1871, 171, -1 },
{ 1872, 171, -1 },
{ 1873, 171, -1 },
{ 1874, 171, -1 },
{ 1875, 171, -1 },
{ 1876, 171, -1 },
{ 1877, 171, -1 },
{ 1878, 171, -1 },
{ 1879, 171, -1 },
{ 1880, 171, -1 },
{ 1881, 171, -1 },
{ 1882, 171, -1 },
{ 1883, 171, -1 },
{ 1884, 171, -1 },
{ 1885, 171, -1 },
{ 1886, 171, -1 },
{ 1887, 171, -1 },
{ 1888, 171, -1 },
{ 1889, 171, -1 },
{ 1854, 169, -1 },
{ 1855, 169, -1 },
{ 1856, 169, -1 },
{ 1857, 169, -1 },
{ 1858, 169, -1 },
{ 1859, 169, -1 },
{ 1860, 169, -1 },
{ 1861, 169, -1 },
{ 1862, 169, -1 },
{ 1863, 169, -1 },
{ 1864, 169, -1 },
{ 1865, 169, -1 },
{ 1866, 169, -1 },
{ 1867, 169, -1 },
{ 1868, 169, -1 },
{ 1869, 169, -1 },
{ 1870, 169, -1 },
{ 1871, 169, -1 },
{ 1872, 169, -1 },
{ 1873, 169, -1 },
{ 1874, 169, -1 },
{ 1875, 169, -1 },
{ 1876, 169, -1 },
{ 1877, 169, -1 },
{ 1878, 169, -1 },
{ 1879, 169, -1 },
{ 1880, 169, -1 },
{ 1881, 169, -1 },
{ 1882, 169, -1 },
{ 1883, 169, -1 },
{ 1884, 169, -1 },
{ 1885, 169, -1 },
{ 1886, 169, -1 },
{ 1887, 169, -1 },
{ 1888, 169, -1 },
{ 1889, 169, -1 },
{ 1854, 170, -1 },
{ 1855, 170, -1 },
{ 1856, 170, -1 },
{ 1857, 170, -1 },
{ 1858, 170, -1 },
{ 1859, 170, -1 },
{ 1860, 170, -1 },
{ 1861, 170, -1 },
{ 1862, 170, -1 },
{ 1863, 170, -1 },
{ 1864, 170, -1 },
{ 1865, 170, -1 },
{ 1866, 170, -1 },
{ 1867, 170, -1 },
{ 1868, 170, -1 },
{ 1869, 170, -1 },
{ 1870, 170, -1 },
{ 1871, 170, -1 },
{ 1872, 170, -1 },
{ 1873, 170, -1 },
{ 1874, 170, -1 },
{ 1875, 170, -1 },
{ 1876, 170, -1 },
{ 1877, 170, -1 },
{ 1878, 170, -1 },
{ 1879, 170, -1 },
{ 1880, 170, -1 },
{ 1881, 170, -1 },
{ 1882, 170, -1 },
{ 1883, 170, -1 },
{ 1884, 170, -1 },
{ 1885, 170, -1 },
{ 1886, 170, -1 },
{ 1887, 170, -1 },
{ 1888, 170, -1 },
{ 1889, 170, -1 },
{ 1890, 1, -1 },
{ 1891, 1, -1 },
{ 1892, 1, -1 },
{ 1893, 1, -1 },
{ 1894, 1, -1 },
{ 1895, 1, -1 },
{ 1896, 1, -1 },
{ 1897, 1, -1 },
{ 1898, 1, -1 },
{ 1899, 1, -1 },
{ 1900, 1, -1 },
{ 1901, 1, -1 },
{ 1902, 1, -1 },
{ 1903, 1, -1 },
{ 1904, 1, -1 },
{ 1905, 1, -1 },
{ 1906, 1, -1 },
{ 1907, 1, -1 },
{ 1908, 1, -1 },
{ 1909, 1, -1 },
{ 1910, 1, -1 },
{ 1911, 1, -1 },
{ 1912, 1, -1 },
{ 1913, 1, -1 },
{ 1914, 1, -1 },
{ 1915, 1, -1 },
{ 1916, 1, -1 },
{ 1917, 1, -1 },
{ 1918, 1, -1 },
{ 1919, 1, -1 },
{ 1890, 121, -1 },
{ 1891, 121, -1 },
{ 1892, 121, -1 },
{ 1893, 121, -1 },
{ 1894, 121, -1 },
{ 1895, 121, -1 },
{ 1896, 121, -1 },
{ 1897, 121, -1 },
{ 1898, 121, -1 },
{ 1899, 121, -1 },
{ 1900, 121, -1 },
{ 1901, 121, -1 },
{ 1902, 121, -1 },
{ 1903, 121, -1 },
{ 1904, 121, -1 },
{ 1905, 121, -1 },
{ 1906, 121, -1 },
{ 1907, 121, -1 },
{ 1908, 121, -1 },
{ 1909, 121, -1 },
{ 1910, 121, -1 },
{ 1911, 121, -1 },
{ 1912, 121, -1 },
{ 1913, 121, -1 },
{ 1914, 121, -1 },
{ 1915, 121, -1 },
{ 1916, 121, -1 },
{ 1917, 121, -1 },
{ 1918, 121, -1 },
{ 1919, 121, -1 },
{ 1890, 120, -1 },
{ 1891, 120, -1 },
{ 1892, 120, -1 },
{ 1893, 120, -1 },
{ 1894, 120, -1 },
{ 1895, 120, -1 },
{ 1896, 120, -1 },
{ 1897, 120, -1 },
{ 1898, 120, -1 },
{ 1899, 120, -1 },
{ 1900, 120, -1 },
{ 1901, 120, -1 },
{ 1902, 120, -1 },
{ 1903, 120, -1 },
{ 1904, 120, -1 },
{ 1905, 120, -1 },
{ 1906, 120, -1 },
{ 1907, 120, -1 },
{ 1908, 120, -1 },
{ 1909, 120, -1 },
{ 1910, 120, -1 },
{ 1911, 120, -1 },
{ 1912, 120, -1 },
{ 1913, 120, -1 },
{ 1914, 120, -1 },
{ 1915, 120, -1 },
{ 1916, 120, -1 },
{ 1917, 120, -1 },
{ 1918, 120, -1 },
{ 1919, 120, -1 },
{ 1890, 172, -1 },
{ 1891, 172, -1 },
{ 1892, 172, -1 },
{ 1893, 172, -1 },
{ 1894, 172, -1 },
{ 1895, 172, -1 },
{ 1896, 172, -1 },
{ 1897, 172, -1 },
{ 1898, 172, -1 },
{ 1899, 172, -1 },
{ 1900, 172, -1 },
{ 1901, 172, -1 },
{ 1902, 172, -1 },
{ 1903, 172, -1 },
{ 1904, 172, -1 },
{ 1905, 172, -1 },
{ 1906, 172, -1 },
{ 1907, 172, -1 },
{ 1908, 172, -1 },
{ 1909, 172, -1 },
{ 1910, 172, -1 },
{ 1911, 172, -1 },
{ 1912, 172, -1 },
{ 1913, 172, -1 },
{ 1914, 172, -1 },
{ 1915, 172, -1 },
{ 1916, 172, -1 },
{ 1917, 172, -1 },
{ 1918, 172, -1 },
{ 1919, 172, -1 },
{ 1890, 244, -1 },
{ 1891, 244, -1 },
{ 1892, 244, -1 },
{ 1893, 244, -1 },
{ 1894, 244, -1 },
{ 1895, 244, -1 },
{ 1896, 244, -1 },
{ 1897, 244, -1 },
{ 1898, 244, -1 },
{ 1899, 244, -1 },
{ 1900, 244, -1 },
{ 1901, 244, -1 },
{ 1902, 244, -1 },
{ 1903, 244, -1 },
{ 1904, 244, -1 },
{ 1905, 244, -1 },
{ 1906, 244, -1 },
{ 1907, 244, -1 },
{ 1908, 244, -1 },
{ 1909, 244, -1 },
{ 1910, 244, -1 },
{ 1911, 244, -1 },
{ 1912, 244, -1 },
{ 1913, 244, -1 },
{ 1914, 244, -1 },
{ 1915, 244, -1 },
{ 1916, 244, -1 },
{ 1917, 244, -1 },
{ 1918, 244, -1 },
{ 1919, 244, -1 },
{ 1890, 206, -1 },
{ 1891, 206, -1 },
{ 1892, 206, -1 },
{ 1893, 206, -1 },
{ 1894, 206, -1 },
{ 1895, 206, -1 },
{ 1896, 206, -1 },
{ 1897, 206, -1 },
{ 1898, 206, -1 },
{ 1899, 206, -1 },
{ 1900, 206, -1 },
{ 1901, 206, -1 },
{ 1902, 206, -1 },
{ 1903, 206, -1 },
{ 1904, 206, -1 },
{ 1905, 206, -1 },
{ 1906, 206, -1 },
{ 1907, 206, -1 },
{ 1908, 206, -1 },
{ 1909, 206, -1 },
{ 1910, 206, -1 },
{ 1911, 206, -1 },
{ 1912, 206, -1 },
{ 1913, 206, -1 },
{ 1914, 206, -1 },
{ 1915, 206, -1 },
{ 1916, 206, -1 },
{ 1917, 206, -1 },
{ 1918, 206, -1 },
{ 1919, 206, -1 },
{ 1890, 207, -1 },
{ 1891, 207, -1 },
{ 1892, 207, -1 },
{ 1893, 207, -1 },
{ 1894, 207, -1 },
{ 1895, 207, -1 },
{ 1896, 207, -1 },
{ 1897, 207, -1 },
{ 1898, 207, -1 },
{ 1899, 207, -1 },
{ 1900, 207, -1 },
{ 1901, 207, -1 },
{ 1902, 207, -1 },
{ 1903, 207, -1 },
{ 1904, 207, -1 },
{ 1905, 207, -1 },
{ 1906, 207, -1 },
{ 1907, 207, -1 },
{ 1908, 207, -1 },
{ 1909, 207, -1 },
{ 1910, 207, -1 },
{ 1911, 207, -1 },
{ 1912, 207, -1 },
{ 1913, 207, -1 },
{ 1914, 207, -1 },
{ 1915, 207, -1 },
{ 1916, 207, -1 },
{ 1917, 207, -1 },
{ 1918, 207, -1 },
{ 1919, 207, -1 },
{ 1890, 205, -1 },
{ 1891, 205, -1 },
{ 1892, 205, -1 },
{ 1893, 205, -1 },
{ 1894, 205, -1 },
{ 1895, 205, -1 },
{ 1896, 205, -1 },
{ 1897, 205, -1 },
{ 1898, 205, -1 },
{ 1899, 205, -1 },
{ 1900, 205, -1 },
{ 1901, 205, -1 },
{ 1902, 205, -1 },
{ 1903, 205, -1 },
{ 1904, 205, -1 },
{ 1905, 205, -1 },
{ 1906, 205, -1 },
{ 1907, 205, -1 },
{ 1908, 205, -1 },
{ 1909, 205, -1 },
{ 1910, 205, -1 },
{ 1911, 205, -1 },
{ 1912, 205, -1 },
{ 1913, 205, -1 },
{ 1914, 205, -1 },
{ 1915, 205, -1 },
{ 1916, 205, -1 },
{ 1917, 205, -1 },
{ 1918, 205, -1 },
{ 1919, 205, -1 },
{ 1890, 171, -1 },
{ 1891, 171, -1 },
{ 1892, 171, -1 },
{ 1893, 171, -1 },
{ 1894, 171, -1 },
{ 1895, 171, -1 },
{ 1896, 171, -1 },
{ 1897, 171, -1 },
{ 1898, 171, -1 },
{ 1899, 171, -1 },
{ 1900, 171, -1 },
{ 1901, 171, -1 },
{ 1902, 171, -1 },
{ 1903, 171, -1 },
{ 1904, 171, -1 },
{ 1905, 171, -1 },
{ 1906, 171, -1 },
{ 1907, 171, -1 },
{ 1908, 171, -1 },
{ 1909, 171, -1 },
{ 1910, 171, -1 },
{ 1911, 171, -1 },
{ 1912, 171, -1 },
{ 1913, 171, -1 },
{ 1914, 171, -1 },
{ 1915, 171, -1 },
{ 1916, 171, -1 },
{ 1917, 171, -1 },
{ 1918, 171, -1 },
{ 1919, 171, -1 },
{ 1890, 169, -1 },
{ 1891, 169, -1 },
{ 1892, 169, -1 },
{ 1893, 169, -1 },
{ 1894, 169, -1 },
{ 1895, 169, -1 },
{ 1896, 169, -1 },
{ 1897, 169, -1 },
{ 1898, 169, -1 },
{ 1899, 169, -1 },
{ 1900, 169, -1 },
{ 1901, 169, -1 },
{ 1902, 169, -1 },
{ 1903, 169, -1 },
{ 1904, 169, -1 },
{ 1905, 169, -1 },
{ 1906, 169, -1 },
{ 1907, 169, -1 },
{ 1908, 169, -1 },
{ 1909, 169, -1 },
{ 1910, 169, -1 },
{ 1911, 169, -1 },
{ 1912, 169, -1 },
{ 1913, 169, -1 },
{ 1914, 169, -1 },
{ 1915, 169, -1 },
{ 1916, 169, -1 },
{ 1917, 169, -1 },
{ 1918, 169, -1 },
{ 1919, 169, -1 },
{ 1890, 170, -1 },
{ 1891, 170, -1 },
{ 1892, 170, -1 },
{ 1893, 170, -1 },
{ 1894, 170, -1 },
{ 1895, 170, -1 },
{ 1896, 170, -1 },
{ 1897, 170, -1 },
{ 1898, 170, -1 },
{ 1899, 170, -1 },
{ 1900, 170, -1 },
{ 1901, 170, -1 },
{ 1902, 170, -1 },
{ 1903, 170, -1 },
{ 1904, 170, -1 },
{ 1905, 170, -1 },
{ 1906, 170, -1 },
{ 1907, 170, -1 },
{ 1908, 170, -1 },
{ 1909, 170, -1 },
{ 1910, 170, -1 },
{ 1911, 170, -1 },
{ 1912, 170, -1 },
{ 1913, 170, -1 },
{ 1914, 170, -1 },
{ 1915, 170, -1 },
{ 1916, 170, -1 },
{ 1917, 170, -1 },
{ 1918, 170, -1 },
{ 1919, 170, -1 },
{ 6118, 1, -1 },
{ 6119, 1, -1 },
{ 6120, 1, -1 },
{ 6121, 1, -1 },
{ 6118, 121, -1 },
{ 6119, 121, -1 },
{ 6120, 121, -1 },
{ 6121, 121, -1 },
{ 6118, 120, -1 },
{ 6119, 120, -1 },
{ 6120, 120, -1 },
{ 6121, 120, -1 },
{ 6118, 172, -1 },
{ 6119, 172, -1 },
{ 6120, 172, -1 },
{ 6121, 172, -1 },
{ 6119, 244, -1 },
{ 6120, 244, -1 },
{ 6121, 244, -1 },
{ 6119, 238, -1 },
{ 6120, 238, -1 },
{ 6121, 238, -1 },
{ 6118, 206, -1 },
{ 6119, 206, -1 },
{ 6120, 206, -1 },
{ 6121, 206, -1 },
{ 6118, 207, -1 },
{ 6119, 207, -1 },
{ 6120, 207, -1 },
{ 6121, 207, -1 },
{ 6118, 205, -1 },
{ 6119, 205, -1 },
{ 6120, 205, -1 },
{ 6121, 205, -1 },
{ 6118, 171, -1 },
{ 6119, 171, -1 },
{ 6120, 171, -1 },
{ 6121, 171, -1 },
{ 6118, 169, -1 },
{ 6119, 169, -1 },
{ 6120, 169, -1 },
{ 6121, 169, -1 },
{ 6118, 170, -1 },
{ 6119, 170, -1 },
{ 6120, 170, -1 },
{ 6121, 170, -1 },
{ 8106, 148, -1 },
{ 8107, 148, -1 },
{ 8108, 148, -1 },
{ 8109, 148, -1 },
{ 8106, 350, -1 },
{ 8107, 350, -1 },
{ 8108, 350, -1 },
{ 8109, 350, -1 },
{ 8110, 231, -1 },
{ 8112, 231, -1 },
{ 8113, 231, -1 },
{ 1141, 130, -1 },
{ 1142, 130, -1 },
{ 1143, 130, -1 },
{ 1144, 130, -1 },
{ 6130, 1, -1 },
{ 6131, 1, -1 },
{ 6132, 1, -1 },
{ 6133, 1, -1 },
{ 6130, 121, -1 },
{ 6131, 121, -1 },
{ 6132, 121, -1 },
{ 6133, 121, -1 },
{ 6130, 120, -1 },
{ 6131, 120, -1 },
{ 6132, 120, -1 },
{ 6133, 120, -1 },
{ 6130, 172, -1 },
{ 6131, 172, -1 },
{ 6132, 172, -1 },
{ 6133, 172, -1 },
{ 6130, 244, -1 },
{ 6131, 244, -1 },
{ 6132, 244, -1 },
{ 6133, 244, -1 },
{ 6130, 206, -1 },
{ 6131, 206, -1 },
{ 6132, 206, -1 },
{ 6133, 206, -1 },
{ 6130, 207, -1 },
{ 6131, 207, -1 },
{ 6132, 207, -1 },
{ 6133, 207, -1 },
{ 6130, 205, -1 },
{ 6131, 205, -1 },
{ 6132, 205, -1 },
{ 6133, 205, -1 },
{ 6130, 171, -1 },
{ 6131, 171, -1 },
{ 6132, 171, -1 },
{ 6133, 171, -1 },
{ 6130, 169, -1 },
{ 6131, 169, -1 },
{ 6132, 169, -1 },
{ 6133, 169, -1 },
{ 6130, 170, -1 },
{ 6131, 170, -1 },
{ 6132, 170, -1 },
{ 6133, 170, -1 },
{ 8857, 26, -1 },
{ 8858, 26, -1 },
{ 8857, 1, -1 },
{ 8858, 1, -1 },
{ 8857, 24, -1 },
{ 8858, 24, -1 },
{ 8840, 26, -1 },
{ 8841, 26, -1 },
{ 8842, 26, -1 },
{ 8843, 26, -1 },
{ 8844, 26, -1 },
{ 8845, 26, -1 },
{ 8846, 26, -1 },
{ 8840, 1, -1 },
{ 8841, 1, -1 },
{ 8842, 1, -1 },
{ 8843, 1, -1 },
{ 8844, 1, -1 },
{ 8845, 1, -1 },
{ 8846, 1, -1 },
{ 8840, 24, -1 },
{ 8841, 24, -1 },
{ 8842, 24, -1 },
{ 8843, 24, -1 },
{ 8844, 24, -1 },
{ 8845, 24, -1 },
{ 8846, 24, -1 },
{ 8840, 281, -1 },
{ 8841, 281, -1 },
{ 8842, 281, -1 },
{ 8843, 281, -1 },
{ 8844, 281, -1 },
{ 8845, 281, -1 },
{ 8846, 281, -1 },
{ 8840, 171, -1 },
{ 8841, 171, -1 },
{ 8842, 171, -1 },
{ 8843, 171, -1 },
{ 8844, 171, -1 },
{ 8845, 171, -1 },
{ 8846, 171, -1 },
{ 8900, 26, -1 },
{ 8901, 26, -1 },
{ 8902, 26, -1 },
{ 8899, 1, -1 },
{ 8900, 1, -1 },
{ 8901, 1, -1 },
{ 8902, 1, -1 },
{ 8900, 24, -1 },
{ 8901, 24, -1 },
{ 8902, 24, -1 },
{ 8900, 281, -1 },
{ 8901, 281, -1 },
{ 8902, 281, -1 },
{ 8899, 176, -1 },
{ 8901, 176, -1 },
{ 8902, 176, -1 },
{ 8899, 171, -1 },
{ 8900, 171, -1 },
{ 8901, 171, -1 },
{ 8902, 171, -1 },
{ 8910, 175, -1 },
{ 8912, 175, -1 },
{ 8913, 175, -1 },
{ 8910, 177, -1 },
{ 8912, 177, -1 },
{ 8913, 177, -1 },
{ 8905, 26, -1 },
{ 8908, 26, -1 },
{ 8904, 1, -1 },
{ 8905, 1, -1 },
{ 8908, 1, -1 },
{ 8908, 24, -1 },
{ 8905, 281, -1 },
{ 8908, 281, -1 },
{ 8904, 171, -1 },
{ 8905, 171, -1 },
{ 8908, 171, -1 },
{ 9839, 305, -1 },
{ 9840, 305, -1 },
{ 9841, 305, -1 },
{ 9842, 305, -1 },
{ 9843, 305, -1 },
{ 9844, 305, -1 },
{ 9839, 288, -1 },
{ 9840, 288, -1 },
{ 9841, 288, -1 },
{ 9842, 288, -1 },
{ 9843, 288, -1 },
{ 9844, 288, -1 },
{ 9835, 305, -1 },
{ 9835, 288, -1 },
{ 9838, 288, -1 },
{ 11018, 1, -1 },
{ 11019, 1, -1 },
{ 11018, 172, -1 },
{ 11019, 172, -1 },
{ 11018, 205, -1 },
{ 11019, 205, -1 },
{ 11018, 171, -1 },
{ 11019, 171, -1 },
{ 11018, 169, -1 },
{ 11019, 169, -1 },
{ 11018, 170, -1 },
{ 11019, 170, -1 },
};
| [
"[email protected]"
] | |
f1a707259c97085cde15280bc89184462779e96f | 7e29f5b8895fa0a3e3bd2fa65fd55e931a40c4f4 | /flight_controller_logger/flight_controller_logger.ino | b515b2baa9aeaf8d5646351e747b1ac4f3f053a2 | [
"MIT"
] | permissive | gleguizamon/rocketry | 524b83063b7ead09f304a7fd8bb4a5215d48d2e3 | 5beeef528793a90c21836bd4a2be7be5127f8afc | refs/heads/master | 2023-09-02T10:06:40.363448 | 2021-10-23T14:17:41 | 2021-10-23T14:17:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,461 | ino | /* ***************************************************************************
* This sketch contains flight controller logic for candy rockets. *
* *
* Sketch uses Arduino Nano controller, and it contains limited amount of *
* RAM. Due to that - to achieve stability - at least 20% of RAM should be *
* free and debug serial output is commented-out in this sketch. *
* *
* Flight controller contains: *
* - Arduino Nano v3 (CH340g), MPU-6050 6-axis gyroscope, piezo buzzer, *
* BMP180 barometer/thermometer, SD card module, 2x18650, LM7805, relay *
* *
* Third-party libraries: *
* - https://github.com/sparkfun/BMP180_Breakout *
* *
* Logic: *
* 1) Init all modules; *
* 2) Wait until SD card ready; *
* 3) Wait for jumper out or altitude reach limit change (5-10m); *
* 4) Start looping, write gyro and altimeter data to file; *
* 5) If altitude starts to falling or timer is out, ignite; *
* 6) If time after ignition reach landing limit, Stop loop, save file; *
* 7) Beep continuously until vessel will be recovered. *
* *
* Sketch written by Iliya Vereshchagin 2021. *
*****************************************************************************/
//#define DEBUG
//#define FAKE_RUN
//#define JUMPER_START
#define ALTITUDE_START
#include <SD.h>
#include <Wire.h>
#include <SFE_BMP180.h>
#include <SoftwareSerial.h>
#include <SPI.h>
//Serial globals
const int BaudRate = 9600;
// delay globals
const int standard_delay = 500;
const int error_delay = 100;
const long flight_delay = 12000;
const long apogee_delay = flight_delay / 2;
const long landing_delay = flight_delay * 12;
// Gyro globals
const int MPU_addr=0x68; // I2C address of the MPU-6050
int16_t AcX,AcY,AcZ,Tmp,GyX,GyY,GyZ;
// Barometer globals
SFE_BMP180 barometer_data;
double normal_pressure = 0;
double altitude = 0;
double max_altitude = 0;
const double max_delta = 5.0;
// SD globals
const String filename = "FDATA.TXT";
const int SD_CS_PIN = 5;
File myFile;
// buzzer globals;
const int PIN_BUZZER = 6;
const int frequency = 5000;
// jumper globals
const int PIN_JUMPER = 2;
// ignition globals
const int PIN_IGNITOR = 9;
bool ignited = false;
// landing globals
unsigned long start_time;
void setup()
{
#ifdef DEBUG
Serial.begin(BaudRate);
#endif
init_buzzer();
init_barometer();
init_gyro();
init_ignitor();
init_SD_card();
altitude = get_raw_barometer_data(2);
beep(frequency, standard_delay); // make beep, mark init completed
#ifdef DEBUG
Serial.println("Init completed, waiting for rocket start");
#endif
wait_for_start();
}
void wait_for_start()
{
double delta_altitude;
while(1)
{
#ifdef ALTITUDE_START
delta_altitude = get_raw_barometer_data(2) - altitude;
// Regular start
if (delta_altitude > max_delta)
{
#ifdef DEBUG
Serial.println("Rocket started, forcing loop");
#endif
break;
}
// Failsafe: are we rebooting in flight? If yes, ignite immediately
if ((-delta_altitude) > (max_delta * 2))
{
#ifdef DEBUG
Serial.println("Rocket falling! Urgent ignition!");
#endif
ignite(); // try to eject chute
stop_flight(); // close file anyway
rescue_beep(standard_delay); // start beeping
}
#endif
#ifdef JUMPER_START
if (digitalRead(PIN_JUMPER) == LOW)
{
#ifdef DEBUG
Serial.println("Jumper out, forcing loop");
#endif
break;
}
break;
#endif
// Do not use FAKE_RUN logic for real flight!
#ifdef FAKE_RUN
fake_ignition();
break;
#endif
}
start_time = millis();
}
/* Init functions */
void init_ignitor()
{
#ifdef DEBUG
Serial.println("Initializing ignitor pin...");
#endif
pinMode(PIN_IGNITOR, OUTPUT);
digitalWrite(PIN_IGNITOR, HIGH);
}
void init_jumper()
{
#ifdef DEBUG
Serial.println("Initializing jumper pin...");
#endif
pinMode(PIN_JUMPER, INPUT_PULLUP);
}
void init_gyro()
{
Wire.beginTransmission(MPU_addr);
Wire.write(0x6B); // PWR_MGMT_1 register
Wire.write(0); // set to zero (wakes up the MPU-6050)
Wire.endTransmission(true);
// Configure Accelerometer Sensitivity - Full Scale Range (default +/- 2g)
// 2g --> 0x00, 4g --> 0x08, 8g --> 0x10, 16g --> 0x18
Wire.beginTransmission(MPU);
Wire.write(0x1C); //Talk to the ACCEL_CONFIG register (1C hex)
Wire.write(0x18); //Set the register bits as 00011000 (+/- 16g full scale range)
Wire.endTransmission(true);
#ifdef DEBUG
Serial.println("Gyro start");
#endif
}
bool init_SD_card()
{
#ifdef DEBUG
Serial.println("Initializing SD card...");
#endif
delay(standard_delay);
if (!SD.begin(SD_CS_PIN))
{
#ifdef DEBUG
Serial.println("Init SD failed!");
#endif
stop();
}
#ifdef DEBUG
Serial.println("Opening IO file...");
#endif
myFile = SD.open(filename, FILE_WRITE);
delay(standard_delay);
// if the file opened, return false
if (myFile)
{
#ifdef DEBUG
Serial.println("SD ready");
#endif
delay(standard_delay);
}
else
{
#ifdef DEBUG
Serial.println("Can't open file!");
#endif
stop();
}
}
void init_barometer()
{
barometer_data.begin();
normal_pressure = get_raw_barometer_data(0);
#ifdef DEBUG
Serial.println("Barometer set");
#endif
}
void init_buzzer()
{
pinMode(PIN_BUZZER, INPUT);
#ifdef DEBUG
Serial.println("Buzzer pin set");
#endif
}
/* Execution functions */
void write_flight_data()
{
myFile.print(millis());
#ifdef DEBUG
Serial.print(millis());
#endif
myFile.print(",");
#ifdef DEBUG
Serial.print(",");
#endif
myFile.print(get_gyro_data());
#ifdef DEBUG
Serial.print(get_gyro_data());
#endif
myFile.print(",");
#ifdef DEBUG
Serial.print(",");
#endif
myFile.print(get_barometer_data());
#ifdef DEBUG
Serial.print(get_barometer_data());
#endif
myFile.print("\n");
#ifdef DEBUG
Serial.print("\n");
#endif
}
String get_gyro_data()
{
Wire.beginTransmission(MPU_addr);
Wire.write(0x3B); // starting with register 0x3B (ACCEL_XOUT_H)
Wire.endTransmission(false);
Wire.requestFrom(MPU_addr,14,true); // request a total of 14 registers
AcX=Wire.read()<<8|Wire.read(); // 0x3B (ACCEL_XOUT_H) & 0x3C (ACCEL_XOUT_L)
AcY=Wire.read()<<8|Wire.read(); // 0x3D (ACCEL_YOUT_H) & 0x3E (ACCEL_YOUT_L)
AcZ=Wire.read()<<8|Wire.read(); // 0x3F (ACCEL_ZOUT_H) & 0x40 (ACCEL_ZOUT_L)
Tmp=Wire.read()<<8|Wire.read(); // 0x41 (TEMP_OUT_H) & 0x42 (TEMP_OUT_L)
GyX=Wire.read()<<8|Wire.read(); // 0x43 (GYRO_XOUT_H) & 0x44 (GYRO_XOUT_L)
GyY=Wire.read()<<8|Wire.read(); // 0x45 (GYRO_YOUT_H) & 0x46 (GYRO_YOUT_L)
GyZ=Wire.read()<<8|Wire.read(); // 0x47 (GYRO_ZOUT_H) & 0x48 (GYRO_ZOUT_L)
String retVal = String(AcX) + "," + String(AcY) + "," + String(AcZ) + "," + String(Tmp/340.00+36.53) + "," + String(GyX) + "," + String(GyY) + "," + String(GyZ);
return retVal;
}
String get_barometer_data()
{
altitude = get_raw_barometer_data(2);
String retVal = String(get_raw_barometer_data(0)) + "," + String(get_raw_barometer_data(1)) + "," + String(altitude);
return retVal;
}
double get_raw_barometer_data(int type)
{
char status;
double T, P;
status = barometer_data.startTemperature();
if (status != 0)
{
delay(status);
status = barometer_data.getTemperature(T);
if (type == 1)
{
return T;
}
if (status != 0)
{
status = barometer_data.startPressure(3);
if (status != 0)
{
delay(status);
status = barometer_data.getPressure(P, T);
if (status != 0)
{
if (type == 0)
{
return(P);
}
else
{
return barometer_data.altitude(P, normal_pressure);
}
}
}
}
}
}
void loop()
{
// Write flight data every tick
write_flight_data();
// Store new apogee
if (altitude > max_altitude)
{
max_altitude = altitude;
}
// Check for apogee, do not allow to release chute while too close to ground or while engine still working
if ((max_altitude - altitude) > max_delta and ignited == false and ((millis() - start_time) > apogee_delay))
{
#ifdef DEBUG
Serial.println("Apogee reached!");
#endif
ignite();
}
// If barometer stuck or something nasty happened: check that time limit is reached, open chute anyway
if (((millis() - start_time) > flight_delay) and ignited == false)
{
#ifdef DEBUG
Serial.println("Time limit reached!");
#endif
ignite();
}
// Check for flight end after time limit (rocket should be landed already)
if ((millis() - start_time) > landing_delay)
{
// close file if it's opened
if (myFile)
{
stop_flight();
}
rescue_beep(standard_delay);
}
}
void stop_flight()
{
#ifdef DEBUG
Serial.println("Landed, saving data and call for recovery");
#endif
myFile.close();
digitalWrite(PIN_IGNITOR, HIGH);
}
void stop()
{
while(1)
{
beep(frequency, error_delay);
delay(error_delay);
}
}
void ignite()
{
#ifdef DEBUG
Serial.println("Deploying chute, ignition!");
#endif
digitalWrite(PIN_IGNITOR, LOW);
// Attention! After ignition there is still voltage on pins,
// do not touch electronics before switch-off flight computer!
// Ignitor is not switched off because we have no time to wait in flight and to do it.
ignited = true;
}
/* buzzer functions */
void rescue_beep(int demanded_delay)
{
beep(frequency, demanded_delay);
delay(demanded_delay);
}
void beep(int ghz, int demanded_delay)
{
tone(PIN_BUZZER, ghz, demanded_delay);
delay(demanded_delay);
pinMode(PIN_BUZZER, INPUT);
delay(demanded_delay);
}
#ifdef FAKE_RUN
void fake_ignition()
{
start_time = millis();
delay(flight_delay);
beep(frequency, standard_delay);
}
#endif
| [
"[email protected]"
] | |
49b36badbdfe3fae7aab9102c482668e45ea7a02 | 3a85ce2e7564d71f00aee149ecbcd373002de0b1 | /ssd1306_打印排布/ssd1306_打印排布.ino | 98ddf823499e12e73ce7c6654470b72a37c5e67b | [] | no_license | cnc4less/arduino_esp8266_lgt8f328p | 3d4ad0d6bc61bff2f95d7a8466a20f383617f640 | 7b758ac9d686707d338a361ed7d14360fe596807 | refs/heads/master | 2023-06-02T01:07:14.002724 | 2021-06-24T06:15:09 | 2021-06-24T06:15:09 | 397,990,537 | 1 | 0 | null | 2021-08-19T15:30:26 | 2021-08-19T15:30:26 | null | UTF-8 | C++ | false | false | 29,847 | ino | /*
PrintUTF8.ino
Use the (Arduino compatible) u8g2 function "print" to draw a text.
Universal 8bit Graphics Library (https://github.com/olikraus/u8g2/)
Copyright (c) 2016, [email protected]
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or other
materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <Arduino.h>
#include <U8g2lib.h>
#include <ESP8266WiFi.h>
#ifdef U8X8_HAVE_HW_SPI
#include <SPI.h>
#endif
#ifdef U8X8_HAVE_HW_I2C
#include <Wire.h>
#endif
/*
U8g2lib Example Overview:
Frame Buffer Examples: clearBuffer/sendBuffer. Fast, but may not work with all Arduino boards because of RAM consumption
Page Buffer Examples: firstPage/nextPage. Less RAM usage, should work with all Arduino boards.
U8x8 Text Only Example: No RAM usage, direct communication with display controller. No graphics, 8x8 Text only.
*/
// Please UNCOMMENT one of the contructor lines below
// U8g2 Contructor List (Frame Buffer)
// The complete list is available here: https://github.com/olikraus/u8g2/wiki/u8g2setupcpp
// Please update the pin numbers according to your setup. Use U8X8_PIN_NONE if the reset pin is not connected
//U8G2_NULL u8g2(U8G2_R0); // null device, a 8x8 pixel display which does nothing
//U8G2_SSD1306_128X64_NONAME_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 12, /* dc=*/ 4, /* reset=*/ 6); // Arduboy (Production, Kickstarter Edition)
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1306_128X64_NONAME_F_3W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* reset=*/ 8);
//U8G2_SSD1306_128X64_NONAME_F_3W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* reset=*/ 8);
//U8G2_SSD1306_128X64_NONAME_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE);
//U8G2_SSD1306_128X64_ALT0_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE); // same as the NONAME variant, but may solve the "every 2nd line skipped" problem
//U8G2_SSD1306_128X64_NONAME_F_SW_I2C u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* reset=*/ 8);
U8G2_SSD1306_128X64_NONAME_F_SW_I2C u8g2(U8G2_R0, /* clock=*/SCL, /* data=*/SDA, /* reset=*/
U8X8_PIN_NONE); // All Boards without Reset of the Display
//U8G2_SSD1306_128X64_NONAME_F_SW_I2C u8g2(U8G2_R0, /* clock=*/ 16, /* data=*/ 17, /* reset=*/ U8X8_PIN_NONE); // ESP32 Thing, pure SW emulated I2C
//U8G2_SSD1306_128X64_NONAME_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE, /* clock=*/ 16, /* data=*/ 17); // ESP32 Thing, HW I2C with pin remapping
//U8G2_SSD1306_128X64_NONAME_F_6800 u8g2(U8G2_R0, 13, 11, 2, 3, 4, 5, 6, A4, /*enable=*/ 7, /*cs=*/ 10, /*dc=*/ 9, /*reset=*/ 8);
//U8G2_SSD1306_128X64_NONAME_F_8080 u8g2(U8G2_R0, 13, 11, 2, 3, 4, 5, 6, A4, /*enable=*/ 7, /*cs=*/ 10, /*dc=*/ 9, /*reset=*/ 8);
//U8G2_SSD1306_128X64_VCOMH0_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // same as the NONAME variant, but maximizes setContrast() range
//U8G2_SSD1306_128X64_ALT0_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // same as the NONAME variant, but may solve the "every 2nd line skipped" problem
//U8G2_SH1106_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SH1106_128X64_NONAME_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE);
//U8G2_SH1106_128X64_VCOMH0_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // same as the NONAME variant, but maximizes setContrast() range
//U8G2_SH1106_128X64_WINSTAR_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // same as the NONAME variant, but uses updated SH1106 init sequence
//U8G2_SH1106_72X40_WISE_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SH1107_64X128_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SH1107_128X128_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SH1107_128X128_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ 8);
//U8G2_SH1107_PIMORONI_128X128_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ 8);
//U8G2_SH1107_SEEED_128X128_F_SW_I2C u8g2(U8G2_R0, /* clock=*/ SCL, /* data=*/ SDA, /* reset=*/ U8X8_PIN_NONE);
//U8G2_SH1107_SEEED_128X128_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE);
//U8G2_SH1107_SEEED_96X96_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SH1108_160X160_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SH1122_256X64_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Enable U8G2_16BIT in u8g2.h
//U8G2_SSD1306_128X32_UNIVISION_F_SW_I2C u8g2(U8G2_R0, /* clock=*/ 21, /* data=*/ 20, /* reset=*/ U8X8_PIN_NONE); // Adafruit Feather M0 Basic Proto + FeatherWing OLED
//U8G2_SSD1306_128X32_UNIVISION_F_SW_I2C u8g2(U8G2_R0, /* clock=*/ SCL, /* data=*/ SDA, /* reset=*/ U8X8_PIN_NONE); // Adafruit Feather ESP8266/32u4 Boards + FeatherWing OLED
//U8G2_SSD1306_128X32_UNIVISION_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE); // Adafruit ESP8266/32u4/ARM Boards + FeatherWing OLED
//U8G2_SSD1306_128X32_UNIVISION_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE, /* clock=*/ SCL, /* data=*/ SDA); // pin remapping with ESP8266 HW I2C
//U8G2_SSD1306_128X32_WINSTAR_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE, /* clock=*/ SCL, /* data=*/ SDA); // pin remapping with ESP8266 HW I2C
//U8G2_SSD1306_64X48_ER_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE); // EastRising 0.66" OLED breakout board, Uno: A4=SDA, A5=SCL, 5V powered
//U8G2_SSD1306_48X64_WINSTAR_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE);
//U8G2_SSD1306_64X32_NONAME_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE);
//U8G2_SSD1306_64X32_1F_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE);
//U8G2_SSD1306_96X16_ER_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE); // EastRising 0.69" OLED
//U8G2_SSD1306_72X40_ER_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE); // EastRising 0.42" OLED
//U8G2_SSD1322_NHD_256X64_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Enable U8G2_16BIT in u8g2.h
//U8G2_SSD1322_NHD_256X64_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Enable U8G2_16BIT in u8g2.h
//U8G2_SSD1322_NHD_128X64_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1322_NHD_128X64_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1325_NHD_128X64_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1325_NHD_128X64_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD0323_OS128064_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD0323_OS128064_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1326_ER_256X32_1_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // experimental driver for ER-OLED018-1
//U8G2_SSD1327_SEEED_96X96_F_SW_I2C u8g2(U8G2_R0, /* clock=*/ SCL, /* data=*/ SDA, /* reset=*/ U8X8_PIN_NONE); // Seeedstudio Grove OLED 96x96
//U8G2_SSD1327_SEEED_96X96_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE); // Seeedstudio Grove OLED 96x96
//U8G2_SSD1327_EA_W128128_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1327_EA_W128128_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1327_EA_W128128_F_SW_I2C u8g2(U8G2_R0, /* clock=*/ 5, /* data=*/ 4, /* reset=*/ U8X8_PIN_NONE);
//U8G2_SSD1327_EA_W128128_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE); /* Uno: A4=SDA, A5=SCL, add "u8g2.setBusClock(400000);" into setup() for speedup if possible */
//U8G2_SSD1327_MIDAS_128X128_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1327_MIDAS_128X128_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1327_MIDAS_128X128_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE); /* Uno: A4=SDA, A5=SCL, add "u8g2.setBusClock(400000);" into setup() for speedup if possible */
//U8G2_SSD1327_WS_128X128_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1327_WS_128X128_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1327_VISIONOX_128X96_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1327_VISIONOX_128X96_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1329_128X96_NONAME_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1329_128X96_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1305_128X32_NONAME_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1305_128X32_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1305_128X32_ADAFRUIT_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1305_128X32_ADAFRUIT_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1305_128X64_ADAFRUIT_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1305_128X64_ADAFRUIT_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1309_128X64_NONAME0_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1309_128X64_NONAME0_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1309_128X64_NONAME2_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1309_128X64_NONAME2_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1316_128X32_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1316_128X32_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1317_96X96_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // not tested, not confirmed
//U8G2_SSD1317_96X96_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // not tested, not confirmed
//U8G2_SSD1318_128X96_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1318_128X96_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_LD7032_60X32_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 11, /* data=*/ 12, /* cs=*/ 9, /* dc=*/ 10, /* reset=*/ 8); // SW SPI Nano Board
//U8G2_LD7032_60X32_F_4W_SW_I2C u8g2(U8G2_R0, /* clock=*/ 11, /* data=*/ 12, /* reset=*/ U8X8_PIN_NONE); // NOT TESTED!
//U8G2_UC1701_EA_DOGS102_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_UC1701_EA_DOGS102_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_PCD8544_84X48_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Nokia 5110 Display
//U8G2_PCD8544_84X48_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Nokia 5110 Display
//U8G2_PCF8812_96X65_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Could be also PCF8814
//U8G2_PCF8812_96X65_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Could be also PCF8814
//U8G2_HX1230_96X68_F_3W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* reset=*/ 8);
//U8G2_HX1230_96X68_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_KS0108_128X64_F u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 18, /*dc=*/ 17, /*cs0=*/ 14, /*cs1=*/ 15, /*cs2=*/ U8X8_PIN_NONE, /* reset=*/ U8X8_PIN_NONE); // Set R/W to low!
//U8G2_KS0108_ERM19264_F u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 18, /*dc=*/ 17, /*cs0=*/ 14, /*cs1=*/ 15, /*cs2=*/ 16, /* reset=*/ U8X8_PIN_NONE); // Set R/W to low!
//U8G2_ST7920_192X32_F_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 18, /*cs=*/ U8X8_PIN_NONE, /*dc=*/ 17, /*reset=*/ U8X8_PIN_NONE);
//U8G2_ST7920_192X32_F_SW_SPI u8g2(U8G2_R0, /* clock=*/ 18 /* A4 */ , /* data=*/ 16 /* A2 */, /* CS=*/ 17 /* A3 */, /* reset=*/ U8X8_PIN_NONE);
//U8G2_ST7920_128X64_F_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 18 /* A4 */, /*cs=*/ U8X8_PIN_NONE, /*dc/rs=*/ 17 /* A3 */, /*reset=*/ 15 /* A1 */); // Remember to set R/W to 0
//U8G2_ST7920_128X64_F_SW_SPI u8g2(U8G2_R0, /* clock=*/ 18 /* A4 */ , /* data=*/ 16 /* A2 */, /* CS=*/ 17 /* A3 */, /* reset=*/ U8X8_PIN_NONE);
//U8G2_ST7920_128X64_F_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* CS=*/ 10, /* reset=*/ 8);
//U8G2_ST7920_128X64_F_SW_SPI u8g2(U8G2_R0, /* clock=*/ 14, /* data=*/ 13, /* CS=*/ 15, /* reset=*/ 16); // Feather HUZZAH ESP8266, E=clock=14, RW=data=13, RS=CS
//U8G2_ST7920_128X64_F_HW_SPI u8g2(U8G2_R0, /* CS=*/ 10, /* reset=*/ 8);
//U8G2_ST7920_128X64_F_HW_SPI u8g2(U8G2_R0, /* CS=*/ 15, /* reset=*/ 16); // Feather HUZZAH ESP8266, E=clock=14, RW=data=13, RS=CS
//U8G2_ST7565_EA_DOGM128_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_EA_DOGM128_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_64128N_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_64128N_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_EA_DOGM132_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ U8X8_PIN_NONE); // DOGM132 Shield
//U8G2_ST7565_EA_DOGM132_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ U8X8_PIN_NONE); // DOGM132 Shield
//U8G2_ST7565_ZOLEN_128X64_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_ZOLEN_128X64_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_LM6059_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Adafruit ST7565 GLCD
//U8G2_ST7565_LM6059_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Adafruit ST7565 GLCD
//U8G2_ST7565_LX12864_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_LX12864_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_ERC12864_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_ERC12864_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_ERC12864_ALT_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // contrast improved version for ERC12864
//U8G2_ST7565_ERC12864_ALT_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // contrast improved version for ERC12864
//U8G2_ST7565_NHD_C12832_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_NHD_C12832_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_NHD_C12864_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_NHD_C12864_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_JLX12864_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_JLX12864_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7567_PI_132X64_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 7, /* dc=*/ 9, /* reset=*/ 8); // Pax Instruments Shield, LCD_BL=6
//U8G2_ST7567_PI_132X64_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 7, /* dc=*/ 9, /* reset=*/ 8); // Pax Instruments Shield, LCD_BL=6
//U8G2_ST7567_JLX12864_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 7, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7567_JLX12864_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 7, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7567_OS12864_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 7, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7567_OS12864_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 7, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7567_ENH_DG128064_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7567_ENH_DG128064_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7567_ENH_DG128064I_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7567_ENH_DG128064I_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7567_64X32_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE);
//U8G2_ST75256_JLX172104_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST75256_JLX172104_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST75256_JLX19296_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST75256_JLX19296_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST75256_JLX256128_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Enable U8g2 16 bit mode for this display
//U8G2_ST75256_JLX256128_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Enable U8g2 16 bit mode for this display
//U8G2_ST75256_WO256X128_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Enable U8g2 16 bit mode for this display
//U8G2_ST75256_WO256X128_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Enable U8g2 16 bit mode for this display
//U8G2_ST75256_JLX256128_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 9, /* data=*/ 8, /* cs=*/ 7, /* dc=*/ 6, /* reset=*/ 5); // MKR Zero, Enable U8g2 16 bit mode for this display
//U8G2_ST75256_JLX256128_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 7, /* dc=*/ 6, /* reset=*/ 5); // MKR Zero, Enable U8g2 16 bit mode for this display
//U8G2_ST75256_JLX256160_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Enable U8g2 16 bit mode for this display
//U8G2_ST75256_JLX256160_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Enable U8g2 16 bit mode for this display
//U8G2_ST75256_JLX256160M_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Enable U8g2 16 bit mode for this display
//U8G2_ST75256_JLX256160M_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Enable U8g2 16 bit mode for this display
//U8G2_ST75256_JLX256160_ALT_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Enable U8g2 16 bit mode for this display
//U8G2_ST75256_JLX256160_ALT_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Enable U8g2 16 bit mode for this display
//U8G2_ST75256_JLX240160_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST75256_JLX240160_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST75256_JLX25664_F_2ND_HW_I2C u8g2(U8G2_R0, /* reset=*/ 8); // Due, 2nd I2C, enable U8g2 16 bit mode for this display
//U8G2_ST75320_JLX320240_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Enable U8g2 16 bit mode for this display
//U8G2_ST75320_JLX320240_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Enable U8g2 16 bit mode for this display
//U8G2_NT7534_TG12864R_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_NT7534_TG12864R_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7588_JLX12864_F_SW_I2C u8g2(U8G2_R0, /* clock=*/ SCL, /* data=*/ SDA, /* reset=*/ 5);
//U8G2_ST7588_JLX12864_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ 5);
//U8G2_IST3020_ERC19264_F_6800 u8g2(U8G2_R0, 44, 43, 42, 41, 40, 39, 38, 37, /*enable=*/ 28, /*cs=*/ 32, /*dc=*/ 30, /*reset=*/ 31); // Connect WR pin with GND
//U8G2_IST3020_ERC19264_F_8080 u8g2(U8G2_R0, 44, 43, 42, 41, 40, 39, 38, 37, /*enable=*/ 29, /*cs=*/ 32, /*dc=*/ 30, /*reset=*/ 31); // Connect RD pin with 3.3V
//U8G2_IST3020_ERC19264_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_IST7920_128X128_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Round display
//U8G2_IST7920_128X128_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Round display
//U8G2_LC7981_160X80_F_6800 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 18, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect RW with GND
//U8G2_LC7981_160X160_F_6800 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 18, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect RW with GND
//U8G2_LC7981_240X128_F_6800 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 18, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect RW with GND
//U8G2_LC7981_240X64_F_6800 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 18, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect RW with GND
//U8G2_SED1520_122X32_F u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*dc=*/ A0, /*e1=*/ A3, /*e2=*/ A2, /* reset=*/ A4); // Set R/W to low!
//U8G2_T6963_240X128_F_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable/wr=*/ 17, /*cs/ce=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect RD with +5V, FS0 and FS1 with GND
//U8G2_T6963_256X64_F_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable/wr=*/ 17, /*cs/ce=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect RD with +5V, FS0 and FS1 with GND
//U8G2_T6963_160X80_F_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable/wr=*/ 17, /*cs/ce=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect RD with +5V, FS0 and FS1 with GND
//U8G2_T6963_128X64_F_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable/wr=*/ 17, /*cs/ce=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect RD with +5V, FS0 and FS1 with GND
//U8G2_T6963_128X64_ALT_F_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable/wr=*/ 17, /*cs/ce=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect RD with +5V, FS0 and FS1 with GND
//U8G2_SED1330_240X128_F_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 17, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect RD with +5V, FG with GND
//U8G2_SED1330_240X128_F_6800 u8g2(U8G2_R0, 13, 11, 2, 3, 4, 5, 6, A4, /*enable=*/ 7, /*cs=*/ 10, /*dc=*/ 9, /*reset=*/ 8); // A0 is dc pin!
//U8G2_RA8835_NHD_240X128_F_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 17, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect /RD = E with +5V, enable is /WR = RW, FG with GND, 14=Uno Pin A0
//U8G2_RA8835_NHD_240X128_F_6800 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 17, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // A0 is dc pin, /WR = RW = GND, enable is /RD = E
//U8G2_UC1604_JLX19264_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_UC1604_JLX19264_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_UC1608_ERC24064_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // SW SPI, Due ERC24064-1 Test Setup
//U8G2_UC1608_ERC240120_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_UC1608_240X128_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // SW SPI, Due ERC24064-1 Test Setup
//U8G2_UC1610_EA_DOGXL160_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ U8X8_PIN_NONE);
//U8G2_UC1610_EA_DOGXL160_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ U8X8_PIN_NONE);
//U8G2_UC1611_EA_DOGM240_F_2ND_HW_I2C u8g2(U8G2_R0, /* reset=*/ 8); // Due, 2nd I2C, DOGM240 Test Board
//U8G2_UC1611_EA_DOGM240_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Due, SW SPI, DOGXL240 Test Board
//U8G2_UC1611_EA_DOGXL240_F_2ND_HW_I2C u8g2(U8G2_R0, /* reset=*/ 8); // Due, 2nd I2C, DOGXL240 Test Board
//U8G2_UC1611_EA_DOGXL240_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Due, SW SPI, DOGXL240 Test Board
//U8G2_UC1611_EW50850_F_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 18, /*cs=*/ 3, /*dc=*/ 16, /*reset=*/ 17); // 240x160, Connect RD/WR1 pin with 3.3V, CS is aktive high
//U8G2_UC1611_CG160160_F_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 18, /*cs=*/ 3, /*dc=*/ 16, /*reset=*/ 17); // Connect WR1 and CD1 pin with 3.3V, connect CS0 with cs, WR0 with enable, CD with dc
//U8G2_UC1638_160X128_F_4W_HW_SPI u8g2(U8G2_R2, /* cs=*/ 2, /* dc=*/ 3, /* reset=*/ 4); // Not tested
//U8G2_SSD1606_172X72_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // eInk/ePaper Display
//U8G2_SSD1607_200X200_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // eInk/ePaper Display, original LUT from embedded artists
//U8G2_SSD1607_GD_200X200_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Good Display
//U8G2_SSD1607_WS_200X200_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // Waveshare
//U8G2_IL3820_296X128_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // WaveShare 2.9 inch eInk/ePaper Display, enable 16 bit mode for this display!
//U8G2_IL3820_V2_296X128_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); // ePaper Display, lesser flickering and faster speed, enable 16 bit mode for this display!
//U8G2_MAX7219_64X8_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 11, /* data=*/ 12, /* cs=*/ 10, /* dc=*/ U8X8_PIN_NONE, /* reset=*/ U8X8_PIN_NONE);
//U8G2_MAX7219_32X8_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 11, /* data=*/ 12, /* cs=*/ 10, /* dc=*/ U8X8_PIN_NONE, /* reset=*/ U8X8_PIN_NONE);
//U8G2_MAX7219_8X8_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 11, /* data=*/ 12, /* cs=*/ 10, /* dc=*/ U8X8_PIN_NONE, /* reset=*/ U8X8_PIN_NONE);
//U8G2_LS013B7DH03_128X128_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ U8X8_PIN_NONE, /* reset=*/ 8); // there is no DC line for this display
//U8G2_LS027B7DH01_400X240_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ U8X8_PIN_NONE, /* reset=*/ 8); // there is no DC line for this display
//U8G2_LS013B7DH05_144X168_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ U8X8_PIN_NONE, /* reset=*/ 8); // there is no DC line for this display
//U8G2_ST7511_AVD_320X240_F_8080 u8g2(U8G2_R0, 13, 11, 2, 3, 4, 5, 6, A4, /*enable/WR=*/ 7, /*cs=*/ 10, /*dc=*/ 9, /*reset=*/ 8); // Enable U8g2 16Bit Mode and connect RD pin with 3.3V/5V
// End of constructor list
void setup(void) {
u8g2.begin();
u8g2.enableUTF8Print(); // enable UTF8 support for the Arduino print() function
WiFi.disconnect();
WiFi.mode(WIFI_OFF);
WiFi.forceSleepBegin();
}
void loop(void) {
u8g2.setFontDirection(0);
u8g2.clearBuffer();
u8g2.setFont(u8g2_font_6x13_t_cyrillic); // use chinese2 for all the glyphs of "你好世界"
u8g2.setCursor(0, 13);
u8g2.print(ESP.getChipId()); // Chinese "Hello World"
u8g2.setCursor(0, 52);
u8g2.setFont(u8g2_font_fub35_tn); // use chinese2 for all the glyphs of "你好世界"
u8g2.print("12:53"); // Chinese "Hello World"
u8g2.setFont(u8g2_font_wqy12_t_gb2312); // use chinese2 for all the glyphs of "你好世界"
u8g2.setCursor(0, 63);
// u8g2.print("Hello World!");
u8g2.print("你好世界你好世界你好世界你好世界 ");
u8g2.sendBuffer();
delay(1000);
u8g2.setCursor(0, 40);
// u8g2.print("Hello World!");
u8g2.print("AAAAA啊AAAA"); u8g2.sendBuffer(); delay(1000);
}
| [
"[email protected]"
] | |
f71baf5ba0ba5e116908367887f58bff8e07bc99 | 4077a34df856709bcf63eb0fbb6ce95eff3d9cd8 | /ishape.h | cf794d42566893969267186203f908eadd9c860a | [] | no_license | karennik98/slideshow | bb631ed38df60c60604f426c59e8faf03164141d | 499629aa93296cd45b92e214f914a78dd852077c | refs/heads/master | 2020-11-24T16:26:30.197807 | 2019-12-22T23:53:44 | 2019-12-22T23:53:44 | 228,245,100 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 249 | h | #ifndef ISHAPE_H
#define ISHAPE_H
#include <QString>
class IShape
{
public:
IShape(QString name)
: mName(name)
{}
QString getName() { return mName; }
virtual ~IShape() {}
protected:
QString mName;
};
#endif // ISHAPE_H
| [
"[email protected]"
] | |
4236b131b84420aa179eb0305fb37e4f66b32e3f | 549270020f6c8724e2ef1b12e38d11b025579f8d | /recipes/zpp_throwing/all/test_package/test_package.cpp | c723a245f1637cf7302f34903d29ca38ed07bac0 | [
"MIT"
] | permissive | conan-io/conan-center-index | 1bcec065ccd65aa38b1fed93fbd94d9d5fe6bc43 | 3b17e69bb4e5601a850b6e006e44775e690bac33 | refs/heads/master | 2023-08-31T11:34:45.403978 | 2023-08-31T11:13:23 | 2023-08-31T11:13:23 | 204,671,232 | 844 | 1,820 | MIT | 2023-09-14T21:22:42 | 2019-08-27T09:43:58 | Python | UTF-8 | C++ | false | false | 666 | cpp | #include <cstdlib>
#include <iostream>
#include "zpp_throwing.h"
zpp::throwing<int> foo(bool success) {
if (!success) {
// Throws an exception.
co_yield std::runtime_error("My runtime error");
}
// Returns a value.
co_return 1337;
}
int main() {
return zpp::try_catch([]() -> zpp::throwing<int> {
std::cout << "Hello World\n";
std::cout << co_await foo(false) << '\n';;
co_return 0;
}, [&](const std::exception & error) {
std::cout << "std exception caught: " << error.what() << '\n';
return 0;
}, [&]() {
std::cout << "Unknown exception\n";
return 0;
});
}
| [
"[email protected]"
] | |
eedb7361b096a8dc585c92b24e55b1fb90437b14 | 43a2fbc77f5cea2487c05c7679a30e15db9a3a50 | /Cpp/External/SDK/BP_RB_Rank02_RankDesc_classes.h | 10dc2fca0e1a1695a149b241ae140b8b8da1d6ba | [] | no_license | zH4x/SoT-Insider-SDK | 57e2e05ede34ca1fd90fc5904cf7a79f0259085c | 6bff738a1b701c34656546e333b7e59c98c63ad7 | refs/heads/main | 2023-06-09T23:10:32.929216 | 2021-07-07T01:34:27 | 2021-07-07T01:34:27 | 383,638,719 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 797 | h | #pragma once
// Name: SoT-Insider, Version: 1.102.2382.0
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass BP_RB_Rank02_RankDesc.BP_RB_Rank02_RankDesc_C
// 0x0000 (FullSize[0x00E0] - InheritedSize[0x00E0])
class UBP_RB_Rank02_RankDesc_C : public URankDesc
{
public:
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("BlueprintGeneratedClass BP_RB_Rank02_RankDesc.BP_RB_Rank02_RankDesc_C");
return ptr;
}
void AfterRead();
void BeforeDelete();
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"[email protected]"
] | |
63d1506de49732ed24f902fb411c7ca1ff9ad6fd | e104df78ab10c424b52c3cc37e6e5e7572a00d1e | /3rdparty/OpenGL/include/Simd/SimdSse2AddFeatureDifference.cpp | a140fad47c1b4eae1b4afc2fcee70dcf0f2d18a5 | [] | no_license | jsyang2207/ImageEvaluate | f50edc00b938f4ad9bd46e0cc68bc13b922f1600 | 59755d38fe48e169f2a02fca4e6f1929a8e5be6d | refs/heads/master | 2022-12-02T18:06:26.090997 | 2020-08-19T05:25:54 | 2020-08-19T05:25:54 | 288,387,109 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,057 | cpp | /*
* Simd Library (http://ermig1979.github.io/Simd).
*
* Copyright (c) 2011-2017 Yermalayeu Ihar.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "Simd/SimdMemory.h"
#include "Simd/SimdStore.h"
namespace Simd
{
#ifdef SIMD_SSE2_ENABLE
namespace Sse2
{
SIMD_INLINE __m128i FeatureDifference(__m128i value, __m128i lo, __m128i hi)
{
return _mm_max_epu8(_mm_subs_epu8(value, hi), _mm_subs_epu8(lo, value));
}
SIMD_INLINE __m128i ShiftedWeightedSquare16(__m128i difference, __m128i weight)
{
return _mm_mulhi_epu16(_mm_mullo_epi16(difference, difference), weight);
}
SIMD_INLINE __m128i ShiftedWeightedSquare8(__m128i difference, __m128i weight)
{
const __m128i lo = ShiftedWeightedSquare16(_mm_unpacklo_epi8(difference, K_ZERO), weight);
const __m128i hi = ShiftedWeightedSquare16(_mm_unpackhi_epi8(difference, K_ZERO), weight);
return _mm_packus_epi16(lo, hi);
}
template <bool align> SIMD_INLINE void AddFeatureDifference(const uint8_t * value, const uint8_t * lo, const uint8_t * hi,
uint8_t * difference, size_t offset, __m128i weight, __m128i mask)
{
const __m128i _value = Load<align>((__m128i*)(value + offset));
const __m128i _lo = Load<align>((__m128i*)(lo + offset));
const __m128i _hi = Load<align>((__m128i*)(hi + offset));
__m128i _difference = Load<align>((__m128i*)(difference + offset));
const __m128i featureDifference = FeatureDifference(_value, _lo, _hi);
const __m128i inc = _mm_and_si128(mask, ShiftedWeightedSquare8(featureDifference, weight));
Store<align>((__m128i*)(difference + offset), _mm_adds_epu8(_difference, inc));
}
template <bool align> void AddFeatureDifference(const uint8_t * value, size_t valueStride, size_t width, size_t height,
const uint8_t * lo, size_t loStride, const uint8_t * hi, size_t hiStride,
uint16_t weight, uint8_t * difference, size_t differenceStride)
{
assert(width >= A);
if (align)
{
assert(Aligned(value) && Aligned(valueStride));
assert(Aligned(lo) && Aligned(loStride));
assert(Aligned(hi) && Aligned(hiStride));
assert(Aligned(difference) && Aligned(differenceStride));
}
size_t alignedWidth = AlignLo(width, A);
__m128i tailMask = ShiftLeft(K_INV_ZERO, A - width + alignedWidth);
__m128i _weight = _mm_set1_epi16((short)weight);
for (size_t row = 0; row < height; ++row)
{
for (size_t col = 0; col < alignedWidth; col += A)
AddFeatureDifference<align>(value, lo, hi, difference, col, _weight, K_INV_ZERO);
if (alignedWidth != width)
AddFeatureDifference<false>(value, lo, hi, difference, width - A, _weight, tailMask);
value += valueStride;
lo += loStride;
hi += hiStride;
difference += differenceStride;
}
}
void AddFeatureDifference(const uint8_t * value, size_t valueStride, size_t width, size_t height,
const uint8_t * lo, size_t loStride, const uint8_t * hi, size_t hiStride,
uint16_t weight, uint8_t * difference, size_t differenceStride)
{
if (Aligned(value) && Aligned(valueStride) && Aligned(lo) && Aligned(loStride) &&
Aligned(hi) && Aligned(hiStride) && Aligned(difference) && Aligned(differenceStride))
AddFeatureDifference<true>(value, valueStride, width, height, lo, loStride, hi, hiStride, weight, difference, differenceStride);
else
AddFeatureDifference<false>(value, valueStride, width, height, lo, loStride, hi, hiStride, weight, difference, differenceStride);
}
}
#endif// SIMD_SSE2_ENABLE
}
| [
"[email protected]"
] | |
7854b78e34c35e437c64a3f2b05d8f942214f47b | 6b01517368d655e18759e5e3f09af183d0f68b35 | /httpdaemon.h | dc53f9d6c4e31d221d5e4b0d825adbe376f31ef5 | [
"Apache-2.0"
] | permissive | paulbarbu/http-daemon | d2317eeafbf56a2c22bdf976ad3f111c426473ba | 77eb81513250f1dca72626d62e6476d1c7e0898c | refs/heads/master | 2021-01-01T20:00:27.353222 | 2014-05-10T18:13:31 | 2014-05-10T18:13:31 | 11,590,558 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 270 | h | #ifndef HTTPDAEMON_H
#define HTTPDAEMON_H
#include <QtNetwork/QTcpServer>
class HTTPDaemon : public QTcpServer
{
Q_OBJECT
public:
explicit HTTPDaemon(QObject *parent = 0);
private:
void incomingConnection(int socketDescriptor);
};
#endif // HTTPDAEMON_H
| [
"[email protected]"
] | |
f32c6804a4e4a5ea80419e551ce916c28ee95839 | f81124e4a52878ceeb3e4b85afca44431ce68af2 | /re20_3/processor35/constant/polyMesh/faceProcAddressing | 45363ca5c241b0470af2fb0d1f3088cbb01d43ee | [] | no_license | chaseguy15/coe-of2 | 7f47a72987638e60fd7491ee1310ee6a153a5c10 | dc09e8d5f172489eaa32610e08e1ee7fc665068c | refs/heads/master | 2023-03-29T16:59:14.421456 | 2021-04-06T23:26:52 | 2021-04-06T23:26:52 | 355,040,336 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 26,555 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class labelList;
location "constant/polyMesh";
object faceProcAddressing;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
3907
(
14662
14663
14664
14665
14666
14667
14668
14669
14670
14671
14672
14673
14675
14676
15294
15295
15296
15297
15298
15299
15300
15301
15303
15773
15774
15775
15776
15777
15778
15779
15780
15782
16252
16253
16254
16255
16256
16257
16258
16259
16261
16731
16732
16733
16734
16735
16736
16737
16738
16740
17210
17211
17212
17213
17214
17215
17216
17217
17219
17689
17690
17691
17692
17693
17694
17695
17696
17698
18168
18169
18170
18171
18172
18173
18174
18175
18177
18647
18648
18649
18650
18651
18652
18653
18654
18656
19126
19127
19128
19129
19130
19131
19132
19133
19135
19605
19606
19607
19608
19609
19610
19611
19612
19613
19614
19616
20084
20086
20087
20088
20089
20090
20091
20092
20093
20095
20565
20566
20567
20568
20569
20570
20571
20572
20574
21044
21045
21046
21047
21048
21049
21050
21051
21053
21523
21524
21525
21526
21527
21528
21529
21530
21532
22002
22003
22004
22005
22006
22007
22008
22009
22011
22481
22482
22483
22484
22485
22486
22487
22488
22490
22960
22962
22963
22964
22965
22966
22967
22968
22969
22971
23441
23442
23443
23444
23445
23446
23447
23448
23450
23920
23921
23922
23923
23924
23925
23926
23927
23929
24399
24400
24401
24402
24403
24404
24405
24406
24408
24878
24879
24880
24881
24882
24883
24884
24885
24887
25357
25359
25360
25361
25362
25363
25364
25365
25366
25368
25838
25839
25840
25841
25842
25843
25844
25845
25847
26317
26318
26319
26320
26321
26322
26323
26324
26326
26796
26798
26799
26800
26801
26802
26803
26805
27277
27278
27279
27280
27281
27282
27283
27284
27286
27756
27757
27758
27759
27760
27761
27762
27763
27765
28235
28236
28237
28238
28239
28240
28241
28242
28244
28714
28715
28716
28717
28718
28719
28720
28721
28723
29194
29196
29197
29198
29199
29200
29201
29202
29203
29205
29676
29677
29678
29679
29680
29681
29682
29683
29685
30156
30157
30158
30159
30160
30161
30162
30163
30165
30636
30637
30638
30639
30640
30641
30642
30643
30645
31116
31117
31118
31119
31120
31121
31122
31123
31125
31596
31597
31598
31599
31600
31601
31602
31603
31605
32076
32077
32078
32079
32080
32081
32082
32083
32085
32556
32557
32558
32559
32560
32561
32562
32563
32565
33036
33037
33038
33039
33040
33041
33042
33043
33045
33516
33517
33518
33519
33520
33521
33522
33523
33525
33996
33997
33998
33999
34000
34001
34002
34003
34005
34476
34477
34478
34479
34480
34481
34482
34483
34485
34956
34957
34958
34959
34960
34961
34962
34963
34965
35436
35437
35438
35439
35440
35441
35442
35443
35445
35916
35917
35918
35919
35920
35921
35922
35923
35925
36396
36397
36398
36399
36400
36401
36402
36403
36405
36876
36877
36878
36879
36880
36881
36882
36883
36885
37356
37357
37358
37359
37360
37361
37362
37363
37365
37836
37837
37838
37839
37840
37841
37842
37843
37845
38316
38317
38318
38319
38320
38321
38322
38323
38325
38796
38797
38798
38799
38800
38801
38802
38803
38805
39276
39277
39278
39279
39280
39281
39282
39283
39285
39756
39757
39758
39759
39760
39761
39762
39763
39765
40236
40237
40238
40239
40240
40241
40242
40243
40245
40716
40717
40718
40719
40720
40721
40722
40723
40725
41196
41197
41198
41199
41200
41201
41202
41203
41205
41676
41677
41678
41679
41680
41681
41682
41683
41685
42156
42157
42158
42159
42160
42161
42162
42163
42165
42636
42637
42638
42639
42640
42641
42642
42643
42645
43116
43117
43118
43119
43120
43121
43122
43123
43125
43596
43597
43598
43599
43600
43601
43602
43603
43605
44076
44077
44078
44079
44080
44081
44082
44083
44085
44556
44557
44558
44559
44560
44561
44562
44563
44565
45036
45037
45038
45039
45040
45041
45042
45043
45045
45516
45517
45518
45519
45520
45521
45522
45523
45525
45996
45997
45998
45999
46000
46001
46002
46003
46005
46476
46477
46478
46479
46480
46481
46482
46483
46485
46956
46957
46958
46959
46960
46961
46962
46963
46965
47436
47437
47438
47439
47440
47441
47442
47443
47445
47916
47917
47918
47919
47920
47921
47922
47923
47925
48396
48397
48398
48399
48400
48401
48402
48403
48405
48876
48877
48878
48879
48880
48881
48882
48883
48885
49356
49357
49358
49359
49360
49361
49362
49363
49365
49836
49837
49838
49839
49840
49841
49842
49843
49845
50316
50317
50318
50319
50320
50321
50322
50323
50325
50796
50797
50798
50799
50800
50801
50802
50803
50805
51276
51277
51278
51279
51280
51281
51282
51283
51285
51756
51757
51758
51759
51760
51761
51762
51763
51765
52236
52237
52238
52239
52240
52241
52242
52243
52245
52716
52717
52718
52719
52720
52721
52722
52723
52725
53196
53197
53198
53199
53200
53201
53202
53203
53205
53676
53677
53678
53679
53680
53681
53682
53683
53685
54156
54157
54158
54159
54160
54161
54162
54163
54165
54636
54637
54638
54639
54640
54641
54642
54643
54645
55116
55117
55118
55119
55120
55121
55122
55123
55125
55596
55597
55598
55599
55600
55601
55602
55603
55605
56076
56077
56078
56079
56080
56081
56082
56083
56085
56556
56557
56558
56559
56560
56561
56562
56563
56565
57036
57037
57038
57039
57040
57041
57042
57043
57045
57424
57425
57426
57427
86241
86242
86243
86244
86245
86246
86247
86248
86249
86250
86251
86252
86253
86254
86255
86256
86257
86258
86259
86260
86261
86262
86263
86264
86265
86266
86267
86268
86269
86270
86271
86272
86273
86274
86275
86276
86277
86278
86279
86280
86281
86282
86283
86284
86285
86286
86287
86288
86289
86290
86291
86292
86293
86294
86295
86296
86297
86298
86299
86300
86301
86302
86303
86304
86305
86306
86307
86308
86309
86310
86311
86312
86313
86314
86315
86316
86317
86318
86319
86320
86321
86322
86323
86324
86325
86326
86327
86328
86329
86330
86331
86332
86333
86334
86335
86336
86337
86338
86339
86340
86341
86342
86343
86344
86345
86346
86347
86348
86349
86350
86351
86352
86353
86354
86355
86356
86357
86358
86359
86360
86361
86362
86363
86364
86365
86366
86367
86368
86369
86370
86371
86372
86373
86374
86375
86376
86377
86378
86379
86380
86381
86382
86383
86384
86385
86386
86387
86388
86389
86390
86391
86392
86393
86394
86395
86396
86397
86398
86399
86400
86401
86402
86403
86404
86405
86406
86407
86408
86409
86410
86411
86412
86413
86414
86415
86416
86417
86418
86419
86420
86421
86422
86423
86424
86425
86426
86427
86428
86429
86430
86431
86432
86433
86434
86435
86436
86437
86438
86439
86440
86441
86442
86443
86444
86445
86446
86447
86448
86449
86450
86451
86452
86453
86454
86455
86456
86457
86458
86459
86460
86461
86462
86463
86464
86465
86466
86467
86468
86469
86470
86471
86472
86473
86474
86475
86476
86477
86478
86479
86480
86481
86482
86483
86484
86485
86486
86487
86488
86489
86490
86491
86492
86493
86494
86495
86496
86497
86498
86499
86500
86501
86502
86503
86504
86505
86506
86507
86508
86509
86510
86511
86512
86513
86514
86515
86516
86517
86518
86519
86520
86521
86522
86523
86524
86525
86526
86527
86528
86529
86530
86531
86532
86533
86534
86535
86536
86537
86538
86539
86540
86541
86542
86543
86544
86545
86546
86547
86548
86549
86550
86551
86552
86553
86554
86555
86556
86557
86558
86559
86560
86561
86562
86563
86564
86565
86566
86567
86568
86569
86570
86571
86572
86573
86574
86575
86576
86577
86578
86579
86580
86581
86582
86583
86584
86585
86586
86587
86588
86589
86590
86591
86592
86593
86594
86595
86596
86597
86598
86599
86600
86601
86602
86603
86604
86605
86606
86607
86608
86609
86610
86611
86612
86613
86614
86615
86616
86617
86618
86619
86620
86621
86622
86623
86624
86625
86626
86627
86628
86629
86630
86631
86632
86633
86634
86635
86636
86637
86638
86639
86640
86641
86642
86643
86644
86645
86646
86647
86648
86649
86650
86651
86652
86653
86654
86655
86656
86657
86658
86659
86660
86661
86662
86663
86664
86665
86666
86667
86668
86669
86670
86671
86672
86673
86674
86675
86676
86677
86678
86679
86680
86681
86682
86683
86684
86685
86686
86687
86688
86689
86690
86691
86692
86693
86694
86695
86696
86697
86698
86699
86700
86701
86702
86703
86704
86705
86706
86707
86708
86709
86710
86711
86712
86713
86714
86715
86716
86717
86718
86719
86720
86721
86722
86723
86724
86725
86726
86727
86728
86729
86730
86731
86732
86733
86734
86735
86736
86737
86738
86739
86740
86741
86742
86743
86744
86745
86746
86747
86748
86749
86750
86751
86752
86753
86754
86755
86756
86757
86758
86759
86760
86762
86764
86766
86768
86770
86772
86774
86776
86778
86780
86782
86784
86786
86788
86790
86792
86794
86796
86798
86800
86802
86804
86806
86808
86810
86812
86814
86816
86818
86820
86822
86824
86826
86828
86830
86832
86834
86836
86838
86841
86844
86846
86848
86850
86852
86854
86856
86858
86860
86862
86864
86866
86868
86870
86872
86874
86876
104243
104244
104245
104246
104247
104248
104249
104250
104252
104722
104723
104724
104725
104726
104727
104728
104729
104731
105201
105202
105203
105204
105205
105206
105207
105208
105210
105678
105679
105680
105681
105682
105683
105684
105685
105686
105687
106157
106158
106159
106160
106161
106162
106163
106164
106166
106636
106637
106638
106639
106640
106641
106642
106643
106645
107115
107116
107117
107118
107119
107120
107121
107122
107124
107592
107593
107594
107595
107596
107597
107598
107599
107600
107601
108071
108072
108073
108074
108075
108076
108077
108078
108080
108550
108551
108552
108553
108554
108555
108556
108557
108559
109029
109030
109031
109032
109033
109034
109035
109036
109038
109508
109509
109510
109511
109512
109513
109514
109515
109517
109985
109986
109987
109988
109989
109990
109991
109992
109993
109994
110464
110465
110466
110467
110468
110469
110470
110471
110473
110943
110944
110945
110946
110947
110948
110949
110950
110952
111422
111423
111424
111425
111426
111427
111428
111429
111431
111901
111902
111903
111904
111905
111906
111907
111908
111910
112380
112381
112382
112383
112384
112385
112386
112387
112389
112857
112858
112859
112860
112861
112862
112863
112864
112865
112866
113336
113337
113338
113339
113340
113341
113342
113343
113345
113815
113816
113817
113818
113819
113820
113821
113822
113824
114294
114295
114296
114297
114298
114299
114300
114301
114303
114773
114774
114775
114776
114777
114778
114779
114780
114782
115252
115253
115254
115255
115256
115257
115258
115259
115261
115731
115732
115733
115734
115735
115736
115737
115738
115740
116210
116211
116212
116213
116214
116215
116216
116217
116219
116689
116690
116691
116692
116693
116694
116695
116696
116698
117168
117169
117170
117171
117172
117173
117174
117175
117177
117647
117648
117649
117650
117651
117652
117653
117654
117656
118039
118040
118041
118042
118953
118954
118955
118956
118957
119262
119263
119264
119265
119266
136421
136422
136423
136424
136425
136426
136427
136428
136429
136430
136431
136432
136451
136452
136453
136454
136455
136456
136457
136458
136459
136460
136461
136462
136463
136464
136465
136466
136467
136468
136481
136482
136483
136484
136485
136486
136487
136488
136489
136490
136491
136492
136493
136494
136495
136496
136497
136498
136499
136500
136501
136502
136503
136511
136512
136513
136514
136515
136516
136517
136518
136519
136520
136521
136522
136523
136524
136525
136526
136527
136528
136529
136530
136531
136532
136533
136534
136535
136536
136541
136542
136543
136544
136545
136546
136547
136548
136549
136550
136551
136552
136553
136554
136555
136556
136557
136558
136559
136560
136561
136562
136563
136564
136565
136566
136567
136568
136569
136570
136581
136582
136583
136584
136585
136586
136587
136588
136589
136590
136591
136592
136593
136594
136595
136596
136597
136598
136599
136600
136618
136619
136620
136621
136622
136623
136624
136625
136626
136627
136628
136629
136630
136653
136654
136655
136656
136657
136658
136659
136660
136687
136688
136689
136690
143621
143622
143623
143624
143625
143626
143627
143628
143629
143630
143631
143632
143651
143652
143653
143654
143655
143656
143657
143658
143659
143660
143661
143662
143663
143664
143665
143666
143667
143668
143681
143682
143683
143684
143685
143686
143687
143688
143689
143690
143691
143692
143693
143694
143695
143696
143697
143698
143699
143700
143701
143702
143703
143711
143712
143713
143714
143715
143716
143717
143718
143719
143720
143721
143722
143723
143724
143725
143726
143727
143728
143729
143730
143731
143732
143733
143734
143735
143736
143741
143742
143743
143744
143745
143746
143747
143748
143749
143750
143751
143752
143753
143754
143755
143756
143757
143758
143759
143760
143761
143762
143763
143764
143765
143766
143767
143768
143769
143770
143781
143782
143783
143784
143785
143786
143787
143788
143789
143790
143791
143792
143793
143794
143795
143796
143797
143798
143799
143800
143818
143819
143820
143821
143822
143823
143824
143825
143826
143827
143828
143829
143830
143853
143854
143855
143856
143857
143858
143859
143860
143887
143888
143889
143890
153671
153731
153732
153733
153734
153735
153736
153737
153738
153739
153740
153741
153742
153743
153744
153745
153746
153747
153748
153749
153750
153751
153752
153753
153754
153755
153756
153757
153758
153759
153760
153761
153762
153763
153764
153765
153766
153767
153768
153769
153770
153771
153772
153773
153774
153775
153776
153777
153778
153779
153780
153781
153782
153783
153784
153785
153786
153787
153788
153789
153790
153791
153792
153793
153794
153795
153796
153797
153798
153799
153800
153801
153802
153803
153804
153805
153806
153807
153808
153809
153810
153811
153812
153813
153814
153815
153816
153817
153818
153819
153820
153821
153822
153823
153824
153825
153826
153827
153828
153829
153830
153831
153832
153833
153834
153835
153836
153837
153838
153839
153840
153841
153842
153843
153844
153845
153846
153847
153848
153849
153850
153851
153852
153853
153854
153855
153856
153857
153858
153859
153860
153861
153862
153863
153864
153865
153866
153867
153868
153869
153870
153871
153872
153873
153874
153875
153876
153877
153878
153879
153880
153881
153882
153883
153884
153885
153886
153887
153888
153889
153890
153891
153892
153893
153894
153895
153896
153897
153898
153899
153900
153901
153902
153903
153904
153905
153906
153907
153908
153909
153910
153911
153912
153913
153914
153915
153916
153917
153918
153919
153920
153921
153922
153923
153924
153925
153926
153927
153928
153929
153930
153931
153932
153933
153934
153935
153936
153937
153938
153939
153940
153941
153942
153943
153944
153945
153946
153947
153948
153949
153950
153951
153952
153953
153954
153955
153956
153957
153958
153959
153960
153961
153962
153963
153964
153965
153966
153967
153968
153969
153970
153971
153972
153973
153974
153975
153976
153977
153978
153979
153980
153981
153982
153983
153984
153985
153986
153987
153988
153989
153990
153991
153992
153993
153994
153995
153996
153997
153998
153999
154000
154001
154002
154003
154004
154005
154006
154007
154008
154009
154010
154011
154012
154013
154014
154015
154016
154017
154018
154019
154020
154021
154022
154023
154024
154025
154026
154027
154028
154029
154030
168071
168131
168132
168133
168134
168135
168136
168137
168138
168139
168140
168141
168142
168143
168144
168145
168146
168147
168148
168149
168150
168151
168152
168153
168154
168155
168156
168157
168158
168159
168160
168161
168162
168163
168164
168165
168166
168167
168168
168169
168170
168171
168172
168173
168174
168175
168176
168177
168178
168179
168180
168181
168182
168183
168184
168185
168186
168187
168188
168189
168190
168191
168192
168193
168194
168195
168196
168197
168198
168199
168200
168201
168202
168203
168204
168205
168206
168207
168208
168209
168210
168211
168212
168213
168214
168215
168216
168217
168218
168219
168220
168221
168222
168223
168224
168225
168226
168227
168228
168229
168230
168231
168232
168233
168234
168235
168236
168237
168238
168239
168240
168241
168242
168243
168244
168245
168246
168247
168248
168249
168250
168251
168252
168253
168254
168255
168256
168257
168258
168259
168260
168261
168262
168263
168264
168265
168266
168267
168268
168269
168270
168271
168272
168273
168274
168275
168276
168277
168278
168279
168280
168281
168282
168283
168284
168285
168286
168287
168288
168289
168290
168291
168292
168293
168294
168295
168296
168297
168298
168299
168300
168301
168302
168303
168304
168305
168306
168307
168308
168309
168310
168311
168312
168313
168314
168315
168316
168317
168318
168319
168320
168321
168322
168323
168324
168325
168326
168327
168328
168329
168330
168331
168332
168333
168334
168335
168336
168337
168338
168339
168340
168341
168342
168343
168344
168345
168346
168347
168348
168349
168350
168351
168352
168353
168354
168355
168356
168357
168358
168359
168360
168361
168362
168363
168364
168365
168366
168367
168368
168369
168370
168371
168372
168373
168374
168375
168376
168377
168378
168379
168380
168381
168382
168383
168384
168385
168386
168387
168388
168389
168390
168391
168392
168393
168394
168395
168396
168397
168398
168399
168400
168401
168402
168403
168404
168405
168406
168407
168408
168409
168410
168411
168412
168413
168414
168415
168416
168417
168418
168419
168420
168421
168422
168423
168424
168425
168426
168427
168428
168429
168430
195102
195103
195104
195105
195106
195107
195342
195343
195344
195345
195346
195347
195582
195583
195584
195585
195586
195587
195822
195823
195824
195825
195826
195827
196062
196063
196064
196065
196066
196067
196302
196303
196304
196305
196306
196307
196542
196543
196544
196545
196546
196547
196782
196783
196784
196785
196786
196787
197022
197023
197024
197025
197026
197027
197262
197263
197264
197265
197266
197267
197502
197503
197504
197505
197506
197507
197742
197743
197744
197745
197746
197747
197982
197983
197984
197985
197986
197987
198222
198223
198224
198225
198226
198227
198462
198463
198464
198465
198466
198467
198702
198703
198704
198705
198706
198707
198942
198943
198944
198945
198946
198947
199182
199183
199184
199185
199186
199187
199422
199423
199424
199425
199426
199427
199662
199663
199664
199665
199666
199902
199903
199904
199905
199906
200142
200143
200144
200145
200146
200382
200383
200384
200385
200386
200622
200623
200624
200625
200626
200862
200863
200864
200865
200866
201102
201103
201104
201105
201106
201342
201343
201344
201345
201346
201582
201583
201584
201585
201586
201822
201823
201824
201825
201826
202062
202063
202064
202065
202066
202302
202303
202304
202305
202306
202542
202543
202544
202545
202546
202782
202783
202784
202785
202786
203022
203023
203024
203025
203026
203262
203263
203264
203265
203266
203502
203503
203504
203505
203506
203742
203743
203744
203745
203746
203982
203983
203984
203985
203986
204222
204223
204224
204225
204226
204462
204463
204464
204465
204466
204702
204703
204704
204705
204706
204942
204943
204944
204945
204946
205182
205183
205184
205185
205186
205422
205423
205424
205425
205426
205662
205663
205664
205665
205666
205902
205903
205904
205905
205906
206142
206143
206144
206145
206146
206382
206383
206384
206385
206386
206622
206623
206624
206625
206626
206862
206863
206864
206865
206866
207102
207103
207104
207105
207106
207342
207343
207344
207345
207346
207582
207583
207584
207585
207586
207822
207823
207824
207825
207826
208062
208063
208064
208065
208066
208302
208303
208304
208305
208306
208542
208543
208544
208545
208546
208782
208783
208784
208785
208786
209022
209023
209024
209025
209026
209262
209263
209264
209265
209266
209502
209503
209504
209505
209506
209507
209742
209743
209744
209745
209746
209747
209982
209983
209984
209985
209986
209987
210222
210223
210224
210225
210226
210227
210462
210463
210464
210465
210466
210467
210702
210703
210704
210705
210706
210707
210942
210943
210944
210945
210946
210947
211182
211183
211184
211185
211186
211187
211422
211423
211424
211425
211426
211427
211662
211663
211664
211665
211666
211667
211902
211903
211904
211905
211906
211907
212142
212143
212144
212145
212146
212147
212382
212383
212384
212385
212386
212387
212622
212623
212624
212625
212626
212627
212862
212863
212864
212865
212866
212867
213102
213103
213104
213105
213106
213107
213342
213343
213344
213345
213346
213347
213582
213583
213584
213585
213586
213587
213822
213823
213824
213825
213826
213827
214062
214063
214064
214065
214066
214302
214303
214304
214305
214306
214542
214543
214544
214545
214546
214782
214783
214784
214785
214786
215022
215023
215024
215025
215026
215262
215263
215264
215265
215266
215502
215503
215504
215505
215506
215742
215743
215744
215745
215746
215982
215983
215984
215985
215986
216222
216223
216224
216225
216226
216462
216463
216464
216465
216466
216702
216703
216704
216705
216706
216942
216943
216944
216945
216946
217182
217183
217184
217185
217186
217422
217423
217424
217425
217426
217662
217663
217664
217665
217666
217902
217903
217904
217905
217906
218142
218143
218144
218145
218146
218382
218383
218384
218385
218386
218622
218623
218624
218625
218626
218862
218863
218864
218865
218866
219102
219103
219104
219105
219106
219342
219343
219344
219345
219346
219582
219583
219584
219585
219586
219822
219823
219824
219825
219826
220062
220063
220064
220065
220066
220302
220303
220304
220305
220306
220542
220543
220544
220545
220546
220782
220783
220784
220785
220786
221022
221023
221024
221025
221026
221262
221263
221264
221265
221266
221502
221503
221504
221505
221506
221742
221743
221744
221745
221746
221982
221983
221984
221985
221986
222222
222223
222224
222225
222226
222462
222463
222464
222465
222466
222702
222703
222704
222705
222706
222942
222943
222944
222945
222946
223182
223183
223184
223185
223186
223422
223423
223424
223425
223426
223662
223663
223664
223665
223666
226439
226440
226441
226442
226443
226444
226445
226446
226447
226448
226449
226450
226463
226464
226465
226466
226467
226468
226469
226470
226471
226472
226473
226474
226475
226476
226477
226478
226479
226480
226488
226489
226490
226491
226492
226493
226494
226495
226496
226497
226498
226499
226500
226501
226502
226503
226504
226505
226506
226507
226508
226509
226510
226514
226515
226516
226517
226518
226519
226520
226521
226522
226523
226524
226525
226526
226527
226528
226529
226530
226531
226532
226533
226534
226535
226536
226537
226538
226539
226540
226541
226542
226543
226544
226545
226546
226547
226548
226549
226550
226551
226552
226553
226554
226555
226556
226557
226558
226559
226560
226561
226562
226563
226564
226565
226566
226567
226568
226569
226570
226571
226572
226573
226574
226575
226576
226577
226578
226579
226580
226581
226582
226583
226584
226585
226586
226587
226588
226589
226601
226602
226603
226604
226605
226606
226607
226608
226609
226610
226611
226612
226613
226631
226632
226633
226634
226635
226636
226637
226638
226661
226662
226663
226664
233639
233640
233641
233642
233643
233644
233645
233646
233647
233648
233649
233650
233663
233664
233665
233666
233667
233668
233669
233670
233671
233672
233673
233674
233675
233676
233677
233678
233679
233680
233688
233689
233690
233691
233692
233693
233694
233695
233696
233697
233698
233699
233700
233701
233702
233703
233704
233705
233706
233707
233708
233709
233710
233714
233715
233716
233717
233718
233719
233720
233721
233722
233723
233724
233725
233726
233727
233728
233729
233730
233731
233732
233733
233734
233735
233736
233737
233738
233739
233740
233741
233742
233743
233744
233745
233746
233747
233748
233749
233750
233751
233752
233753
233754
233755
233756
233757
233758
233759
233760
233761
233762
233763
233764
233765
233766
233767
233768
233769
233770
233771
233772
233773
233774
233775
233776
233777
233778
233779
233780
233781
233782
233783
233784
233785
233786
233787
233788
233789
233801
233802
233803
233804
233805
233806
233807
233808
233809
233810
233811
233812
233813
233831
233832
233833
233834
233835
233836
233837
233838
233861
233862
233863
233864
-14659
-15292
-15771
-16250
-16729
-17208
-17687
-18166
-18645
-19124
-19603
-20082
20085
-20563
-21042
-21521
-22000
-22479
-22958
22961
-23439
-23918
-24397
-24876
-25355
25358
-25836
-26315
-26794
26797
-27275
-27754
-28233
-28712
-29192
29195
-29674
-30154
-30634
-31114
-31594
-32074
-32554
-33034
-33514
-33994
-34474
-34954
-35434
-35914
-36394
-36874
-37354
-37834
-38314
-38794
-39274
-39754
-40234
-40714
-41194
-41674
-42154
-42634
-43114
-43594
-44074
-44554
-45034
-45514
-45994
-46474
-46954
-47434
-47914
-48394
-48874
-49354
-49834
-50314
-50794
-51274
-51754
-52234
-52714
-53194
-53674
-54154
-54634
-55114
-55594
-56074
-56554
-57034
-57423
-86122
-86125
-86127
-86129
-86131
-86133
-86135
-86137
-86139
-86141
-86143
-86145
-86147
-86149
-86151
-86153
-86155
-86157
-86159
-86161
-86163
-86165
-86167
-86169
-86171
-86173
-86175
-86177
-86179
-86181
-86183
-86185
-86187
-86189
-86191
-86193
-86195
-86197
-86199
-86201
-86203
-86205
-86207
-86209
-86211
-86213
-86215
-86217
-86219
-86221
-86223
-86225
-86227
-86229
-86231
-86233
-86235
-86237
-86239
-86240
-104241
-104720
-105199
-105200
-105676
-106155
-106634
-107113
-107114
-107590
-108069
-108548
-109027
-109506
-109507
-109983
-110462
-110941
-111420
-111899
-112378
-112379
-112855
-113334
-113813
-114292
-114771
-115250
-115729
-116208
-116687
-117166
-117645
-118038
14674
15302
15781
16260
16739
17218
17697
18176
18655
19134
-19137
19615
20094
20573
21052
21531
22010
22489
-22492
22970
23449
23928
24407
24886
-24889
25367
25846
26325
26804
-26807
27285
27764
28243
28722
-28725
29204
29684
30164
30644
31124
31604
32084
32564
33044
33524
34004
34484
34964
35444
35924
36404
36884
37364
37844
38324
38804
39284
39764
40244
40724
41204
41684
42164
42644
43124
43604
44084
44564
45044
45524
46004
46484
46964
47444
47924
48404
48884
49364
49844
50324
50804
51284
51764
52244
52724
53204
53684
54164
54644
55124
55604
56084
56564
57044
57428
86761
86763
86765
86767
86769
86771
86773
86775
86777
86779
86781
86783
86785
86787
86789
86791
86793
86795
86797
86799
86801
86803
86805
86807
86809
86811
86813
86815
86817
86819
86821
86823
86825
86827
86829
86831
86833
86835
86837
86839
86840
86842
86843
86845
86847
86849
86851
86853
86855
86857
86859
86861
86863
86865
86867
86869
86871
86873
86875
86877
86878
86879
104251
104730
105209
105688
105689
106165
106644
107123
107602
107603
108079
108558
109037
109516
109995
109996
110472
110951
111430
111909
112388
112867
112868
113344
113823
114302
114781
115260
115739
116218
116697
117176
117655
118043
)
// ************************************************************************* //
| [
"[email protected]"
] | ||
dd8d757ee2af4f162ff11201f3b04c3a910066e5 | b2531eced9be01fe6c8daf6949633454f24db47f | /CISCO/MFCApplication1/CXMLNode.h | 766cbf853ffef246840189e43be09805d0c32795 | [] | no_license | CheretaevIvan/VisualStudioProjects | 6f7575c97ead4b118a21d70c5a3ba1895e955cb5 | abdcac001e0d73387e2f7a704b8ea69e30ade2be | refs/heads/master | 2021-01-10T18:17:30.379719 | 2016-03-20T21:10:21 | 2016-03-20T21:10:21 | 54,338,383 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 6,528 | h | // Автоматически создаваемые классы-оболочки IDispatch, созданные при помощи мастера добавления класса из библиотеки типов
#import "C:\\Program Files (x86)\\Microsoft Office\\Office15\\MSWORD.OLB" no_namespace
// CXMLNode класс-оболочка
class CXMLNode : public COleDispatchDriver
{
public:
CXMLNode(){} // Вызывает конструктор по умолчанию для COleDispatchDriver
CXMLNode(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
CXMLNode(const CXMLNode& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
// Атрибуты
public:
// Операции
public:
// XMLNode методы
public:
CString get_BaseName()
{
CString result;
InvokeHelper(0x0, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
LPDISPATCH get_Application()
{
LPDISPATCH result;
InvokeHelper(0x3e8, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL);
return result;
}
long get_Creator()
{
long result;
InvokeHelper(0x3e9, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
LPDISPATCH get_Parent()
{
LPDISPATCH result;
InvokeHelper(0x3ea, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL);
return result;
}
LPDISPATCH get_Range()
{
LPDISPATCH result;
InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL);
return result;
}
CString get_Text()
{
CString result;
InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_Text(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR;
InvokeHelper(0x2, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_NamespaceURI()
{
CString result;
InvokeHelper(0x4, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
CString get_XML(BOOL DataOnly)
{
CString result;
static BYTE parms[] = VTS_BOOL;
InvokeHelper(0x5, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, parms, DataOnly);
return result;
}
LPDISPATCH get_NextSibling()
{
LPDISPATCH result;
InvokeHelper(0x6, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL);
return result;
}
LPDISPATCH get_PreviousSibling()
{
LPDISPATCH result;
InvokeHelper(0x7, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL);
return result;
}
LPDISPATCH get_ParentNode()
{
LPDISPATCH result;
InvokeHelper(0x8, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL);
return result;
}
LPDISPATCH get_FirstChild()
{
LPDISPATCH result;
InvokeHelper(0x9, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL);
return result;
}
LPDISPATCH get_LastChild()
{
LPDISPATCH result;
InvokeHelper(0xa, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL);
return result;
}
LPDISPATCH get_OwnerDocument()
{
LPDISPATCH result;
InvokeHelper(0xb, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL);
return result;
}
long get_NodeType()
{
long result;
InvokeHelper(0xc, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
LPDISPATCH get_ChildNodes()
{
LPDISPATCH result;
InvokeHelper(0xd, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL);
return result;
}
LPDISPATCH get_Attributes()
{
LPDISPATCH result;
InvokeHelper(0xf, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL);
return result;
}
CString get_NodeValue()
{
CString result;
InvokeHelper(0x10, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_NodeValue(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR;
InvokeHelper(0x10, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_HasChildNodes()
{
BOOL result;
InvokeHelper(0x11, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
LPDISPATCH SelectSingleNode(LPCTSTR XPath, LPCTSTR PrefixMapping, BOOL FastSearchSkippingTextNodes)
{
LPDISPATCH result;
static BYTE parms[] = VTS_BSTR VTS_BSTR VTS_BOOL;
InvokeHelper(0x12, DISPATCH_METHOD, VT_DISPATCH, (void*)&result, parms, XPath, PrefixMapping, FastSearchSkippingTextNodes);
return result;
}
LPDISPATCH SelectNodes(LPCTSTR XPath, LPCTSTR PrefixMapping, BOOL FastSearchSkippingTextNodes)
{
LPDISPATCH result;
static BYTE parms[] = VTS_BSTR VTS_BSTR VTS_BOOL;
InvokeHelper(0x13, DISPATCH_METHOD, VT_DISPATCH, (void*)&result, parms, XPath, PrefixMapping, FastSearchSkippingTextNodes);
return result;
}
LPDISPATCH get_ChildNodeSuggestions()
{
LPDISPATCH result;
InvokeHelper(0x14, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL);
return result;
}
long get_Level()
{
long result;
InvokeHelper(0x15, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
long get_ValidationStatus()
{
long result;
InvokeHelper(0x16, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
LPDISPATCH get_SmartTag()
{
LPDISPATCH result;
InvokeHelper(0x17, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL);
return result;
}
CString get_ValidationErrorText(BOOL Advanced)
{
CString result;
static BYTE parms[] = VTS_BOOL;
InvokeHelper(0x18, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, parms, Advanced);
return result;
}
CString get_PlaceholderText()
{
CString result;
InvokeHelper(0x19, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_PlaceholderText(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR;
InvokeHelper(0x19, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
void Delete()
{
InvokeHelper(0x64, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
}
void Copy()
{
InvokeHelper(0x65, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
}
void RemoveChild(LPDISPATCH ChildElement)
{
static BYTE parms[] = VTS_DISPATCH;
InvokeHelper(0x66, DISPATCH_METHOD, VT_EMPTY, NULL, parms, ChildElement);
}
void Cut()
{
InvokeHelper(0x67, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
}
void Validate()
{
InvokeHelper(0x68, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
}
void SetValidationError(long Status, VARIANT * ErrorText, BOOL ClearedAutomatically)
{
static BYTE parms[] = VTS_I4 VTS_PVARIANT VTS_BOOL;
InvokeHelper(0x69, DISPATCH_METHOD, VT_EMPTY, NULL, parms, Status, ErrorText, ClearedAutomatically);
}
CString get_WordOpenXML()
{
CString result;
InvokeHelper(0x6a, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
// XMLNode свойства
public:
};
| [
"[email protected]"
] | |
3768074edf54238e6eba6d5d6d8df54676abc426 | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function14044/function14044_schedule_5/function14044_schedule_5.cpp | 27566ecbf5a395ab49a09edb5833e77e97c92993 | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 910 | cpp | #include <tiramisu/tiramisu.h>
using namespace tiramisu;
int main(int argc, char **argv){
tiramisu::init("function14044_schedule_5");
constant c0("c0", 8192), c1("c1", 8192);
var i0("i0", 0, c0), i1("i1", 0, c1), i100("i100", 1, c0 - 1), i101("i101", 1, c1 - 1), i01("i01"), i02("i02"), i03("i03"), i04("i04");
input input0("input0", {i0, i1}, p_int32);
computation comp0("comp0", {i100, i101}, (input0(i100, i101) - input0(i100 + 1, i101) + input0(i100 - 1, i101)));
comp0.tile(i100, i101, 64, 128, i01, i02, i03, i04);
comp0.parallelize(i01);
buffer buf00("buf00", {8192, 8192}, p_int32, a_input);
buffer buf0("buf0", {8192, 8192}, p_int32, a_output);
input0.store_in(&buf00);
comp0.store_in(&buf0);
tiramisu::codegen({&buf00, &buf0}, "../data/programs/function14044/function14044_schedule_5/function14044_schedule_5.o");
return 0;
} | [
"[email protected]"
] | |
0879ce64734228681e50557c06f42164f1351636 | 933f154b469178fb9c3dd648bc985960c19290db | /initial/57_InsertInterval/Solution.cpp | 98cca8ee0c25bc2774c5d18401113e763c24bf76 | [] | no_license | zywangzy/LeetCode | c5468ea8b108e9c1dec125fb07a5841348693f96 | df2cba28ed47938073ab1ffc984af158e3de7611 | refs/heads/master | 2021-09-29T13:39:58.151078 | 2018-11-24T22:35:04 | 2018-11-24T22:35:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,253 | cpp | #include "../IOLib.hpp"
/**
* Definition for an interval.
**/
struct Interval {
int start;
int end;
Interval() : start(0), end(0) {}
Interval(int s, int e) : start(s), end(e) {}
};
class Solution {
public:
vector<Interval> insert(vector<Interval>& intervals, Interval newInterval) {
if(intervals.size() == 0){
intervals.push_back(newInterval);
return intervals;
}
int i = 0;
while(i < intervals.size() &&
intervals[i].end < newInterval.start)
i++;
if(i == intervals.size()){
intervals.push_back(newInterval);
return intervals;
}
int start_idx = i, start = min(newInterval.start, intervals[start_idx].start);
while(i < intervals.size() &&
intervals[i].start <= newInterval.end)
i++;
//if(i == intervals.size()) i--;
int end_idx = i - 1, end = max(newInterval.end, intervals[end_idx].end);
intervals.erase(intervals.begin() + start_idx, intervals.begin() + end_idx + 1);
Interval element(start, end);
intervals.insert(intervals.begin() + start_idx, element);
return intervals;
}
};
int main(void){
return 0;
}
| [
"[email protected]"
] | |
8868610de6bf6cec38a0b0d4b028d568412d8886 | afe6fdfee554518ada67eda2be5ccac0bb9f6829 | /class-function-pointers/main.cpp | 982f89936b53b6b152f2a2957ba61894ba306dbf | [] | no_license | watervapour/experiments | 11d196c7868860110d8d1fb621d5c5f8a799c9a9 | 11f6d8032465ef5c15b94a53eebb6b2f40cefd20 | refs/heads/master | 2023-04-03T11:35:00.420958 | 2021-04-10T05:06:46 | 2021-04-10T05:06:46 | 356,465,680 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,006 | cpp | #include <iostream>
using namespace std;
class testClass
{
public:
testClass();
void funcA();
void funcB();
void callArrayFunc(int);
void (testClass::*classArr[2])() = {&testClass::funcA, &testClass::funcB};
// void (testClass::*arr[2])()={&testClass::funcA};
// void (testClass::*functionPointer)() = &testClass::funcB;
private:
//void (testClass::funcArray[2])() = {funcA, funcB};
//void (*funcArray[2])();
};
testClass::testClass(){
//void (testClass::*classArr[2])() = {&testClass::funcA, &testClass::funcB};
}
void testClass::funcA(){
cout << "func A" << endl;
}
void testClass::funcB(){
cout << "func B" << endl;
}
void testClass::callArrayFunc(int func){
//(this.*classArr[0])();
(this->*classArr[0])();
//*(classArr[1])();
}
int main(){
void (testClass::*mainArr[2])() = {&testClass::funcA, &testClass::funcB};
testClass mtc;
(mtc.*mainArr[0])();
(mtc.*mainArr[1])();
(mtc.*mainArr[1])();
(mtc.*mainArr[0])();
mtc.callArrayFunc(0);
// (mtc.*arr[1])();
return 0;
}
| [
"[email protected]"
] | |
b63ec7e004dfb8b70c9c008fa9ae0e7e16385ccc | 745033a240b005a675b12ca9a83f6463bb931b4e | /215. Kth Largest Element in an Array.cpp | 8352b1889bcaca19c5b414a5c54bb7f2857a80f0 | [] | no_license | zhuhaochuan/Leetcode | ef9b36f7b0368331d0ee8cc2089dc4dcd121cc60 | 28442a733093d6fd4fe078ceba3d1bee5655ce1d | refs/heads/master | 2018-09-04T00:52:37.636977 | 2018-06-22T07:06:42 | 2018-06-22T07:06:42 | 111,297,678 | 8 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 964 | cpp | //分析:找到一个无序数组当中第k大的元素
//最简单的做法就是将原始数组排序然后遍历排好序的数组
//快速排序带来的时间复杂度为o(nlog(n))
class Solution {
public:
int findKthLargest(vector<int>& nums, int k) {
sort(nums.begin(),nums.end(),greater<int>());
return nums[k-1];
}
};
//是否可以优化?采用堆的方式更好因为只需要维护一个只有k个元素的堆,每次进来的元素当堆的大小超过k的时候就pop堆顶的元素
//这样只需要构建一个k个元素的堆,每次进来一个元素找到这个元素该放置的位置只需要log(k)的时间复杂度
//总的复杂度为o(nlog(k))是低于前一中方法的。
class Solution {
public:
int findKthLargest(vector<int>& nums, int k)
{
priority_queue<int> pq(nums.begin(), nums.end());
for (int i = 0; i < k - 1; i++)
pq.pop();
return pq.top();
}
}; | [
"[email protected]"
] | |
d6100b56f3db15199333536e70a1b61fe746eca9 | c0cd026edba9e57003e6519d4485ee520a709498 | /Test/Intermediate/Build/Win64/UE4Editor/Inc/Test_C/MainChar_GameMode.gen.cpp | 9f5a248d2a32763c04f9efd268ddea07fe29ff93 | [] | no_license | ZeyadTarek000/Test | 2f27029ea4d36ddda0b86330771fcf4c152298cc | 365819dff9567d05e269e045883f8fbef45eaeed | refs/heads/master | 2022-11-19T16:32:40.918321 | 2020-07-13T08:57:27 | 2020-07-13T08:57:27 | 279,245,218 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,507 | cpp | // Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "Test_C/MainChar_GameMode.h"
#ifdef _MSC_VER
#pragma warning (push)
#pragma warning (disable : 4883)
#endif
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeMainChar_GameMode() {}
// Cross Module References
TEST_C_API UClass* Z_Construct_UClass_AMainChar_GameMode_NoRegister();
TEST_C_API UClass* Z_Construct_UClass_AMainChar_GameMode();
ENGINE_API UClass* Z_Construct_UClass_AGameMode();
UPackage* Z_Construct_UPackage__Script_Test_C();
COREUOBJECT_API UClass* Z_Construct_UClass_UClass();
ENGINE_API UClass* Z_Construct_UClass_APawn_NoRegister();
// End Cross Module References
void AMainChar_GameMode::StaticRegisterNativesAMainChar_GameMode()
{
}
UClass* Z_Construct_UClass_AMainChar_GameMode_NoRegister()
{
return AMainChar_GameMode::StaticClass();
}
struct Z_Construct_UClass_AMainChar_GameMode_Statics
{
static UObject* (*const DependentSingletons[])();
#if WITH_METADATA
static const UE4CodeGen_Private::FMetaDataPairParam Class_MetaDataParams[];
#endif
#if WITH_METADATA
static const UE4CodeGen_Private::FMetaDataPairParam NewProp_Spawn_YY_Max_MetaData[];
#endif
static const UE4CodeGen_Private::FFloatPropertyParams NewProp_Spawn_YY_Max;
#if WITH_METADATA
static const UE4CodeGen_Private::FMetaDataPairParam NewProp_Spawn_YY_Min_MetaData[];
#endif
static const UE4CodeGen_Private::FFloatPropertyParams NewProp_Spawn_YY_Min;
#if WITH_METADATA
static const UE4CodeGen_Private::FMetaDataPairParam NewProp_Spawn_XX_Max_MetaData[];
#endif
static const UE4CodeGen_Private::FFloatPropertyParams NewProp_Spawn_XX_Max;
#if WITH_METADATA
static const UE4CodeGen_Private::FMetaDataPairParam NewProp_Spawn_XX_Min_MetaData[];
#endif
static const UE4CodeGen_Private::FFloatPropertyParams NewProp_Spawn_XX_Min;
#if WITH_METADATA
static const UE4CodeGen_Private::FMetaDataPairParam NewProp_Spawn_Y_Max_MetaData[];
#endif
static const UE4CodeGen_Private::FFloatPropertyParams NewProp_Spawn_Y_Max;
#if WITH_METADATA
static const UE4CodeGen_Private::FMetaDataPairParam NewProp_Spawn_Y_Min_MetaData[];
#endif
static const UE4CodeGen_Private::FFloatPropertyParams NewProp_Spawn_Y_Min;
#if WITH_METADATA
static const UE4CodeGen_Private::FMetaDataPairParam NewProp_Spawn_X_Max_MetaData[];
#endif
static const UE4CodeGen_Private::FFloatPropertyParams NewProp_Spawn_X_Max;
#if WITH_METADATA
static const UE4CodeGen_Private::FMetaDataPairParam NewProp_Spawn_X_Min_MetaData[];
#endif
static const UE4CodeGen_Private::FFloatPropertyParams NewProp_Spawn_X_Min;
#if WITH_METADATA
static const UE4CodeGen_Private::FMetaDataPairParam NewProp_PlayerSpeed_MetaData[];
#endif
static const UE4CodeGen_Private::FClassPropertyParams NewProp_PlayerSpeed;
#if WITH_METADATA
static const UE4CodeGen_Private::FMetaDataPairParam NewProp_PlayerRecharge_MetaData[];
#endif
static const UE4CodeGen_Private::FClassPropertyParams NewProp_PlayerRecharge;
static const UE4CodeGen_Private::FPropertyParamsBase* const PropPointers[];
static const FCppClassTypeInfoStatic StaticCppClassTypeInfo;
static const UE4CodeGen_Private::FClassParams ClassParams;
};
UObject* (*const Z_Construct_UClass_AMainChar_GameMode_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_AGameMode,
(UObject* (*)())Z_Construct_UPackage__Script_Test_C,
};
#if WITH_METADATA
const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_AMainChar_GameMode_Statics::Class_MetaDataParams[] = {
{ "HideCategories", "Info Rendering MovementReplication Replication Actor Input Movement Collision Rendering Utilities|Transformation" },
{ "IncludePath", "MainChar_GameMode.h" },
{ "ModuleRelativePath", "MainChar_GameMode.h" },
{ "ShowCategories", "Input|MouseInput Input|TouchInput" },
};
#endif
#if WITH_METADATA
const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_YY_Max_MetaData[] = {
{ "Category", "MainChar_GameMode" },
{ "ModuleRelativePath", "MainChar_GameMode.h" },
};
#endif
const UE4CodeGen_Private::FFloatPropertyParams Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_YY_Max = { UE4CodeGen_Private::EPropertyClass::Float, "Spawn_YY_Max", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x0040000000000001, 1, nullptr, STRUCT_OFFSET(AMainChar_GameMode, Spawn_YY_Max), METADATA_PARAMS(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_YY_Max_MetaData, ARRAY_COUNT(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_YY_Max_MetaData)) };
#if WITH_METADATA
const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_YY_Min_MetaData[] = {
{ "Category", "MainChar_GameMode" },
{ "ModuleRelativePath", "MainChar_GameMode.h" },
};
#endif
const UE4CodeGen_Private::FFloatPropertyParams Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_YY_Min = { UE4CodeGen_Private::EPropertyClass::Float, "Spawn_YY_Min", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x0040000000000001, 1, nullptr, STRUCT_OFFSET(AMainChar_GameMode, Spawn_YY_Min), METADATA_PARAMS(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_YY_Min_MetaData, ARRAY_COUNT(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_YY_Min_MetaData)) };
#if WITH_METADATA
const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_XX_Max_MetaData[] = {
{ "Category", "MainChar_GameMode" },
{ "ModuleRelativePath", "MainChar_GameMode.h" },
};
#endif
const UE4CodeGen_Private::FFloatPropertyParams Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_XX_Max = { UE4CodeGen_Private::EPropertyClass::Float, "Spawn_XX_Max", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x0040000000000001, 1, nullptr, STRUCT_OFFSET(AMainChar_GameMode, Spawn_XX_Max), METADATA_PARAMS(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_XX_Max_MetaData, ARRAY_COUNT(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_XX_Max_MetaData)) };
#if WITH_METADATA
const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_XX_Min_MetaData[] = {
{ "Category", "MainChar_GameMode" },
{ "ModuleRelativePath", "MainChar_GameMode.h" },
};
#endif
const UE4CodeGen_Private::FFloatPropertyParams Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_XX_Min = { UE4CodeGen_Private::EPropertyClass::Float, "Spawn_XX_Min", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x0040000000000001, 1, nullptr, STRUCT_OFFSET(AMainChar_GameMode, Spawn_XX_Min), METADATA_PARAMS(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_XX_Min_MetaData, ARRAY_COUNT(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_XX_Min_MetaData)) };
#if WITH_METADATA
const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_Y_Max_MetaData[] = {
{ "Category", "MainChar_GameMode" },
{ "ModuleRelativePath", "MainChar_GameMode.h" },
};
#endif
const UE4CodeGen_Private::FFloatPropertyParams Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_Y_Max = { UE4CodeGen_Private::EPropertyClass::Float, "Spawn_Y_Max", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x0040000000000001, 1, nullptr, STRUCT_OFFSET(AMainChar_GameMode, Spawn_Y_Max), METADATA_PARAMS(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_Y_Max_MetaData, ARRAY_COUNT(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_Y_Max_MetaData)) };
#if WITH_METADATA
const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_Y_Min_MetaData[] = {
{ "Category", "MainChar_GameMode" },
{ "ModuleRelativePath", "MainChar_GameMode.h" },
};
#endif
const UE4CodeGen_Private::FFloatPropertyParams Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_Y_Min = { UE4CodeGen_Private::EPropertyClass::Float, "Spawn_Y_Min", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x0040000000000001, 1, nullptr, STRUCT_OFFSET(AMainChar_GameMode, Spawn_Y_Min), METADATA_PARAMS(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_Y_Min_MetaData, ARRAY_COUNT(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_Y_Min_MetaData)) };
#if WITH_METADATA
const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_X_Max_MetaData[] = {
{ "Category", "MainChar_GameMode" },
{ "ModuleRelativePath", "MainChar_GameMode.h" },
};
#endif
const UE4CodeGen_Private::FFloatPropertyParams Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_X_Max = { UE4CodeGen_Private::EPropertyClass::Float, "Spawn_X_Max", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x0040000000000001, 1, nullptr, STRUCT_OFFSET(AMainChar_GameMode, Spawn_X_Max), METADATA_PARAMS(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_X_Max_MetaData, ARRAY_COUNT(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_X_Max_MetaData)) };
#if WITH_METADATA
const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_X_Min_MetaData[] = {
{ "Category", "MainChar_GameMode" },
{ "ModuleRelativePath", "MainChar_GameMode.h" },
};
#endif
const UE4CodeGen_Private::FFloatPropertyParams Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_X_Min = { UE4CodeGen_Private::EPropertyClass::Float, "Spawn_X_Min", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x0040000000000001, 1, nullptr, STRUCT_OFFSET(AMainChar_GameMode, Spawn_X_Min), METADATA_PARAMS(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_X_Min_MetaData, ARRAY_COUNT(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_X_Min_MetaData)) };
#if WITH_METADATA
const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_PlayerSpeed_MetaData[] = {
{ "Category", "MainChar_GameMode" },
{ "ModuleRelativePath", "MainChar_GameMode.h" },
};
#endif
const UE4CodeGen_Private::FClassPropertyParams Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_PlayerSpeed = { UE4CodeGen_Private::EPropertyClass::Class, "PlayerSpeed", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x0044000000000001, 1, nullptr, STRUCT_OFFSET(AMainChar_GameMode, PlayerSpeed), Z_Construct_UClass_APawn_NoRegister, Z_Construct_UClass_UClass, METADATA_PARAMS(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_PlayerSpeed_MetaData, ARRAY_COUNT(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_PlayerSpeed_MetaData)) };
#if WITH_METADATA
const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_PlayerRecharge_MetaData[] = {
{ "Category", "MainChar_GameMode" },
{ "ModuleRelativePath", "MainChar_GameMode.h" },
};
#endif
const UE4CodeGen_Private::FClassPropertyParams Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_PlayerRecharge = { UE4CodeGen_Private::EPropertyClass::Class, "PlayerRecharge", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x0044000000000001, 1, nullptr, STRUCT_OFFSET(AMainChar_GameMode, PlayerRecharge), Z_Construct_UClass_APawn_NoRegister, Z_Construct_UClass_UClass, METADATA_PARAMS(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_PlayerRecharge_MetaData, ARRAY_COUNT(Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_PlayerRecharge_MetaData)) };
const UE4CodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_AMainChar_GameMode_Statics::PropPointers[] = {
(const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_YY_Max,
(const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_YY_Min,
(const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_XX_Max,
(const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_XX_Min,
(const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_Y_Max,
(const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_Y_Min,
(const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_X_Max,
(const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_Spawn_X_Min,
(const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_PlayerSpeed,
(const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AMainChar_GameMode_Statics::NewProp_PlayerRecharge,
};
const FCppClassTypeInfoStatic Z_Construct_UClass_AMainChar_GameMode_Statics::StaticCppClassTypeInfo = {
TCppClassTypeTraits<AMainChar_GameMode>::IsAbstract,
};
const UE4CodeGen_Private::FClassParams Z_Construct_UClass_AMainChar_GameMode_Statics::ClassParams = {
&AMainChar_GameMode::StaticClass,
DependentSingletons, ARRAY_COUNT(DependentSingletons),
0x009002ACu,
nullptr, 0,
Z_Construct_UClass_AMainChar_GameMode_Statics::PropPointers, ARRAY_COUNT(Z_Construct_UClass_AMainChar_GameMode_Statics::PropPointers),
"Game",
&StaticCppClassTypeInfo,
nullptr, 0,
METADATA_PARAMS(Z_Construct_UClass_AMainChar_GameMode_Statics::Class_MetaDataParams, ARRAY_COUNT(Z_Construct_UClass_AMainChar_GameMode_Statics::Class_MetaDataParams))
};
UClass* Z_Construct_UClass_AMainChar_GameMode()
{
static UClass* OuterClass = nullptr;
if (!OuterClass)
{
UE4CodeGen_Private::ConstructUClass(OuterClass, Z_Construct_UClass_AMainChar_GameMode_Statics::ClassParams);
}
return OuterClass;
}
IMPLEMENT_CLASS(AMainChar_GameMode, 4150475748);
static FCompiledInDefer Z_CompiledInDefer_UClass_AMainChar_GameMode(Z_Construct_UClass_AMainChar_GameMode, &AMainChar_GameMode::StaticClass, TEXT("/Script/Test_C"), TEXT("AMainChar_GameMode"), false, nullptr, nullptr, nullptr);
DEFINE_VTABLE_PTR_HELPER_CTOR(AMainChar_GameMode);
PRAGMA_ENABLE_DEPRECATION_WARNINGS
#ifdef _MSC_VER
#pragma warning (pop)
#endif
| [
"[email protected]"
] | |
abf7e5e58b62c0ee24a4e76e7226313794d0b72a | 89dedd7f3c7acc81d12e2bcb2e716f9af9e5fa04 | /third_party/WebKit/Source/core/layout/compositing/GraphicsLayerTreeBuilder.h | b314447842ac3af5b3559a00b12ae82404ce76ca | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"MIT",
"Apache-2.0"
] | permissive | bino7/chromium | 8d26f84a1b6e38a73d1b97fea6057c634eff68cb | 4666a6bb6fdcb1114afecf77bdaa239d9787b752 | refs/heads/master | 2022-12-22T14:31:53.913081 | 2016-09-06T10:05:11 | 2016-09-06T10:05:11 | 67,410,510 | 1 | 3 | BSD-3-Clause | 2022-12-17T03:08:52 | 2016-09-05T10:11:59 | null | UTF-8 | C++ | false | false | 2,151 | h | /*
* Copyright (C) 2009, 2010 Apple Inc. All rights reserved.
* Copyright (C) 2014 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef GraphicsLayerTreeBuilder_h
#define GraphicsLayerTreeBuilder_h
#include "platform/graphics/GraphicsLayer.h"
#include "wtf/Allocator.h"
namespace blink {
class PaintLayer;
class GraphicsLayerTreeBuilder {
STACK_ALLOCATED();
public:
GraphicsLayerTreeBuilder();
~GraphicsLayerTreeBuilder();
struct AncestorInfo {
STACK_ALLOCATED();
AncestorInfo()
: enclosingCompositedLayer(nullptr)
, childLayersOfEnclosingCompositedLayer(nullptr)
{
}
PaintLayer* enclosingCompositedLayer;
GraphicsLayerVector* childLayersOfEnclosingCompositedLayer;
};
void rebuild(PaintLayer&, AncestorInfo);
};
} // namespace blink
#endif // GraphicsLayerTreeBuilder_h
| [
"[email protected]"
] | |
3f568311ca8d25e45276073bb4603ff564bafb8c | 819b5880d30bb78886aa20a857e5cf21bae985f5 | /src/main.cpp | 4d8f45c0bc93bc8f8c8ac803efce9ebe43ff768b | [
"MIT"
] | permissive | skipTheR/liquid | 27c4b1aeb169fd55081b63d826cf39fc78455b0d | acc34428b4f814475fd95284e8af541c23694dbc | refs/heads/master | 2022-12-21T07:01:11.824669 | 2020-10-04T09:22:20 | 2020-10-04T09:27:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,263 | cpp | #include "main.h"
#include <iostream>
#include <sstream>
#include <stdio.h>
#include <cassert>
#include "config.h"
#include "CodeGenContext.h"
#include "AstNode.h"
#include "GetOpt.h"
extern int yyparse();
extern int yylex_destroy();
extern FILE* yyin;
extern liquid::Block* programBlock;
extern std::stack<std::string> fileNames;
extern std::vector<std::string> libPaths;
extern int parsing_error;
void usage();
int main(int argc, char** argv)
{
std::string fileName;
if( argc == 1 ) {
fileName = "./test_full.liq";
}
libPaths.push_back("./"); // current path
bool verbose = false;
bool quiet = false;
bool debug = false;
GetOpt getopt(argc, argv, "hi:vqd");
for( auto opt : getopt ) {
switch( opt ) {
case 'i': {
std::stringstream ss(getopt.get());
std::string item;
while( std::getline(ss, item, ';') ) {
std::replace(std::begin(item), std::end(item), '\\', '/');
if( item[item.size()] != '/' ) {
item += '/';
}
libPaths.push_back(item);
}
} break;
case 'v':
verbose = true;
break;
case 'q':
quiet = true;
break;
case 'd':
debug = true;
break;
case 'h':
usage();
return 1;
case EOF:
break;
default:
std::cout << getopt.error() << "\n";
usage();
return 1;
}
}
if( !quiet ) {
std::cout << "liquid version " << MAJOR_VER << "." << MINOR_VER << "." << REVISION_VER << "\n";
}
auto files = getopt.getRemainingArguments();
assert(files.size() == 1);
fileName = files[0]; // Currently only one file is supported.
yyin = fopen(fileName.c_str(), "r+");
if( yyin == nullptr ) {
std::cout << "File " << fileName << "not found. Abort" << std::endl;
return -1;
}
fileNames.push(""); // Add the empty file name after last EOF.
fileNames.push(fileName); // Add the top level file name.
if( yyparse() || parsing_error ) {
yylex_destroy();
return 1;
}
if( programBlock == nullptr ) {
std::cout << "Parsing " << fileName << "failed. Abort" << std::endl;
} else {
std::ostringstream devNull;
liquid::CodeGenContext context(quiet ? devNull : std::cout);
context.verbose = verbose;
context.debug = debug;
if( verbose )
context.printCodeGeneration(*programBlock, std::cout);
if( context.preProcessing(*programBlock) ) {
if( context.generateCode(*programBlock) ) {
context.runCode();
}
}
}
if( yyin != nullptr )
fclose(yyin);
delete programBlock;
yylex_destroy();
return 0;
}
void usage()
{
std::cout << "Usage:\n";
std::cout << "liq filename -h -d -v -q -i path1;path2\n";
std::cout << "\t-h this help text.\n";
std::cout << "\t-d debug code generation. Disables the code optimizer pass.\n";
std::cout << "\t-v be more verbose.\n";
std::cout << "\t-q be quiet.\n";
std::cout << "\t-i semicolon separated list of import paths where additional liquid files are located.\n";
}
| [
"[email protected]"
] | |
e074624578ef81a78831190699c51ce2a59b9d30 | fd903f3e84195288da2fd230d39baaa4978c3456 | /cluster/clustering_util.hpp | ae0037c8a4e96ecd507c788111c4795d721d1651 | [
"MIT"
] | permissive | LilianaCaldeira/brainclustering | c4bd1e1cde2383b6235ec2835f8cf4fb96063c99 | 853bd46e12338da9ae4fe348c508163d9951feb3 | refs/heads/main | 2023-05-31T01:08:35.125361 | 2021-06-15T18:47:50 | 2021-06-15T18:47:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,180 | hpp | #pragma once
#include <cstddef>
#include <random>
#include <iostream>
#include "munkres.cpp"
namespace brainclustering {
struct best_pair {
size_t cluster;
double distance;
};
struct label_pair {
double init{0.0};
double end{0.0};
};
void build_labels_divisive(ndarray const &labels_vector, std::vector<std::vector<size_t>> &dendogram,
std::vector<size_t> &clustering_steps, double const shading_factor = 1.0) {
auto *labels = get_c_array<double>(labels_vector);
size_t n_points = labels_vector.shape(0);
// Counter to keep track of how many of each level we have seen already
std::vector<size_t> counter(clustering_steps.size(), 0);
std::vector<label_pair> labels_interval(n_points, {0.0, 1.0 * shading_factor});
/*for (int m = 0; m < dendogram.size(); ++m) {
std::cout << m << " ";
print_container(dendogram[m]);
}*/
double portion, init, end;
//Iterate through the lines of the dendogram
for (auto &node : dendogram) {
//print_container(node);
// The first element of the row represents the iteration
size_t k_index = node[0];
//std::cout << "Considering " << clustering_steps[k_index] << std::endl;
// If the counter reaches the same number as "k" then we need to reset it
if (counter[k_index] == clustering_steps[k_index]) {
//std::cout << "Resetting the counter" << std::endl;
// And we also reset all the counters after it
for (size_t i = k_index; i < clustering_steps.size(); ++i) {
counter[i] = 0;
}
}
//std::cout << "Setting label init to " << init << std::endl;
//std::cout << "Setting label end to " << end << std::endl;
// Go through the other elements of the row
for (size_t j = 1; j < node.size(); ++j) {
// The current portion to add depends on the current element
// and the size of the elements
portion = (labels_interval[node[j]].end - labels_interval[node[j]].init) /
(double) (clustering_steps[k_index]);
// The initial part is the initial plus a portion muliplied
// how many times the element has been seen already
init = labels_interval[node[j]].init + portion * counter[k_index];
// And the end is the same plus one
end = labels_interval[node[j]].init + portion * (double) (counter[k_index] + 1);
//std::cout << "New init " << init << ", new end " << end << std::endl;
labels_interval[node[j]].init = init;
labels_interval[node[j]].end = end;
}
counter[k_index]++;
}
for (size_t i = 0; i < labels_interval.size(); ++i) {
labels[i] = (labels_interval[i].end - labels_interval[i].init) / 2 + labels_interval[i].init;
}
}
void build_labels_agglomerative(ndarray const &labels_vector, std::vector<std::vector<size_t>> &dendogram,
std::vector<size_t> &clustering_steps, double const shading_factor = 1.0) {
auto *labels = get_c_array<double>(labels_vector);
size_t n_points = labels_vector.shape(0);
std::vector<label_pair> prev_labels_interval(n_points);
std::vector<label_pair> curr_labels_interval(n_points);
double lab_init = 0.0;
double lab_end = 1.0 * shading_factor;
double portion = (lab_end - lab_init) / (double) (clustering_steps[clustering_steps.size() - 1]);
for (size_t i = 0; i < clustering_steps[clustering_steps.size() - 1]; ++i) {
prev_labels_interval[i].init = lab_init;
prev_labels_interval[i].end = lab_init + portion;
lab_init += portion;
}
/*for (size_t i = 0; i < prev_labels_interval.size(); ++i) {
std::cout << "(" << prev_labels_interval[i].init << ", " << prev_labels_interval[i].end << ") ";
}
std::cout << std::endl;*/
/*for (size_t i = 0; i < dendogram.size(); ++i) {
std::cout << i << ": ";
print_container(dendogram[i]);
}*/
// Start with the smallest cluster (top)
for (size_t i = clustering_steps.size(); i > 0;) {
--i;
//std::cout << "Considering clustering step: " << clustering_steps[i] << std::endl;
size_t step_init = 0;
// Compute where the rows of this clustering step start
for (size_t j = 0; j < i; ++j) {
step_init += clustering_steps[j];
}
size_t step_end = step_init + clustering_steps[i];
//std::cout << "Start at " << step_init << ", end at " << step_end << std::endl;
// This determines in which portion of the cluster we are
size_t lab_iter = 0;
/*for (size_t j = 0; j < prev_labels_interval.size(); ++j) {
std::cout << "(" << prev_labels_interval[i].init << ", " << prev_labels_interval[i].end << ") ";
}
std::cout << std::endl;
*/
for (size_t j = step_init; j < step_end; ++j) {
/*std::cout << "Current step " << j << std::endl;
if (!std::is_sorted(dendogram[j].begin() + 1, dendogram[j].end())) {
print_container(dendogram[j], "Not Sorted");
}*/
lab_init = prev_labels_interval[lab_iter].init;
lab_end = prev_labels_interval[lab_iter].end;
//std::cout << "init: " << lab_init << ", end: " << lab_end << std::endl;
if (i == 0) {
// If we are at biggest cluster (the one containing the indices of the labels)
// then we can set the labels values already
for (size_t k = 1; k < dendogram[j].size(); ++k) {
labels[dendogram[j][k]] = (lab_end - lab_init) / 2 + lab_init;
}
} else {
// Otherwise we need to compute the parents for the next level
portion = (lab_end - lab_init) / (double) (dendogram[j].size() - 1);
for (size_t k = 1; k < dendogram[j].size(); ++k) {
curr_labels_interval[dendogram[j][k]].init = lab_init;
curr_labels_interval[dendogram[j][k]].end = lab_init + portion;
lab_init += portion;
}
}
lab_iter++;
}
std::swap(prev_labels_interval, curr_labels_interval);
}
/*for (size_t i = 0; i < prev_labels_interval.size(); ++i) {
labels[i] = (prev_labels_interval[i].end - prev_labels_interval[i].init) / 2 + prev_labels_interval[i].init;
}*/
}
void dendogram_mapping(std::vector<std::vector<size_t>> &dendogram1,
std::vector<std::vector<size_t>> &dendogram2,
ndarray const &ignore_indices_vec1,
ndarray const &ignore_indices_vec2,
const object &clustering_vec,
size_t const n_points) {
std::vector<size_t> clustering_steps = to_std_vector<size_t>(clustering_vec);
auto *ignore1 = get_c_array<size_t>(ignore_indices_vec1);
auto *ignore2 = get_c_array<size_t>(ignore_indices_vec2);
size_t size_ignore1 = ignore_indices_vec1.shape(0);
size_t size_ignore2 = ignore_indices_vec2.shape(0);
std::vector<std::pair<int, int>> prev_labels(n_points, std::pair<int, int>(-1, -1));
std::vector<std::pair<int, int>> curr_labels(n_points, std::pair<int, int>(-1, -1));
size_t main_clusters = clustering_steps[clustering_steps.size() - 1];
std::vector<std::vector<int>> cost_matrix(main_clusters, std::vector<int>(main_clusters, 0));
for (size_t i = 0; i < main_clusters; ++i) {
prev_labels[i].first = i;
prev_labels[i].second = i;
}
/*for (size_t i = 0; i < prev_labels_interval.size(); ++i) {
std::cout << "(" << prev_labels_interval[i].first << ", " << prev_labels_interval[i].second << ") ";
}
std::cout << std::endl;*/
/*for (size_t i = 0; i < dendogram1.size(); ++i) {
std::cout << i << ": ";
print_container(dendogram1[i]);
}
std::cout << std::endl;
for (size_t i = 0; i < dendogram2.size(); ++i) {
std::cout << i << ": ";
print_container(dendogram2[i]);
}
*/
size_t init_top = 0;
// TODO: Remove these two vectors (they are for sanity checks)
std::vector<size_t> in1;
std::vector<size_t> in2;
// Start with the smallest cluster (top)
for (size_t i = clustering_steps.size(); i > 0;) {
--i;
//std::cout << "Considering clustering step: " << clustering_steps[i] << std::endl;
size_t step_init = 0;
// Compute where the rows of this clustering step start
for (size_t j = 0; j < i; ++j) {
step_init += clustering_steps[j];
}
if (i == clustering_steps.size() - 1) {
init_top = step_init;
}
size_t step_end = step_init + clustering_steps[i];
//std::cout << "Start at " << step_init << ", end at " << step_end << std::endl;
// This determines in which portion of the cluster we are
size_t lab_iter = 0;
for (size_t j = step_init; j < step_end; ++j) {
//std::cout << "init: " << lab_init << ", end: " << lab_end << std::endl;
// If we are at biggest cluster (the one containing the indices of the labels)
// then we can set the labels values already
if (i == 0) {
for (size_t k = 1; k < dendogram1[j].size(); ++k) {
if (std::binary_search(ignore1, ignore1 + size_ignore1, dendogram1[j][k])) {
in1.push_back(dendogram1[j][k]);
continue;
}
curr_labels[dendogram1[j][k]].first = prev_labels[lab_iter].first;
}
for (size_t k = 1; k < dendogram2[j].size(); ++k) {
if (std::binary_search(ignore2, ignore2 + size_ignore2, dendogram2[j][k])) {
in2.push_back(dendogram2[j][k]);
continue;
}
curr_labels[dendogram2[j][k]].second = prev_labels[lab_iter].second;
}
} else {
for (size_t k = 1; k < dendogram1[j].size(); ++k) {
curr_labels[dendogram1[j][k]].first = prev_labels[lab_iter].first;
}
for (size_t k = 1; k < dendogram2[j].size(); ++k) {
curr_labels[dendogram2[j][k]].second = prev_labels[lab_iter].second;
}
}
lab_iter++;
}
std::swap(prev_labels, curr_labels);
}
// Sanity check
/*if (in1.size() != size_ignore1) {
std::cerr
<< "The number of ignored indices found for the first dendogram does not correspond to the expected value."
<< std::endl;
std::abort();
}
// Sanity check
if (in2.size() != size_ignore2) {
std::cerr
<< "The number of ignored indices found for the second dendogram does not correspond to the expected value."
<< std::endl;
std::abort();
}*/
/*for (auto &labels : prev_labels_interval) {
std::cout << "(" << labels.first << ", " << labels.second << ") ";
}
std::cout << std::endl;
*/
for (auto &labels : prev_labels) {
if (labels.first == -1 || labels.second == -1) {
continue;
}
cost_matrix[labels.second][labels.first]++;
}
auto mapping_tuples = Hungarian::Solve(cost_matrix);
if (mapping_tuples.size() != main_clusters) {
std::cerr << "The length of the tuples is not correct." << std::endl;
std::abort();
}
/*for (size_t i = 0; i < mapping_tuples.size(); ++i) {
std::cout << "(" << i << ", " << mapping_tuples[i] << ") ";
}
std::cout << std::endl;*/
for (size_t i = 0; i < mapping_tuples.size(); ++i) {
while (i != mapping_tuples[i]) {
size_t swap_val = mapping_tuples[i];
std::swap(dendogram2[init_top + i], dendogram2[init_top + swap_val]);
std::swap(mapping_tuples[i], mapping_tuples[swap_val]);
}
}
/*std::cout << std::endl;
for (size_t i = init_top; i < dendogram2.size(); ++i) {
std::cout << i << ": ";
print_container(dendogram2[i]);
}*/
}
void build_labels(ndarray const &labels_vector, std::vector<std::vector<size_t>> &dendogram,
const object &clustering_vec, const bool agglomerative, double const shading_factor = 1.0) {
std::vector<size_t> clustering_steps = to_std_vector<size_t>(clustering_vec);
if (agglomerative) {
build_labels_agglomerative(labels_vector, dendogram, clustering_steps, shading_factor);
} else {
build_labels_divisive(labels_vector, dendogram, clustering_steps, shading_factor);
}
}
// Only works for 1dim
void build_labels_cluster_color(ndarray const &data_vector, ndarray const &labels_vector,
std::vector<std::vector<size_t>> &dendogram,
size_t last_level_size) {
check_dimensions<double>(data_vector, 1);
auto *labels = get_c_array<double>(labels_vector);
auto *data = get_c_ndarray<double, 1>(data_vector);
std::vector<double> center_colour(last_level_size);
for (size_t i = 0; i < last_level_size; ++i) {
for (size_t j = 0; j < dendogram[i].size(); ++j) {
center_colour[i] += data[dendogram[i][j]][0];
}
//std::cout << "center color: " << center_colour[i] << std::endl;
center_colour[i] /= dendogram[i].size();
for (size_t j = 0; j < dendogram[i].size(); ++j) {
labels[dendogram[i][j]] = center_colour[i];
}
}
}
template<typename point_type>
size_t binary_search(point_type *arr, int l, int r, point_type &val) {
int best_index = l;
while (l <= r) {
int mid = l + (r - l) / 2;
//std::cout << l << ", " << r << ", " << mid << std::endl;
//std::cout << arr[mid][0] << ", " << val[0] << std::endl;
if (arr[mid][0] < val[0]) {
l = mid + 1;
} else if (arr[mid][0] > val[0]) {
r = mid - 1;
} else {
best_index = mid;
break;
}
//std::cout << squared_euclidean_distance(arr[mid], val) << ", "
// << squared_euclidean_distance(arr[best_index], val) << std::endl;
if (squared_euclidean_distance(arr[mid], val) < squared_euclidean_distance(arr[best_index], val)) {
best_index = mid;
}
}
return best_index;
}
template<typename point_type>
inline static best_pair nearest_center_binsearch(point_type const &point, point_type const *const centers,
size_t const initialized_limit) {
//print_ndarray(centers, initialized_limit, "centers: ");
size_t cluster = binary_search(centers, 0, initialized_limit - 1, point);
double distance = squared_euclidean_distance(centers[cluster], point);
best_pair best = {cluster, distance};
return best;
}
template<typename point_type, bool weighted = false>
inline static best_pair nearest_center(point_type const &point, point_type const *const centers,
size_t const initialized_limit,
[[maybe_unused]]double const *const weights = nullptr) {
best_pair current_best = {0, 0};
double distance;
if constexpr (weighted) {
current_best = {0, squared_euclidean_distance(point, centers[0], weights)};
} else {
current_best = {0, squared_euclidean_distance(point, centers[0])};
}
for (size_t cluster = 1; cluster < initialized_limit; ++cluster) {
if constexpr (weighted) {
distance = squared_euclidean_distance(point, centers[cluster], weights);
} else {
distance = squared_euclidean_distance(point, centers[cluster]);
}
if (distance < current_best.distance) {
current_best.distance = distance;
current_best.cluster = cluster;
}
}
return current_best;
}
template<typename point_type, bool weighted = false>
void kmeans_plus_plus(point_type const *const data, size_t const n_points,
point_type *centers, size_t n_clusters,
size_t const seed, double const *const weights = nullptr) {
std::mt19937 random_number_generator(seed);
std::uniform_int_distribution<size_t> distribution(0, n_points - 1);
// Choose the first center at random from the data points
centers[0] = data[distribution(random_number_generator)];
std::vector<double> D(n_points);
for (size_t cluster = 1; cluster < n_clusters; ++cluster) {
double sum_distances = 0;
// Since we are using a custom distribution, we use the CDF instead of the PDF
// The CDF is always distributed between 0 and 1
std::uniform_real_distribution<double> distribution(0.0, 1.0);
// We draw a value from the CDF
double prob = distribution(random_number_generator);
for (size_t point = 0; point < n_points; ++point) {
// For each point, compute the distance between the points and the closest centers
// Considering only the centers that have already been chosen
best_pair best_cluster = nearest_center<point_type, weighted>(data[point], centers, cluster + 1,
weights);
D[point] = best_cluster.distance;
// We sum all distances, such that we know what is the highest value
sum_distances += best_cluster.distance;
}
// We find the value of the point that has been chosen
sum_distances = sum_distances * prob;
for (size_t point = 0; point < n_points; ++point) {
// We subtract from sum distances
sum_distances = sum_distances - D[point];
// If we get a value less than 0, then it means that we reached the chosen point
if (sum_distances <= 0) {
centers[cluster] = data[point];
break;
}
}
}
}
template<typename point_type, bool ret_labels = true, bool weighted = false>
double kmeans(point_type const *const data, size_t const n_points,
point_type *centers, size_t n_clusters,
double *labels = nullptr, size_t cluster_addition = 1,
size_t const init_method = 1, size_t const n_iterations = 100,
double const tolerance = 1e-4, size_t const seed = 0, double const *const weights = nullptr,
size_t const verbose = 0) {
if (init_method == 1) { // k-means++
if (verbose) {
std::cout << "Setting up the centers with kmeans++." << std::endl;
}
kmeans_plus_plus(data, n_points, centers, n_clusters, seed, weights);
} else if (init_method == 2) { // Random
if (verbose) {
std::cout << "Setting up the centers randomly." << std::endl;
}
static std::mt19937 random_number_generator(seed);
std::uniform_int_distribution<size_t> distribution(0, n_points - 1);
// Set each cluster to a random data points
for (size_t cluster = 0; cluster < n_clusters; ++cluster) {
centers[cluster] = data[distribution(random_number_generator)];
}
} else { // The centers are already initialized
if (verbose) {
std::cout << "Considering previously initialized centers." << std::endl;
}
}
if (verbose) {
print_ndarray(centers, n_clusters, "Initialized centers: ");
}
// Initialize Frobenius norm
double difference_norm = std::numeric_limits<double>::max();
double current_inertia = 0;
// Start the iterations
// Stop if the number of iterations has been reached or if the centers have converged
for (size_t iteration = 0; iteration < n_iterations; ++iteration) {
if (difference_norm < tolerance) {
if (verbose) {
std::cout << "Convergence was reached at iteration " << iteration + 1 << "." << std::endl;
}
break;
}
// Create an array to store the new centers
std::vector<point_type> new_centers(n_clusters);
// And a vector to count how many points are in each cluster
std::vector<size_t> counts(n_clusters, 0);
// Set the current inertia to zero
current_inertia = 0;
// Assign each point to their nearest center
for (size_t point = 0; point < n_points; ++point) {
// Find the closest cluster to this point
best_pair best_cluster = nearest_center<point_type, weighted>(data[point], centers, n_clusters,
weights);
// Assign point to the closest cluster + 1, because we want cluster 0 to be empty
if constexpr (ret_labels) {
labels[point] = best_cluster.cluster * 1.0 + cluster_addition;
}
// Add the inertia to the current value
current_inertia += best_cluster.distance;
// Add this point to the new centers of that cluster
new_centers[best_cluster.cluster] += data[point];
// And increase the counter
counts[best_cluster.cluster] += 1; // Count how many points are in the cluster
}
// Compute the Frobenius norm
difference_norm = 0;
// Divide the means by how many elements are in the cluster
for (size_t cluster = 0; cluster < n_clusters; ++cluster) {
point_type new_centroid = new_centers[cluster] / std::max<size_t>(1, counts[cluster]);
// The norm is the sum of squared distances
difference_norm += squared_euclidean_distance(centers[cluster], new_centroid);
centers[cluster] = new_centroid;
}
/*if (verbose) {
print_ndarray(centers, n_clusters, "The new centers are: ");
}*/
}
return current_inertia;
}
template<bool weighted, typename... weights>
int get_weight(int a, weights... params) {
static_assert(!weighted || (sizeof...(weights) >= 1));
if constexpr (weighted) {
// Theoretically fix it to get weight and index
return a * std::get<0>(std::tuple<weights...>{params...});
} else {
return a;
}
}
template<typename T>
inline static T square(T value) {
return value * value;
}
template<bool weighted, typename point_type>
inline static typename point_type::value_type sedtest(point_type const &point_a,
point_type const &point_b,
double const *const weights) {
typename point_type::value_type distance = 0;
for (size_t i = 0; i < point_type::dimensions; ++i) {
distance += get_weight<weighted>(square(point_a[i] - point_b[i]), weights, i);
}
return distance;
}
template<typename point_type>
inline static typename point_type::value_type squared_euclidean_distance(point_type const &point_a,
point_type const &point_b) {
typename point_type::value_type distance = 0;
for (size_t i = 0; i < point_type::dimensions; ++i) {
distance += square(point_a[i] - point_b[i]);
}
return distance;
}
template<typename point_type>
inline static typename point_type::value_type squared_euclidean_distance(point_type const &point_a,
point_type const &point_b,
double const *const weights) {
typename point_type::value_type distance = 0;
for (size_t i = 0; i < point_type::dimensions; ++i) {
distance += weights[i] * square(point_a[i] - point_b[i]);
}
return distance;
}
} | [
"[email protected]"
] | |
8a3a669260ddeb781ec6bd10c3ec1061300cbaa0 | 513d082fe2216926780da0c64bafa501bc26dfb9 | /1047.cpp | c501a6d00a4c1f68d559382da755463866deb1f2 | [] | no_license | ismailrz/URI-Online-Judge- | b5fb465e0782a9f4057b34bce3721651640b1a4c | 07ab12d065e2f4367ae57f3079c80a98b7c2c8c7 | refs/heads/master | 2020-05-19T05:27:20.141904 | 2019-05-04T03:47:31 | 2019-05-04T03:47:31 | 184,848,542 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 549 | cpp | #include<stdio.h>
int main()
{
int a,b,c,d,M,H;
scanf("%d%d%d%d",&a,&c,&b,&d);
if(a==b && c==d){
H=24;M=0;
}
else if(a>b){
if(c>d){
H=24-a+b-1;
M=60-c+d;
}
else{
H=24-a+b;
M=60-c+d-60;
}
}
else if(b>a){
if(d>c){
H=24-a+b-24;
M=60-c+d-60;
}
else{
H=24-a+b-24-1;
M=60-c+d;
}
}
printf("O JOGO DUROU %d HORA(S) E %d MINUTO(S)\n",H,M);
return 0;
}
| [
"[email protected]"
] | |
6201c8a9b8a8ce73f1184a3625b4c21e2fbeebf1 | bf2869a0d080fa547c2557962659fa0822c4f6eb | /Bean/bean/env/native/component/ComponentGetForegroundExecutor.cpp | 92ba89ad7b31eecfcc4c0dffbd8615ec3065cd65 | [] | no_license | desktopgame/Bean | 966f8a148c94bb1035373a811c910e3f50f6d238 | 743904b5d61d4914536e5fbb678236199abe6f0b | refs/heads/master | 2021-09-26T08:43:48.247461 | 2017-11-11T06:22:01 | 2017-11-11T06:22:01 | 110,304,259 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 555 | cpp | #include "ComponentGetForegroundExecutor.h"
#include "../../../env/user/UserColor.h"
#include "../../../env/user/UserComponent.h"
//public method---
ComponentGetForegroundExecutor::ComponentGetForegroundExecutor() {
}
ComponentGetForegroundExecutor::~ComponentGetForegroundExecutor() {
}
Object_ * const ComponentGetForegroundExecutor::executeImpl(Method * const proxy, Object_ * const invoker, std::vector<Object_*> args) {
UserComponent* comp = static_cast<UserComponent*>(invoker);
return new UserColor(comp->getForeground());
}
//---public method | [
"[email protected]"
] | |
37e9e948752ffa808d61aa45bebaea81e06968fa | 5e575cfae10bf1a38f05b814e6c18543a2c11d7d | /include/openmp.hpp | 3d2bb4954675573bf563a56d0613a17c119f962d | [
"MIT"
] | permissive | shohirose/sphcode | e1be1c000c2750353e974b393a79213b340f6941 | 67efb8882520cd8d53ca12ec07439dfa515fd862 | refs/heads/master | 2020-07-25T09:46:43.478914 | 2019-09-02T13:57:38 | 2019-09-02T13:57:38 | 208,250,132 | 0 | 0 | MIT | 2019-09-13T11:21:28 | 2019-09-13T11:21:28 | null | UTF-8 | C++ | false | false | 1,191 | hpp | #pragma once
#include <memory>
#include "defines.hpp"
#ifdef _OPENMP
#include <omp.h>
#endif
class omp_real {
int m_threads;
std::unique_ptr<real[]> m_values;
public:
omp_real(real const v = 0.0)
{
#ifdef _OPENMP
m_threads = omp_get_max_threads();
#else
m_threads = 1;
#endif
m_values = std::make_unique<real[]>(m_threads);
for(int i = 0; i < m_threads; ++i) {
m_values[i] = v;
}
}
real & get()
{
#ifdef _OPENMP
return m_values[omp_get_thread_num()];
#else
return m_values[0];
#endif
}
real min()
{
real v = m_values[0];
for(int i = 1; i < m_threads; ++i) {
if(v > m_values[i]) {
v = m_values[i];
}
}
return v;
}
real max()
{
real v = m_values[0];
for(int i = 1; i < m_threads; ++i) {
if(v < m_values[i]) {
v = m_values[i];
}
}
return v;
}
real sum()
{
real v = 0;
for(int i = 0; i < m_threads; ++i) {
v += m_values[i];
}
return v;
}
};
| [
"[email protected]"
] | |
fb0e33d15173e0a81c84f1646274a298b4a18a5c | 37013cd71bb5516e995c79fb25283ddd9c0bc376 | /SnakeMap.cpp | 2f7f837ee407d9732e52d4a276cbf88b6d6e120e | [] | no_license | opcow/Snake | bd962ad95870b0b4bd29a61936ce8bb358045ef4 | a9c6a8ccb0f714630b356ce734119d75787def6b | refs/heads/master | 2021-01-23T09:34:11.462093 | 2012-08-12T08:01:06 | 2012-08-12T08:01:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,021 | cpp | #include "SnakeMap.h"
CSnakeMap::CSnakeMap(int width, int height, SDL_Surface * surface)
{
mWidth = width;
mHeight = height;
mMap = new unsigned char[width * height];
mSurface = surface;
mTextures = 0;
}
CSnakeMap::~CSnakeMap(void)
{
if (mMap != 0)
delete mMap;
}
void CSnakeMap::AddTiles(SDL_Surface * textures[], int count)
{
mRect.h = textures[0]->h;
mRect.w = textures[0]->w;
mTextures = textures;
mItemCount = count;
}
void CSnakeMap::Draw()
{
for (int i = 0; i < mHeight; i++)
for (int j = 0; j < mWidth; j++)
Draw(j, i);
}
void CSnakeMap::Draw(int x, int y)
{
mRect.x = x * mRect.w;
mRect.y = y * mRect.h;
SDL_BlitSurface(mTextures[mMap[x + y * mWidth]], NULL, mSurface, &mRect);
}
unsigned char * CSnakeMap::GetBuffer()
{
return mMap;
}
unsigned char CSnakeMap::GetItem(int x, int y)
{
return mMap[x + y * mWidth];
}
void CSnakeMap::AddItem(int x, int y, unsigned char item)
{
mMap[x + y * mWidth] = item;
} | [
"[email protected]"
] | |
4f5ed99a5393c12f868aa98429baccdcdab3e0e8 | a9c19db44ae2bf011c09c553fe680dc70cc9c74e | /Station Seven/Station Seven/ParticleSystem.h | b5ac4d319caecffc773c752b8c7058474018c0fb | [] | no_license | SeanAbnerNash/CA1---Space-Station-Rescue | 7b9d65e42323f0c46657738340c83a0a68b01ab0 | 70b0064eaf405302a8d7e04427794ec6c66618eb | refs/heads/master | 2020-11-30T22:08:29.767498 | 2020-01-17T22:43:53 | 2020-01-17T22:43:53 | 230,490,550 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 451 | h | #pragma once
#include "Particle.h"
class ParticleSystem
{
public:
ParticleSystem(int count, sf::Vector2f pos); // Constructor
// Update and draw functions
void update();
void draw(sf::RenderWindow& window);
std::vector<Particle*> m_particles; // The vector particles the system handles
private:
void resetParticle(int index); // Function to reset particle when particle is dead
sf::Vector2f m_position; // Position of particle system
}; | [
"patrykwysocki"
] | patrykwysocki |
4074a8c972e5a3fbb4114c41901e746532db2279 | eb2510e9d6af1534f6275903e96aba6419e0b6d0 | /stm32/combined_tests/src/tfw_config.hpp | 51886c899dfd29ac3ea247dc1ccab543a4aab6eb | [
"MIT"
] | permissive | hodea/hodea-lib-testing | c3e5f216414a5a4dd5f6a0ff92b126a56aa679a1 | 5a51c1146a51a951e454c8c0350c902080e054d7 | refs/heads/master | 2021-09-20T11:56:00.043925 | 2018-08-09T07:48:29 | 2018-08-09T07:48:29 | 98,781,027 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 452 | hpp | // Copyright (c) 2017, Franz Hollerer.
// SPDX-License-Identifier: MIT
/**
* Test framework (tfw) configuration.
* \author [email protected]
*/
#if !defined TFW_CONFIG_HPP
#define TFW_CONFIG_HPP
#include "tfw.hpp"
constexpr Tfw_log_level tfw_log_level = Tfw_log_level::info;
constexpr bool enable_pin_config_test = true;
constexpr bool enable_digio_test = true;
constexpr bool enable_critical_section_test = true;
#endif /*!TFW_CONFIG_HPP */
| [
"[email protected]"
] | |
7991f8e70b30bdb74200cf866848724dc2c7d8ec | 727c574f0b5d84ae485b852ccf318063cc51772e | /XJOJ/148 汽车到哪了.cpp | acad1f9d4291187ae6c02529abd7c0722dba48f7 | [] | no_license | cowtony/ACM | 36cf2202e3878a3dac1f15265ba8f902f9f67ac8 | 307707b2b2a37c58bc2632ef872dfccdee3264ce | refs/heads/master | 2023-09-01T01:21:28.777542 | 2023-08-04T03:10:23 | 2023-08-04T03:10:23 | 245,681,952 | 7 | 3 | null | null | null | null | GB18030 | C++ | false | false | 1,145 | cpp | /*
输入站与站之间的距离,再输入路程数,求现在在哪一站或哪两站之间
读入站与站之间的距离,改写成每站与起点的距离
再读入路程数,用二分查找属于哪个位置
不用二分会超时的
关键词:二分查找
*/
#include<iostream>
using namespace std;
int main()
{
int station[10001];
int t;
cin>>t;
while(t--)
{
int n,m,ask;
cin>>n>>m;
station[1]=0;
for(int i=2;i<=n;i++)
{
cin>>station[i];
station[i]+=station[i-1];
}
int start,end,middle;
while(m--)
{
cin>>ask;
start=1;end=n;
while(end-start>1)
{
middle=(end+start)/2;
if(station[middle]>=ask)end=middle;
else if(station[middle]<=ask)start=middle;
}
if(station[start]==ask)cout<<start<<endl;
else if(station[end]==ask)cout<<end<<endl;
else cout<<start<<' '<<end<<endl;
}
}
return 0;
}
| [
"[email protected]"
] | |
df8ff7deee27a2ad49ec29487a43f1c14aa539ec | 5cb76c3273fe6f133a3ba8082799d20bfe2e9bf4 | /test/shared/test_ctor.cpp | dcab9ef63dbf83685f77fcc4ff4986b69d2cdefa | [] | no_license | Answeror/yapimpl | ef66caca988efd8198827301af36ab9e73bc1122 | 26f43eddb297937925354fe6f21b5a09e48fe76a | refs/heads/master | 2021-03-12T22:45:52.974985 | 2014-11-06T07:02:50 | 2014-11-06T07:02:50 | 9,958,622 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,333 | cpp | #include <boost/test/unit_test.hpp>
#include "yapimpl/include/shared.hpp"
#include "yapimpl/include/shared_impl.hpp"
namespace {
struct no {
no() : m(yapimpl::use_default_ctor) {}
~no() {}
int a() const { return m->a; }
struct impl {
int a;
impl() : a(1) {}
};
yapimpl::shared<impl> m;
};
}
BOOST_AUTO_TEST_CASE(test_ctor_no_params) {
no o;
BOOST_CHECK_EQUAL(o.a(), 1);
}
namespace {
struct single {
single() : m(1) {}
~single() {}
int a() const { return m->a; }
struct impl {
int a;
impl(int a) : a(a) {}
};
yapimpl::shared<impl> m;
};
}
BOOST_AUTO_TEST_CASE(test_ctor_single_params) {
single o;
BOOST_CHECK_EQUAL(o.a(), 1);
}
namespace {
struct many {
many() : m(1, 2, 3) {}
~many() {}
int a() const { return m->a; }
int b() const { return m->b; }
int c() const { return m->c; }
struct impl {
int a, b, c;
impl(int a, int b, int c) : a(a), b(b), c(c) {}
};
yapimpl::shared<impl> m;
};
}
BOOST_AUTO_TEST_CASE(test_ctor_many_params) {
many o;
BOOST_CHECK_EQUAL(o.a(), 1);
BOOST_CHECK_EQUAL(o.b(), 2);
BOOST_CHECK_EQUAL(o.c(), 3);
}
| [
"[email protected]"
] | |
acfd5cd2d9cbb6c1b204767297c9add4927ad645 | 16d51d41a4a6fd24f69995d8756a3f8a6bb8c50a | /HW3/ss/Matrix.h | 6a1cc3259ed5a3f0f79c88be5b85d935e2863e29 | [] | no_license | jjfrank0324/Data_Structure | 9c10d8e3cdc4c264de33bd8185cc30ab4b42d93b | 5dc190eac91f1748d83ec1b5eb9b13f5b04caa05 | refs/heads/master | 2022-12-02T16:05:47.383793 | 2020-08-24T18:19:28 | 2020-08-24T18:19:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,272 | h | #include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <stdio.h>
#include <stdlib.h>
#include <sstream>
using namespace std;
class Matrix{
public:
Matrix();
Matrix(const Matrix& M2);
Matrix (unsigned int arows, unsigned int acols, double num);
~Matrix() ;//destructor
//operator
double** get_data()const;
void operator=(const Matrix& m);
bool operator== (const Matrix& M2);
bool operator!= (const Matrix& M2);
Matrix operator*(const Matrix& that) const;
//assessor
unsigned int num_rows() const;
unsigned int num_cols() const;
void clear();
bool get(unsigned int ROW, unsigned int COLS, double& num);
bool set(unsigned int ROW, unsigned int COLS, double num);
void multiply_by_coefficient(double num);
bool swap_row(unsigned int row1, unsigned int row2);
void transpose();
bool add(Matrix& M2);
bool subtract(Matrix& M2);
double* get_row(unsigned int num);
double* get_col(unsigned int num);
Matrix* quarter();//question
private:
void copy(const Matrix& m);
double** data;
unsigned int rows;
unsigned int cols;
};
ostream& operator<< (ostream& OUTT,const Matrix& m);//printing funcion is putted outside the .h
| [
"[email protected]"
] | |
533919816b0313748257d37115cce4d7cdd4e459 | 0f4012d03230b59125ac3c618f9b5e5e61d4cc7d | /Cocos2d-x/2.0-x-2.03_branch_231_NoScript/samples/HelloCpp/Classes/SIX_Classes/SIX_RippleGrid3D.h | bd87669652132f824d09f301cc34bbb1765a76ec | [
"MIT"
] | permissive | daxingyou/SixCocos2d-xVC2012 | 80d0a8701dda25d8d97ad88b762aadd7e014c6ee | 536e5c44b08c965744cd12103d3fabd403051f19 | refs/heads/master | 2022-04-27T06:41:50.396490 | 2020-05-01T02:57:20 | 2020-05-01T02:57:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 478 | h | #pragma once
#include "cocos2d.h"
USING_NS_CC;
#define vertext_len 3
class SIX_RippleGrid3D:public CCGrid3D
{
public:
SIX_RippleGrid3D();
~SIX_RippleGrid3D();
static SIX_RippleGrid3D* create(const ccGridSize& gridSize);
virtual void update(float dt);
bool initWithSize(const ccGridSize& gridSize);
void dropStone(int x, int y, int stoneSize, int stoneWeight);
protected:
ccVertex3F* m_pBufNext;
ccVertex3F* m_pBufLast;
float* m_pBuf;
int m_width;
int m_height;
}; | [
"[email protected]"
] | |
ef7243ae04c5492f87167ee3497518cb99d7368a | ad19976b5b1c9279ae8757619b3d7ec8a6b0ee6a | /src/qt/transactionview.cpp | f35871fd6faac7fc36141d18fbbe39b18d15cd9e | [
"MIT"
] | permissive | bixcoin/bixcoinv2 | 7caab4430a6b01d2cc2e09419585e1d7ee77108a | 84fb8a759ab5b079b71f90cd69ad59bf63e3a70b | refs/heads/master | 2021-09-01T14:25:19.990605 | 2017-12-27T12:55:12 | 2017-12-27T12:55:12 | 115,520,932 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,306 | cpp | #include "transactionview.h"
#include "transactionfilterproxy.h"
#include "transactionrecord.h"
#include "walletmodel.h"
#include "addresstablemodel.h"
#include "transactiontablemodel.h"
#include "bitcoinunits.h"
#include "csvmodelwriter.h"
#include "transactiondescdialog.h"
#include "editaddressdialog.h"
#include "optionsmodel.h"
#include "guiutil.h"
#include <QScrollBar>
#include <QComboBox>
#include <QDoubleValidator>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QLineEdit>
#include <QTableView>
#include <QHeaderView>
#include <QPushButton>
#include <QMessageBox>
#include <QPoint>
#include <QMenu>
#include <QApplication>
#include <QClipboard>
#include <QLabel>
#include <QDateTimeEdit>
TransactionView::TransactionView(QWidget *parent) :
QWidget(parent), model(0), transactionProxyModel(0),
transactionView(0)
{
// Build filter row
setContentsMargins(0,0,0,90);
QHBoxLayout *hlayout = new QHBoxLayout();
hlayout->setContentsMargins(0,0,0,0);
#ifdef Q_OS_MAC
hlayout->setSpacing(5);
hlayout->addSpacing(26);
#else
hlayout->setSpacing(0);
hlayout->addSpacing(23);
#endif
dateWidget = new QComboBox(this);
#ifdef Q_OS_MAC
dateWidget->setFixedWidth(121);
#else
dateWidget->setFixedWidth(120);
#endif
dateWidget->addItem(tr("All"), All);
dateWidget->addItem(tr("Today"), Today);
dateWidget->addItem(tr("This week"), ThisWeek);
dateWidget->addItem(tr("This month"), ThisMonth);
dateWidget->addItem(tr("Last month"), LastMonth);
dateWidget->addItem(tr("This year"), ThisYear);
dateWidget->addItem(tr("Range..."), Range);
hlayout->addWidget(dateWidget);
typeWidget = new QComboBox(this);
#ifdef Q_OS_MAC
typeWidget->setFixedWidth(121);
#else
typeWidget->setFixedWidth(120);
#endif
typeWidget->addItem(tr("All"), TransactionFilterProxy::ALL_TYPES);
typeWidget->addItem(tr("Received with"), TransactionFilterProxy::TYPE(TransactionRecord::RecvWithAddress) |
TransactionFilterProxy::TYPE(TransactionRecord::RecvFromOther));
typeWidget->addItem(tr("Sent to"), TransactionFilterProxy::TYPE(TransactionRecord::SendToAddress) |
TransactionFilterProxy::TYPE(TransactionRecord::SendToOther));
typeWidget->addItem(tr("To yourself"), TransactionFilterProxy::TYPE(TransactionRecord::SendToSelf));
typeWidget->addItem(tr("Mined"), TransactionFilterProxy::TYPE(TransactionRecord::Generated));
typeWidget->addItem(tr("Other"), TransactionFilterProxy::TYPE(TransactionRecord::Other));
hlayout->addWidget(typeWidget);
addressWidget = new QLineEdit(this);
#if QT_VERSION >= 0x040700
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
addressWidget->setPlaceholderText(tr("Enter address or label to search"));
#endif
hlayout->addWidget(addressWidget);
amountWidget = new QLineEdit(this);
#if QT_VERSION >= 0x040700
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
amountWidget->setPlaceholderText(tr("Min amount"));
#endif
#ifdef Q_OS_MAC
amountWidget->setFixedWidth(97);
#else
amountWidget->setFixedWidth(100);
#endif
amountWidget->setValidator(new QDoubleValidator(0, 1e20, 8, this));
hlayout->addWidget(amountWidget);
QVBoxLayout *vlayout = new QVBoxLayout(this);
vlayout->setContentsMargins(0,0,0,0);
vlayout->setSpacing(0);
QTableView *view = new QTableView(this);
vlayout->addLayout(hlayout);
vlayout->addWidget(createDateRangeWidget());
vlayout->addWidget(view);
vlayout->setSpacing(0);
int width = view->verticalScrollBar()->sizeHint().width();
// Cover scroll bar width with spacing
#ifdef Q_OS_MAC
hlayout->addSpacing(width+2);
#else
hlayout->addSpacing(width);
#endif
// Always show scroll bar
view->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
view->setTabKeyNavigation(false);
view->setContextMenuPolicy(Qt::CustomContextMenu);
transactionView = view;
// Actions
QAction *copyAddressAction = new QAction(tr("Copy address"), this);
QAction *copyLabelAction = new QAction(tr("Copy label"), this);
QAction *copyAmountAction = new QAction(tr("Copy amount"), this);
QAction *copyTxIDAction = new QAction(tr("Copy transaction ID"), this);
QAction *editLabelAction = new QAction(tr("Edit label"), this);
QAction *showDetailsAction = new QAction(tr("Show transaction details"), this);
contextMenu = new QMenu();
contextMenu->addAction(copyAddressAction);
contextMenu->addAction(copyLabelAction);
contextMenu->addAction(copyAmountAction);
contextMenu->addAction(copyTxIDAction);
contextMenu->addAction(editLabelAction);
contextMenu->addAction(showDetailsAction);
// Connect actions
connect(dateWidget, SIGNAL(activated(int)), this, SLOT(chooseDate(int)));
connect(typeWidget, SIGNAL(activated(int)), this, SLOT(chooseType(int)));
connect(addressWidget, SIGNAL(textChanged(QString)), this, SLOT(changedPrefix(QString)));
connect(amountWidget, SIGNAL(textChanged(QString)), this, SLOT(changedAmount(QString)));
connect(view, SIGNAL(doubleClicked(QModelIndex)), this, SIGNAL(doubleClicked(QModelIndex)));
connect(view, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(contextualMenu(QPoint)));
connect(copyAddressAction, SIGNAL(triggered()), this, SLOT(copyAddress()));
connect(copyLabelAction, SIGNAL(triggered()), this, SLOT(copyLabel()));
connect(copyAmountAction, SIGNAL(triggered()), this, SLOT(copyAmount()));
connect(copyTxIDAction, SIGNAL(triggered()), this, SLOT(copyTxID()));
connect(editLabelAction, SIGNAL(triggered()), this, SLOT(editLabel()));
connect(showDetailsAction, SIGNAL(triggered()), this, SLOT(showDetails()));
}
void TransactionView::setModel(WalletModel *model)
{
this->model = model;
if(model)
{
transactionProxyModel = new TransactionFilterProxy(this);
transactionProxyModel->setSourceModel(model->getTransactionTableModel());
transactionProxyModel->setDynamicSortFilter(true);
transactionProxyModel->setSortCaseSensitivity(Qt::CaseInsensitive);
transactionProxyModel->setFilterCaseSensitivity(Qt::CaseInsensitive);
transactionProxyModel->setSortRole(Qt::EditRole);
transactionView->setModel(transactionProxyModel);
transactionView->setAlternatingRowColors(true);
transactionView->setSelectionBehavior(QAbstractItemView::SelectRows);
transactionView->setSelectionMode(QAbstractItemView::ExtendedSelection);
transactionView->setSortingEnabled(true);
transactionView->sortByColumn(TransactionTableModel::Date, Qt::DescendingOrder);
transactionView->verticalHeader()->hide();
transactionView->horizontalHeader()->resizeSection(
TransactionTableModel::Status, 23);
transactionView->horizontalHeader()->resizeSection(
TransactionTableModel::Date, 120);
transactionView->horizontalHeader()->resizeSection(
TransactionTableModel::Type, 120);
transactionView->horizontalHeader()->setResizeMode(
TransactionTableModel::ToAddress, QHeaderView::Stretch);
transactionView->horizontalHeader()->resizeSection(
TransactionTableModel::Amount, 100);
}
}
void TransactionView::chooseDate(int idx)
{
if(!transactionProxyModel)
return;
QDate current = QDate::currentDate();
dateRangeWidget->setVisible(false);
switch(dateWidget->itemData(idx).toInt())
{
case All:
transactionProxyModel->setDateRange(
TransactionFilterProxy::MIN_DATE,
TransactionFilterProxy::MAX_DATE);
break;
case Today:
transactionProxyModel->setDateRange(
QDateTime(current),
TransactionFilterProxy::MAX_DATE);
break;
case ThisWeek: {
// Find last Monday
QDate startOfWeek = current.addDays(-(current.dayOfWeek()-1));
transactionProxyModel->setDateRange(
QDateTime(startOfWeek),
TransactionFilterProxy::MAX_DATE);
} break;
case ThisMonth:
transactionProxyModel->setDateRange(
QDateTime(QDate(current.year(), current.month(), 1)),
TransactionFilterProxy::MAX_DATE);
break;
case LastMonth:
transactionProxyModel->setDateRange(
QDateTime(QDate(current.year(), current.month()-1, 1)),
QDateTime(QDate(current.year(), current.month(), 1)));
break;
case ThisYear:
transactionProxyModel->setDateRange(
QDateTime(QDate(current.year(), 1, 1)),
TransactionFilterProxy::MAX_DATE);
break;
case Range:
dateRangeWidget->setVisible(true);
dateRangeChanged();
break;
}
}
void TransactionView::chooseType(int idx)
{
if(!transactionProxyModel)
return;
transactionProxyModel->setTypeFilter(
typeWidget->itemData(idx).toInt());
}
void TransactionView::changedPrefix(const QString &prefix)
{
if(!transactionProxyModel)
return;
transactionProxyModel->setAddressPrefix(prefix);
}
void TransactionView::changedAmount(const QString &amount)
{
if(!transactionProxyModel)
return;
qint64 amount_parsed = 0;
if(BitcoinUnits::parse(model->getOptionsModel()->getDisplayUnit(), amount, &amount_parsed))
{
transactionProxyModel->setMinAmount(amount_parsed);
}
else
{
transactionProxyModel->setMinAmount(0);
}
}
void TransactionView::exportClicked()
{
// CSV is currently the only supported format
QString filename = GUIUtil::getSaveFileName(
this,
tr("Export Transaction Data"), QString(),
tr("Comma separated file (*.csv)"));
if (filename.isNull()) return;
CSVModelWriter writer(filename);
// name, column, role
writer.setModel(transactionProxyModel);
writer.addColumn(tr("Confirmed"), 0, TransactionTableModel::ConfirmedRole);
writer.addColumn(tr("Date"), 0, TransactionTableModel::DateRole);
writer.addColumn(tr("Type"), TransactionTableModel::Type, Qt::EditRole);
writer.addColumn(tr("Label"), 0, TransactionTableModel::LabelRole);
writer.addColumn(tr("Address"), 0, TransactionTableModel::AddressRole);
writer.addColumn(tr("Amount"), 0, TransactionTableModel::FormattedAmountRole);
writer.addColumn(tr("ID"), 0, TransactionTableModel::TxIDRole);
if(!writer.write())
{
QMessageBox::critical(this, tr("Error exporting"), tr("Could not write to file %1.").arg(filename),
QMessageBox::Abort, QMessageBox::Abort);
}
}
void TransactionView::contextualMenu(const QPoint &point)
{
QModelIndex index = transactionView->indexAt(point);
if(index.isValid())
{
contextMenu->exec(QCursor::pos());
}
}
void TransactionView::copyAddress()
{
GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::AddressRole);
}
void TransactionView::copyLabel()
{
GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::LabelRole);
}
void TransactionView::copyAmount()
{
GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::FormattedAmountRole);
}
void TransactionView::copyTxID()
{
GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::TxIDRole);
}
void TransactionView::editLabel()
{
if(!transactionView->selectionModel() ||!model)
return;
QModelIndexList selection = transactionView->selectionModel()->selectedRows();
if(!selection.isEmpty())
{
AddressTableModel *addressBook = model->getAddressTableModel();
if(!addressBook)
return;
QString address = selection.at(0).data(TransactionTableModel::AddressRole).toString();
if(address.isEmpty())
{
// If this transaction has no associated address, exit
return;
}
// Is address in address book? Address book can miss address when a transaction is
// sent from outside the UI.
int idx = addressBook->lookupAddress(address);
if(idx != -1)
{
// Edit sending / receiving address
QModelIndex modelIdx = addressBook->index(idx, 0, QModelIndex());
// Determine type of address, launch appropriate editor dialog type
QString type = modelIdx.data(AddressTableModel::TypeRole).toString();
EditAddressDialog dlg(type==AddressTableModel::Receive
? EditAddressDialog::EditReceivingAddress
: EditAddressDialog::EditSendingAddress,
this);
dlg.setModel(addressBook);
dlg.loadRow(idx);
dlg.exec();
}
else
{
// Add sending address
EditAddressDialog dlg(EditAddressDialog::NewSendingAddress,
this);
dlg.setModel(addressBook);
dlg.setAddress(address);
dlg.exec();
}
}
}
void TransactionView::showDetails()
{
if(!transactionView->selectionModel())
return;
QModelIndexList selection = transactionView->selectionModel()->selectedRows();
if(!selection.isEmpty())
{
TransactionDescDialog dlg(selection.at(0));
dlg.exec();
}
}
QWidget *TransactionView::createDateRangeWidget()
{
dateRangeWidget = new QFrame();
dateRangeWidget->setFrameStyle(QFrame::Panel | QFrame::Raised);
dateRangeWidget->setContentsMargins(1,1,1,1);
QHBoxLayout *layout = new QHBoxLayout(dateRangeWidget);
layout->setContentsMargins(0,0,0,0);
layout->addSpacing(23);
layout->addWidget(new QLabel(tr("Range:")));
dateFrom = new QDateTimeEdit(this);
dateFrom->setDisplayFormat("dd/MM/yy");
dateFrom->setCalendarPopup(true);
dateFrom->setMinimumWidth(100);
dateFrom->setDate(QDate::currentDate().addDays(-7));
layout->addWidget(dateFrom);
layout->addWidget(new QLabel(tr("to")));
dateTo = new QDateTimeEdit(this);
dateTo->setDisplayFormat("dd/MM/yy");
dateTo->setCalendarPopup(true);
dateTo->setMinimumWidth(100);
dateTo->setDate(QDate::currentDate());
layout->addWidget(dateTo);
layout->addStretch();
// Hide by default
dateRangeWidget->setVisible(false);
// Notify on change
connect(dateFrom, SIGNAL(dateChanged(QDate)), this, SLOT(dateRangeChanged()));
connect(dateTo, SIGNAL(dateChanged(QDate)), this, SLOT(dateRangeChanged()));
return dateRangeWidget;
}
void TransactionView::dateRangeChanged()
{
if(!transactionProxyModel)
return;
transactionProxyModel->setDateRange(
QDateTime(dateFrom->date()),
QDateTime(dateTo->date()).addDays(1));
}
void TransactionView::focusTransaction(const QModelIndex &idx)
{
if(!transactionProxyModel)
return;
QModelIndex targetIdx = transactionProxyModel->mapFromSource(idx);
transactionView->scrollTo(targetIdx);
transactionView->setCurrentIndex(targetIdx);
transactionView->setFocus();
}
| [
"[email protected]"
] | |
5a75a1f1806cea5b35d425092e824970d633a91c | 6a1cc167ca55bb52ba24c76bf87c5e325625ca93 | /dsa-assignment1/wor/board.h | b80629c7ef4f0187efe19954f4c459615e3e18a9 | [] | no_license | stellalie/dsa | 94948a9dc93a03e100cc7f074bd6251d04227e2d | 5b5de71ddd2ff521214b4d7b731c51a48e4dd47b | refs/heads/master | 2021-01-13T04:21:48.608309 | 2012-04-01T13:43:22 | 2012-04-01T13:43:22 | 3,892,724 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,334 | h | #ifndef _BOARD_H
#define _BOARD_H
#include "constants.h"
#include "piece.h"
#include "move.h"
class board
{
// the board object manages the board.
// Particularly, which pieces are on each square
private:
// the array that hold the board square and which pieces are on it
piece* squares[MAXDIM][MAXDIM];
void setupBoard();
void clone(board* other);
void clear();
// private methods for printing sections of the board
void printRow(int y);
void printMiddleLine();
void printOuterLine();
void printBottomLine();
piece* getPiece(int x, int y);
public:
board();
board(board *other);
~board();
void printBoard();
void printScore();
bool movePiece(PieceColor playerColor, move theMove);
bool insideBoardBoundaries(int xx, int yy);
bool legalMove(PieceColor playerColor, move theMove);
PieceColor getPieceColor(int x, int y);
PieceType getPieceType(int x, int y);
int whiteTotal();
int blackTotal();
int numWhite();
int numBlack();
int numPieces(PieceColor playerColor);
int currentScore(PieceColor playerColor);
};
#endif
| [
"[email protected]"
] | |
1313fcafcf78e4f327aa5cb977a9d12860132529 | c5ba091cb650334f8538409bff1947d8d35d1ddd | /Coding/fw/lib/IO/io.cpp | 51be80809e80b38706c3597c6afc5367035da07f | [
"BSD-3-Clause"
] | permissive | zengqz98/esp32-can-iot | d457b2ad9c06868c2b71b933e9ee838285dee3d0 | 7d3f17cc18107fe80ecb2b8c116964ef7bebb800 | refs/heads/master | 2023-03-11T17:58:16.487406 | 2021-02-23T06:39:56 | 2021-02-23T06:39:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,743 | cpp | /* MIT License
*
* Copyright (c) 2019 - 2020 Andreas Merkle <[email protected]>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
/****************************************************************************************************/
/**
@brief I/O abstraction
@author Andreas Merkle <[email protected]>
@addtogroup HAL
@{
@file io.cpp
@ref io.h
* @}
***************************************************************************************************/
/* INCLUDES ***************************************************************************************/
#include <io.h>
/* C-Interface ************************************************************************************/
extern "C"
{
}
/* CONSTANTS **************************************************************************************/
/* MACROS *****************************************************************************************/
/* TYPES ******************************************************************************************/
/* PROTOTYPES *************************************************************************************/
/* VARIABLES **************************************************************************************/
/* PUBLIC METHODES ********************************************************************************/
/* PROTECTED METHODES *****************************************************************************/
/* PRIVATE METHODES *******************************************************************************/
/* EXTERNAL FUNCTIONS *****************************************************************************/
/* INTERNAL FUNCTIONS *****************************************************************************/
| [
"[email protected]"
] | |
9ffd1cf455a188889c98bcc0531d41491e0adc7c | 579b1e5d59fcd2906a0bcfaea28bbe883e00955d | /Maximum of all subarrays of size k.cpp | 3af9769a3a7afea35b2192fee95f895d432d5da0 | [] | no_license | Ashish-kumar7/Must-do-interview-preparation-gfg | 61d49331d649accfa176972384f1be9b2263836c | e6745ed9dfe5833e9cfa610af945a4c296ba4a18 | refs/heads/master | 2023-08-16T17:07:36.716682 | 2020-10-04T18:52:52 | 2020-10-04T18:52:52 | 282,170,669 | 4 | 1 | null | 2022-11-07T07:52:44 | 2020-07-24T08:52:12 | C++ | UTF-8 | C++ | false | false | 708 | cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
//code
int t;
cin>>t;
while(t--){
int n;
cin>>n;
int k;
cin>>k;
int nums[n];
for(int i=0;i<n;i++){
cin>>nums[i];
}
vector<int>V;
deque<int>dq;
vector<int>ans;
for(int i=0;i<n;i++){
if(!dq.empty() && dq.front()<=(i-k)){
dq.pop_front();
}
while(!dq.empty() && nums[dq.back()]<nums[i]){
dq.pop_back();
}
dq.push_back(i);
if(i>=k-1){
ans.push_back(nums[dq.front()]);
}
}
for(int i=0;i<ans.size();i++){
cout<<ans[i]<<" ";
}
cout<<endl;
}
return 0;
} | [
"[email protected]"
] | |
f3fd4f45f33092dcac643a93aa81e75cf443e7c6 | 0dd888bd2cff61c3a8fda77bc04fd6430d2f3a7f | /include/xpln/obj/manipulators/embeddable/AttrAxisDetentRange.h | 6c384f27dfb1b51636f90db1cfd8503575c0d9f9 | [
"BSD-3-Clause"
] | permissive | steptosky/XplnObj | 48af5a2578e99e724f3087c26df1fc59fd6a2b44 | 06fb98aa325b49da68739d5409945d058f8e46cc | refs/heads/master | 2021-01-19T00:29:05.129791 | 2018-11-27T11:26:14 | 2018-11-27T11:26:14 | 87,170,493 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,915 | h | #pragma once
/*
** Copyright(C) 2018, StepToSky
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are met:
**
** 1.Redistributions of source code must retain the above copyright notice, this
** list of conditions and the following disclaimer.
** 2.Redistributions in binary form must reproduce the above copyright notice,
** this list of conditions and the following disclaimer in the documentation
** and / or other materials provided with the distribution.
** 3.Neither the name of StepToSky nor the names of its contributors
** may be used to endorse or promote products derived from this software
** without specific prior written permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
** DISCLAIMED.IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
** ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
** (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
** LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
** ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**
** Contacts: www.steptosky.com
*/
#include <cstddef>
#include "xpln/Export.h"
namespace xobj {
class AbstractWriter;
/********************************************************************************************************/
//////////////////////////////////////////////////////////////////////////////////////////////////////////
/********************************************************************************************************/
/*!
* \details ATTR_axis_detent_range
* \ingroup Manipulators
*/
class AttrAxisDetentRange {
public:
//-------------------------------------------------------------------------
AttrAxisDetentRange() = default;
AttrAxisDetentRange(const float start, const float end, const float height)
: mStart(start),
mEnd(end),
mHeight(height) {}
AttrAxisDetentRange(const AttrAxisDetentRange &) = default;
AttrAxisDetentRange(AttrAxisDetentRange &&) = default;
virtual ~AttrAxisDetentRange() = default;
AttrAxisDetentRange & operator=(const AttrAxisDetentRange &) = default;
AttrAxisDetentRange & operator=(AttrAxisDetentRange &&) = default;
//-------------------------------------------------------------------------
XpObjLib bool operator==(const AttrAxisDetentRange & other) const;
XpObjLib bool operator!=(const AttrAxisDetentRange & other) const;
//-------------------------------------------------------------------------
XpObjLib void setStart(float val);
XpObjLib void setEnd(float val);
XpObjLib void setHeight(float val);
XpObjLib float start() const;
XpObjLib float end() const;
XpObjLib float height() const;
//-------------------------------------------------------------------------
/*! \copydoc AttrManipBase::printObj */
XpObjLib std::size_t printObj(AbstractWriter & writer) const;
//-------------------------------------------------------------------------
private:
float mStart = 0.0f;
float mEnd = 0.0f;
float mHeight = 0.0f;
};
/********************************************************************************************************/
//////////////////////////////////////////////////////////////////////////////////////////////////////////
/********************************************************************************************************/
}
| [
"[email protected]"
] | |
286db01ff5f1a5eddd826661334110fb6b652e12 | 1af49694004c6fbc31deada5618dae37255ce978 | /cc/trees/property_tree_unittest.cc | 489ece12ea2667f58c36254fffc5ce3a87e9fde9 | [
"BSD-3-Clause"
] | permissive | sadrulhc/chromium | 59682b173a00269ed036eee5ebfa317ba3a770cc | a4b950c23db47a0fdd63549cccf9ac8acd8e2c41 | refs/heads/master | 2023-02-02T07:59:20.295144 | 2020-12-01T21:32:32 | 2020-12-01T21:32:32 | 317,678,056 | 3 | 0 | BSD-3-Clause | 2020-12-01T21:56:26 | 2020-12-01T21:56:25 | null | UTF-8 | C++ | false | false | 23,894 | cc | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/trees/property_tree.h"
#include <utility>
#include "cc/input/main_thread_scrolling_reason.h"
#include "cc/test/geometry_test_utils.h"
#include "cc/trees/clip_node.h"
#include "cc/trees/draw_property_utils.h"
#include "cc/trees/effect_node.h"
#include "cc/trees/scroll_node.h"
#include "cc/trees/transform_node.h"
#include "components/viz/common/frame_sinks/copy_output_request.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace cc {
namespace {
TEST(PropertyTreeTest, ComputeTransformRoot) {
PropertyTrees property_trees;
TransformTree& tree = property_trees.transform_tree;
TransformNode contents_root;
contents_root.local.Translate(2, 2);
contents_root.id = tree.Insert(contents_root, 0);
tree.UpdateTransforms(1);
gfx::Transform expected;
gfx::Transform transform;
expected.Translate(2, 2);
tree.CombineTransformsBetween(1, 0, &transform);
EXPECT_TRANSFORMATION_MATRIX_EQ(expected, transform);
transform.MakeIdentity();
expected.MakeIdentity();
expected.Translate(-2, -2);
bool success = tree.CombineInversesBetween(0, 1, &transform);
EXPECT_TRUE(success);
EXPECT_TRANSFORMATION_MATRIX_EQ(expected, transform);
}
TEST(PropertyTreeTest, SetNeedsUpdate) {
PropertyTrees property_trees;
TransformTree& tree = property_trees.transform_tree;
TransformNode contents_root;
contents_root.id = tree.Insert(contents_root, 0);
EXPECT_FALSE(tree.needs_update());
tree.SetRootScaleAndTransform(0.6f, gfx::Transform());
EXPECT_TRUE(tree.needs_update());
tree.set_needs_update(false);
tree.SetRootScaleAndTransform(0.6f, gfx::Transform());
EXPECT_FALSE(tree.needs_update());
}
TEST(PropertyTreeTest, ComputeTransformChild) {
PropertyTrees property_trees;
TransformTree& tree = property_trees.transform_tree;
TransformNode contents_root;
contents_root.local.Translate(2, 2);
contents_root.id = tree.Insert(contents_root, 0);
tree.UpdateTransforms(contents_root.id);
TransformNode child;
child.local.Translate(3, 3);
child.id = tree.Insert(child, contents_root.id);
tree.UpdateTransforms(child.id);
gfx::Transform expected;
gfx::Transform transform;
expected.Translate(3, 3);
tree.CombineTransformsBetween(2, 1, &transform);
EXPECT_TRANSFORMATION_MATRIX_EQ(expected, transform);
transform.MakeIdentity();
expected.MakeIdentity();
expected.Translate(-3, -3);
bool success = tree.CombineInversesBetween(1, 2, &transform);
EXPECT_TRUE(success);
EXPECT_TRANSFORMATION_MATRIX_EQ(expected, transform);
transform.MakeIdentity();
expected.MakeIdentity();
expected.Translate(5, 5);
tree.CombineTransformsBetween(2, 0, &transform);
EXPECT_TRANSFORMATION_MATRIX_EQ(expected, transform);
transform.MakeIdentity();
expected.MakeIdentity();
expected.Translate(-5, -5);
success = tree.CombineInversesBetween(0, 2, &transform);
EXPECT_TRUE(success);
EXPECT_TRANSFORMATION_MATRIX_EQ(expected, transform);
}
TEST(PropertyTreeTest, ComputeTransformSibling) {
PropertyTrees property_trees;
TransformTree& tree = property_trees.transform_tree;
TransformNode contents_root;
contents_root.local.Translate(2, 2);
contents_root.id = tree.Insert(contents_root, 0);
tree.UpdateTransforms(1);
TransformNode child;
child.local.Translate(3, 3);
child.id = tree.Insert(child, 1);
TransformNode sibling;
sibling.local.Translate(7, 7);
sibling.id = tree.Insert(sibling, 1);
tree.UpdateTransforms(2);
tree.UpdateTransforms(3);
gfx::Transform expected;
gfx::Transform transform;
expected.Translate(4, 4);
tree.CombineTransformsBetween(3, 2, &transform);
EXPECT_TRANSFORMATION_MATRIX_EQ(expected, transform);
transform.MakeIdentity();
expected.MakeIdentity();
expected.Translate(-4, -4);
bool success = tree.CombineInversesBetween(2, 3, &transform);
EXPECT_TRUE(success);
EXPECT_TRANSFORMATION_MATRIX_EQ(expected, transform);
}
TEST(PropertyTreeTest, ComputeTransformSiblingSingularAncestor) {
// In this test, we have the following tree:
// root
// + singular
// + child
// + sibling
// Since the lowest common ancestor of |child| and |sibling| has a singular
// transform, we cannot use screen space transforms to compute change of
// basis
// transforms between these nodes.
PropertyTrees property_trees;
TransformTree& tree = property_trees.transform_tree;
TransformNode contents_root;
contents_root.local.Translate(2, 2);
contents_root.id = tree.Insert(contents_root, 0);
tree.UpdateTransforms(1);
TransformNode singular;
singular.local.matrix().set(2, 2, 0.0);
singular.id = tree.Insert(singular, 1);
TransformNode child;
child.local.Translate(3, 3);
child.id = tree.Insert(child, 2);
TransformNode sibling;
sibling.local.Translate(7, 7);
sibling.id = tree.Insert(sibling, 2);
tree.UpdateTransforms(2);
tree.UpdateTransforms(3);
tree.UpdateTransforms(4);
gfx::Transform expected;
gfx::Transform transform;
expected.Translate(4, 4);
tree.CombineTransformsBetween(4, 3, &transform);
EXPECT_TRANSFORMATION_MATRIX_EQ(expected, transform);
transform.MakeIdentity();
expected.MakeIdentity();
expected.Translate(-4, -4);
bool success = tree.CombineInversesBetween(3, 4, &transform);
EXPECT_TRUE(success);
EXPECT_TRANSFORMATION_MATRIX_EQ(expected, transform);
}
TEST(PropertyTreeTest, TransformsWithFlattening) {
PropertyTrees property_trees;
TransformTree& tree = property_trees.transform_tree;
EffectTree& effect_tree = property_trees.effect_tree;
int grand_parent = tree.Insert(TransformNode(), 0);
int effect_grand_parent = effect_tree.Insert(EffectNode(), 0);
effect_tree.Node(effect_grand_parent)->render_surface_reason =
RenderSurfaceReason::kTest;
effect_tree.Node(effect_grand_parent)->transform_id = grand_parent;
effect_tree.Node(effect_grand_parent)->surface_contents_scale =
gfx::Vector2dF(1.f, 1.f);
gfx::Transform rotation_about_x;
rotation_about_x.RotateAboutXAxis(15);
int parent = tree.Insert(TransformNode(), grand_parent);
int effect_parent = effect_tree.Insert(EffectNode(), effect_grand_parent);
effect_tree.Node(effect_parent)->transform_id = parent;
effect_tree.Node(effect_parent)->render_surface_reason =
RenderSurfaceReason::kTest;
effect_tree.Node(effect_parent)->surface_contents_scale =
gfx::Vector2dF(1.f, 1.f);
tree.Node(parent)->local = rotation_about_x;
int child = tree.Insert(TransformNode(), parent);
tree.Node(child)->flattens_inherited_transform = true;
tree.Node(child)->local = rotation_about_x;
int grand_child = tree.Insert(TransformNode(), child);
tree.Node(grand_child)->flattens_inherited_transform = true;
tree.Node(grand_child)->local = rotation_about_x;
tree.set_needs_update(true);
draw_property_utils::ComputeTransforms(&tree);
property_trees.ResetCachedData();
gfx::Transform flattened_rotation_about_x = rotation_about_x;
flattened_rotation_about_x.FlattenTo2d();
gfx::Transform to_target;
property_trees.GetToTarget(child, effect_parent, &to_target);
EXPECT_TRANSFORMATION_MATRIX_EQ(rotation_about_x, to_target);
EXPECT_TRANSFORMATION_MATRIX_EQ(flattened_rotation_about_x * rotation_about_x,
tree.ToScreen(child));
property_trees.GetToTarget(grand_child, effect_parent, &to_target);
EXPECT_TRANSFORMATION_MATRIX_EQ(flattened_rotation_about_x * rotation_about_x,
to_target);
EXPECT_TRANSFORMATION_MATRIX_EQ(flattened_rotation_about_x *
flattened_rotation_about_x *
rotation_about_x,
tree.ToScreen(grand_child));
gfx::Transform grand_child_to_child;
tree.CombineTransformsBetween(grand_child, child, &grand_child_to_child);
EXPECT_TRANSFORMATION_MATRIX_EQ(rotation_about_x, grand_child_to_child);
// Remove flattening at grand_child, and recompute transforms.
tree.Node(grand_child)->flattens_inherited_transform = false;
tree.set_needs_update(true);
draw_property_utils::ComputeTransforms(&tree);
property_trees.GetToTarget(grand_child, effect_parent, &to_target);
EXPECT_TRANSFORMATION_MATRIX_EQ(rotation_about_x * rotation_about_x,
to_target);
EXPECT_TRANSFORMATION_MATRIX_EQ(
flattened_rotation_about_x * rotation_about_x * rotation_about_x,
tree.ToScreen(grand_child));
grand_child_to_child.MakeIdentity();
tree.CombineTransformsBetween(grand_child, child, &grand_child_to_child);
EXPECT_TRANSFORMATION_MATRIX_EQ(rotation_about_x, grand_child_to_child);
}
TEST(PropertyTreeTest, MultiplicationOrder) {
PropertyTrees property_trees;
TransformTree& tree = property_trees.transform_tree;
TransformNode contents_root;
contents_root.local.Translate(2, 2);
contents_root.id = tree.Insert(contents_root, 0);
tree.UpdateTransforms(1);
TransformNode child;
child.local.Scale(2, 2);
child.id = tree.Insert(child, 1);
tree.UpdateTransforms(2);
gfx::Transform expected;
expected.Translate(2, 2);
expected.Scale(2, 2);
gfx::Transform transform;
gfx::Transform inverse;
tree.CombineTransformsBetween(2, 0, &transform);
EXPECT_TRANSFORMATION_MATRIX_EQ(expected, transform);
bool success = tree.CombineInversesBetween(0, 2, &inverse);
EXPECT_TRUE(success);
transform = transform * inverse;
expected.MakeIdentity();
EXPECT_TRANSFORMATION_MATRIX_EQ(expected, transform);
}
TEST(PropertyTreeTest, ComputeTransformWithUninvertibleTransform) {
PropertyTrees property_trees;
TransformTree& tree = property_trees.transform_tree;
TransformNode contents_root;
contents_root.id = tree.Insert(contents_root, 0);
tree.UpdateTransforms(1);
TransformNode child;
child.local.Scale(0, 0);
child.id = tree.Insert(child, 1);
tree.UpdateTransforms(2);
gfx::Transform expected;
expected.Scale(0, 0);
gfx::Transform transform;
gfx::Transform inverse;
tree.CombineTransformsBetween(2, 1, &transform);
EXPECT_TRANSFORMATION_MATRIX_EQ(expected, transform);
// To compute this would require inverting the 0 matrix, so we cannot
// succeed.
bool success = tree.CombineInversesBetween(1, 2, &inverse);
EXPECT_FALSE(success);
}
TEST(PropertyTreeTest, ComputeTransformToTargetWithZeroSurfaceContentsScale) {
PropertyTrees property_trees;
TransformTree& tree = property_trees.transform_tree;
TransformNode contents_root;
contents_root.id = tree.Insert(contents_root, 0);
tree.UpdateTransforms(1);
TransformNode grand_parent;
grand_parent.local.Scale(2.f, 0.f);
int grand_parent_id = tree.Insert(grand_parent, 1);
tree.UpdateTransforms(grand_parent_id);
TransformNode parent;
parent.local.Translate(1.f, 1.f);
int parent_id = tree.Insert(parent, grand_parent_id);
tree.UpdateTransforms(parent_id);
TransformNode child;
child.local.Translate(3.f, 4.f);
int child_id = tree.Insert(child, parent_id);
tree.UpdateTransforms(child_id);
gfx::Transform expected_transform;
expected_transform.Translate(4.f, 5.f);
gfx::Transform transform;
tree.CombineTransformsBetween(child_id, grand_parent_id, &transform);
EXPECT_TRANSFORMATION_MATRIX_EQ(expected_transform, transform);
tree.Node(grand_parent_id)->local.MakeIdentity();
tree.Node(grand_parent_id)->local.Scale(0.f, 2.f);
tree.Node(grand_parent_id)->needs_local_transform_update = true;
tree.set_needs_update(true);
draw_property_utils::ComputeTransforms(&tree);
transform.MakeIdentity();
tree.CombineTransformsBetween(child_id, grand_parent_id, &transform);
EXPECT_TRANSFORMATION_MATRIX_EQ(expected_transform, transform);
tree.Node(grand_parent_id)->local.MakeIdentity();
tree.Node(grand_parent_id)->local.Scale(0.f, 0.f);
tree.Node(grand_parent_id)->needs_local_transform_update = true;
tree.set_needs_update(true);
draw_property_utils::ComputeTransforms(&tree);
transform.MakeIdentity();
tree.CombineTransformsBetween(child_id, grand_parent_id, &transform);
EXPECT_TRANSFORMATION_MATRIX_EQ(expected_transform, transform);
}
TEST(PropertyTreeTest, FlatteningWhenDestinationHasOnlyFlatAncestors) {
// This tests that flattening is performed correctly when
// destination and its ancestors are flat, but there are 3d transforms
// and flattening between the source and destination.
PropertyTrees property_trees;
TransformTree& tree = property_trees.transform_tree;
int parent = tree.Insert(TransformNode(), 0);
tree.Node(parent)->local.Translate(2, 2);
gfx::Transform rotation_about_x;
rotation_about_x.RotateAboutXAxis(15);
int child = tree.Insert(TransformNode(), parent);
tree.Node(child)->local = rotation_about_x;
int grand_child = tree.Insert(TransformNode(), child);
tree.Node(grand_child)->flattens_inherited_transform = true;
tree.set_needs_update(true);
draw_property_utils::ComputeTransforms(&tree);
gfx::Transform flattened_rotation_about_x = rotation_about_x;
flattened_rotation_about_x.FlattenTo2d();
gfx::Transform grand_child_to_parent;
tree.CombineTransformsBetween(grand_child, parent, &grand_child_to_parent);
EXPECT_TRANSFORMATION_MATRIX_EQ(flattened_rotation_about_x,
grand_child_to_parent);
}
TEST(PropertyTreeTest, ScreenSpaceOpacityUpdateTest) {
// This tests that screen space opacity is updated for the subtree when
// opacity of a node changes.
PropertyTrees property_trees;
EffectTree& tree = property_trees.effect_tree;
int parent = tree.Insert(EffectNode(), 0);
int child = tree.Insert(EffectNode(), parent);
EXPECT_EQ(tree.Node(child)->screen_space_opacity, 1.f);
tree.Node(parent)->opacity = 0.5f;
tree.set_needs_update(true);
draw_property_utils::ComputeEffects(&tree);
EXPECT_EQ(tree.Node(child)->screen_space_opacity, 0.5f);
tree.Node(child)->opacity = 0.5f;
tree.set_needs_update(true);
draw_property_utils::ComputeEffects(&tree);
EXPECT_EQ(tree.Node(child)->screen_space_opacity, 0.25f);
}
TEST(PropertyTreeTest, SingularTransformSnapTest) {
// This tests that to_target transform is not snapped when it has a singular
// transform.
PropertyTrees property_trees;
TransformTree& tree = property_trees.transform_tree;
EffectTree& effect_tree = property_trees.effect_tree;
int parent = tree.Insert(TransformNode(), 0);
int effect_parent = effect_tree.Insert(EffectNode(), 0);
effect_tree.Node(effect_parent)->render_surface_reason =
RenderSurfaceReason::kTest;
effect_tree.Node(effect_parent)->surface_contents_scale =
gfx::Vector2dF(1.f, 1.f);
tree.Node(parent)->scrolls = true;
int child = tree.Insert(TransformNode(), parent);
TransformNode* child_node = tree.Node(child);
child_node->scrolls = true;
child_node->local.Scale3d(6.0f, 6.0f, 0.0f);
child_node->local.Translate(1.3f, 1.3f);
tree.set_needs_update(true);
draw_property_utils::ComputeTransforms(&tree);
property_trees.ResetCachedData();
gfx::Transform from_target;
gfx::Transform to_target;
property_trees.GetToTarget(child, effect_parent, &to_target);
EXPECT_FALSE(to_target.GetInverse(&from_target));
// The following checks are to ensure that snapping is skipped because of
// singular transform (and not because of other reasons which also cause
// snapping to be skipped).
EXPECT_TRUE(child_node->scrolls);
property_trees.GetToTarget(child, effect_parent, &to_target);
EXPECT_TRUE(to_target.IsScaleOrTranslation());
EXPECT_FALSE(child_node->to_screen_is_potentially_animated);
EXPECT_FALSE(child_node->ancestors_are_invertible);
gfx::Transform rounded;
property_trees.GetToTarget(child, effect_parent, &rounded);
rounded.RoundTranslationComponents();
property_trees.GetToTarget(child, effect_parent, &to_target);
EXPECT_NE(to_target, rounded);
}
// Tests that CopyOutputRequests are transformed by the EffectTree, such that
// assumptions the original requestor made about coordinate spaces remains true
// after the EffectTree transforms the requests.
TEST(EffectTreeTest, CopyOutputRequestsAreTransformed) {
using viz::CopyOutputRequest;
PropertyTrees property_trees;
TransformTree& transform_tree = property_trees.transform_tree;
TransformNode contents_root;
contents_root.local.Scale(2, 2);
contents_root.id = transform_tree.Insert(contents_root, 0);
transform_tree.UpdateTransforms(contents_root.id);
EffectTree& effect_tree = property_trees.effect_tree;
EffectNode effect_node;
effect_node.render_surface_reason = RenderSurfaceReason::kTest;
effect_node.has_copy_request = true;
effect_node.transform_id = contents_root.id;
effect_node.id = effect_tree.Insert(effect_node, 0);
effect_tree.UpdateEffects(effect_node.id);
// A CopyOutputRequest with only its area set should be transformed into one
// that is scaled by two. In this case, by specifying no result selection, the
// requestor has indicated they want all the pixels, regardless of size. Thus,
// the result selection and scale ratio should still be unset in the
// transformed request to carry-over those semantics.
auto request_in = CopyOutputRequest::CreateStubForTesting();
request_in->set_area(gfx::Rect(10, 20, 30, 40));
effect_tree.AddCopyRequest(effect_node.id, std::move(request_in));
std::vector<std::unique_ptr<CopyOutputRequest>> requests_out;
effect_tree.TakeCopyRequestsAndTransformToSurface(effect_node.id,
&requests_out);
ASSERT_EQ(1u, requests_out.size());
const CopyOutputRequest* request_out = requests_out.front().get();
ASSERT_TRUE(request_out->has_area());
EXPECT_EQ(gfx::Rect(20, 40, 60, 80), request_out->area());
EXPECT_FALSE(request_out->has_result_selection());
EXPECT_FALSE(request_out->is_scaled());
// A CopyOutputRequest with its area and result selection set, but no scaling
// specified, should be transformed into one that has its area scaled by two,
// but now also includes a scale ratio of 1/2. This is because the requestor
// had originally specified a result selection under old assumptions about the
// source coordinate system.
request_in = CopyOutputRequest::CreateStubForTesting();
request_in->set_area(gfx::Rect(10, 20, 30, 40));
request_in->set_result_selection(gfx::Rect(1, 2, 3, 4));
effect_tree.AddCopyRequest(effect_node.id, std::move(request_in));
requests_out.clear();
effect_tree.TakeCopyRequestsAndTransformToSurface(effect_node.id,
&requests_out);
ASSERT_EQ(1u, requests_out.size());
request_out = requests_out.front().get();
ASSERT_TRUE(request_out->has_area());
EXPECT_EQ(gfx::Rect(20, 40, 60, 80), request_out->area());
ASSERT_TRUE(request_out->has_result_selection());
EXPECT_EQ(gfx::Rect(1, 2, 3, 4), request_out->result_selection());
ASSERT_TRUE(request_out->is_scaled());
EXPECT_NEAR(0.5f,
static_cast<float>(request_out->scale_to().x()) /
request_out->scale_from().x(),
0.000001);
EXPECT_NEAR(0.5f,
static_cast<float>(request_out->scale_to().y()) /
request_out->scale_from().y(),
0.000001);
// A CopyOutputRequest with all three of: area, result selection, and scale
// ratio; should be transformed into one with an updated area and combined
// scale ratio.
request_in = CopyOutputRequest::CreateStubForTesting();
request_in->set_area(gfx::Rect(10, 20, 30, 40));
request_in->set_result_selection(gfx::Rect(1, 2, 3, 4));
// Request has a 3X scale in X, and 5X scale in Y.
request_in->SetScaleRatio(gfx::Vector2d(1, 1), gfx::Vector2d(3, 5));
effect_tree.AddCopyRequest(effect_node.id, std::move(request_in));
requests_out.clear();
effect_tree.TakeCopyRequestsAndTransformToSurface(effect_node.id,
&requests_out);
ASSERT_EQ(1u, requests_out.size());
request_out = requests_out.front().get();
ASSERT_TRUE(request_out->has_area());
EXPECT_EQ(gfx::Rect(20, 40, 60, 80), request_out->area());
ASSERT_TRUE(request_out->has_result_selection());
EXPECT_EQ(gfx::Rect(1, 2, 3, 4), request_out->result_selection());
ASSERT_TRUE(request_out->is_scaled());
EXPECT_NEAR(3.0f / 2.0f,
static_cast<float>(request_out->scale_to().x()) /
request_out->scale_from().x(),
0.000001);
EXPECT_NEAR(5.0f / 2.0f,
static_cast<float>(request_out->scale_to().y()) /
request_out->scale_from().y(),
0.000001);
}
// Tests that a good CopyOutputRequest which becomes transformed into an invalid
// one is dropped (i.e., the requestor would get an "empty response" in its
// result callback). The scaling transform in this test is so extreme that it
// would result in an illegal adjustment to the CopyOutputRequest's scale ratio.
TEST(EffectTreeTest, CopyOutputRequestsThatBecomeIllegalAreDropped) {
using viz::CopyOutputRequest;
PropertyTrees property_trees;
TransformTree& transform_tree = property_trees.transform_tree;
TransformNode contents_root;
contents_root.local.Scale(1.0f / 1.0e9f, 1.0f / 1.0e9f);
contents_root.id = transform_tree.Insert(contents_root, 0);
transform_tree.UpdateTransforms(contents_root.id);
EffectTree& effect_tree = property_trees.effect_tree;
EffectNode effect_node;
effect_node.render_surface_reason = RenderSurfaceReason::kTest;
effect_node.has_copy_request = true;
effect_node.transform_id = contents_root.id;
effect_node.id = effect_tree.Insert(effect_node, 0);
effect_tree.UpdateEffects(effect_node.id);
auto request_in = CopyOutputRequest::CreateStubForTesting();
request_in->set_area(gfx::Rect(10, 20, 30, 40));
request_in->set_result_selection(gfx::Rect(1, 2, 3, 4));
request_in->SetScaleRatio(gfx::Vector2d(1, 1), gfx::Vector2d(3, 5));
effect_tree.AddCopyRequest(effect_node.id, std::move(request_in));
std::vector<std::unique_ptr<CopyOutputRequest>> requests_out;
effect_tree.TakeCopyRequestsAndTransformToSurface(effect_node.id,
&requests_out);
EXPECT_TRUE(requests_out.empty());
}
// Tests that GetPixelSnappedScrollOffset cannot return a negative offset, even
// when the snap amount is larger than the scroll offset. The snap amount can be
// (fractionally) larger due to floating point precision errors, and if the
// scroll offset is near zero that can naively lead to a negative offset being
// returned which is not desirable.
TEST(ScrollTreeTest, GetPixelSnappedScrollOffsetNegativeOffset) {
PropertyTrees property_trees;
ScrollTree& scroll_tree = property_trees.scroll_tree;
TransformTree& transform_tree = property_trees.transform_tree;
ElementId element_id(5);
int transform_node_id = transform_tree.Insert(TransformNode(), 0);
int scroll_node_id = scroll_tree.Insert(ScrollNode(), 0);
scroll_tree.Node(scroll_node_id)->transform_id = transform_node_id;
scroll_tree.Node(scroll_node_id)->element_id = element_id;
// Set a scroll value close to 0.
scroll_tree.SetScrollOffset(element_id, gfx::ScrollOffset(0, 0.1));
transform_tree.Node(transform_node_id)->scrolls = true;
transform_tree.Node(transform_node_id)->scroll_offset =
gfx::ScrollOffset(0, 0.1);
// Pretend that the snap amount was slightly larger than 0.1.
transform_tree.Node(transform_node_id)->snap_amount = gfx::Vector2dF(0, 0.2);
transform_tree.Node(transform_node_id)->needs_local_transform_update = false;
// The returned offset should be clamped at a minimum of 0.
gfx::ScrollOffset offset =
scroll_tree.GetPixelSnappedScrollOffset(scroll_node_id);
EXPECT_EQ(offset.y(), 0);
}
} // namespace
} // namespace cc
| [
"[email protected]"
] | |
6d98a99d57540e042d817ac09ee1ab9954c23e36 | 73ee941896043f9b3e2ab40028d24ddd202f695f | /external/chromium_org/chrome/browser/ui/app_list/search/mixer.h | 4f11aeac50ad87fd5863f0a58d46220907a1703c | [
"BSD-3-Clause"
] | permissive | CyFI-Lab-Public/RetroScope | d441ea28b33aceeb9888c330a54b033cd7d48b05 | 276b5b03d63f49235db74f2c501057abb9e79d89 | refs/heads/master | 2022-04-08T23:11:44.482107 | 2016-09-22T20:15:43 | 2016-09-22T20:15:43 | 58,890,600 | 5 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,794 | h | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_APP_LIST_SEARCH_MIXER_H_
#define CHROME_BROWSER_UI_APP_LIST_SEARCH_MIXER_H_
#include "base/basictypes.h"
#include "base/memory/scoped_vector.h"
#include "chrome/browser/ui/app_list/search/history_types.h"
#include "ui/app_list/app_list_model.h"
namespace app_list {
class SearchProvider;
// Mixer collects results from providers, sorts them and publishes them to the
// SearchResults UI model. The targeted results have 6 slots to hold the
// result. These slots could be viewed as having three groups: main group
// (local apps and contacts), omnibox group and web store group. The
// main group takes no more than 4 slots. The web store takes no more than 2
// slots. The omnibox group takes all the remaining slots.
class Mixer {
public:
// The enum represents mixer groups. Note this must matches the order
// of group creation in Init().
enum GroupId {
MAIN_GROUP = 0,
OMNIBOX_GROUP = 1,
WEBSTORE_GROUP = 2,
};
explicit Mixer(AppListModel::SearchResults* ui_results);
~Mixer();
// Creates mixer groups.
void Init();
// Associates a provider with a mixer group.
void AddProviderToGroup(GroupId group, SearchProvider* provider);
// Collects the results, sorts and publishes them.
void MixAndPublish(const KnownResults& known_results);
private:
class Group;
typedef ScopedVector<Group> Groups;
void FetchResults(const KnownResults& known_results);
AppListModel::SearchResults* ui_results_; // Not owned.
Groups groups_;
DISALLOW_COPY_AND_ASSIGN(Mixer);
};
} // namespace app_list
#endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_MIXER_H_
| [
"[email protected]"
] | |
acb5a5b0aa86e81821bda526e829729b3aaca5ea | c10d51e7cb00afd7996c624183a46e5be9e70b8a | /Tree/inorderTraversal.cpp | 843564930fc101c389ecf6467e6a95f83757057c | [] | no_license | Ezhilan271/Competitve_Programming | 13dfbc280361c329f45c45adedca17a41ca5e2ac | d25571f95b8ca0428a232dc2c37d84d79c404f27 | refs/heads/main | 2023-02-19T21:55:27.512823 | 2021-01-25T08:37:00 | 2021-01-25T08:37:00 | 321,731,764 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 295 | cpp | void solve(Node *root, vector<int> &result)
{
if(root==nullptr)
return;
solve(root->left, result);
result.push_back(root->data);
solve(root->right, result);
}
vector<int> inOrder(struct Node *root) {
vector<int> result;
solve(root, result);
return result;
}
| [
"[email protected]"
] | |
c773aad8aba02a366e84ea2537a346a28e91864d | f320d378d6d0e21df97ba32cf49a9819cfb90c16 | /grafos/gabow.cpp | be38d9c35a86d947447ae0c55ae15e8d45e12a70 | [] | no_license | lucastdcj/maratona | 0ecf29e5e177ba3f096bc24ed47c06c367306ec5 | 11ab8cf19e89dc49c0e8852b8a079a3583604b1f | refs/heads/master | 2021-06-13T08:35:37.906630 | 2021-03-30T13:22:16 | 2021-03-30T13:22:16 | 68,003,342 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,080 | cpp | /*%
Emparelhamento Máximo Geral (Edmonds)
Autor: Davi Costa
Complexidade: O(n^3)
Testes: uva-11439, nuevo-4130, spojbr-ENGENHAR
Uso: CUIDADO - Nao utilizar o vertice 0
- Para cada aresta 'i' (sem direcao) u-v,
faca from[i] = u, to[i] = v e coloque i
na lista de adjacencia de ambos u e v.
- n e m devem ser utilizados obrigatoriamente.
- E() retorna o tamanho do emparalhamento (# de casais).
- mate[v] quando diferente de 0 indica que o vertice v esta
casado com mate[v]
%*/
#include <algorithm>
#include <queue>
#include <cstring>
using namespace std;
#define MAXN 110
#define MAXM MAXN*MAXN
/* FILL ME */
int n,m;
int adj[MAXN][MAXN], nadj[MAXN], from[MAXM], to[MAXM];
int mate[MAXN], first[MAXN], label[MAXN];
queue<int> q;
#define OUTER(x) (label[x] >= 0)
void L(int x, int y, int nxy) {
int join, v, r = first[x], s = first[y];
if (r == s) return;
nxy += n + 1;
label[r] = label[s] = -nxy;
while (1) {
if (s != 0) swap(r,s);
r = first[label[mate[r]]];
if (label[r] != -nxy) label[r] = -nxy;
else {
join = r;
break;
}
}
v = first[x];
while (v != join) {
if (!OUTER(v)) q.push(v);
label[v] = nxy; first[v] = join;
v = first[label[mate[v]]];
}
v = first[y];
while (v != join) {
if (!OUTER(v)) q.push(v);
label[v] = nxy; first[v] = join;
v = first[label[mate[v]]];
}
for (int i = 0; i <= n; i++) {
if (OUTER(i) && OUTER(first[i])) first[i] = join;
}
}
void R(int v, int w) {
int t = mate[v]; mate[v] = w;
if (mate[t] != v) return;
if (label[v] >= 1 && label[v] <= n) {
mate[t] = label[v];
R(label[v],t);
return;
}
int x = from[label[v]-n-1];
int y = to[label[v]-n-1];
R(x,y); R(y,x);
}
int E() {
memset(mate,0,sizeof(mate));
int r = 0;
bool e7;
for (int u = 1; u <= n; u++) {
memset(label,-1,sizeof(label));
while (!q.empty()) q.pop();
if (mate[u]) continue;
label[u] = first[u] = 0;
q.push(u); e7 = false;
while (!q.empty() && !e7) {
int x = q.front(); q.pop();
for (int i = 0; i < nadj[x]; i++) {
int y = from[adj[x][i]];
if (y == x) y = to[adj[x][i]];
if (!mate[y] && y != u) {
mate[y] = x; R(x,y);
r++; e7 = true;
break;
}
else if (OUTER(y)) L(x,y,adj[x][i]);
else {
int v = mate[y];
if (!OUTER(v)) {
label[v] = x; first[v] = y;
q.push(v);
}
}
}
}
label[0] = -1;
}
return r;
}
/**** Exemplo simples de uso ****/
int main() {
int f,t;
while (scanf("%d %d",&n,&m) == 2 && (n || m)) {
memset(nadj,0,sizeof(nadj));
for (int i = 0; i < m; i++) {
scanf("%d %d",&f,&t);
f++; t++; //nao utilizar o vertice 0
adj[f][nadj[f]++] = i;
adj[t][nadj[t]++] = i;
from[i] = f; to[i] = t;
}
printf("O emparelhamento tem tamanho %d\n",E());
for (int i = 1; i <= n; i++) {
if (mate[i] > i) {//para nao imprimir 2 vezes
printf("%d casa com %d\n",i-1,mate[i]-1);
}
}
}
return 0;
}
| [
"[email protected]"
] | |
de0305d6304f95d59a025fd71c7bef65a43141a1 | 7cca79a01bdfd355aee52324f925bf0294afc892 | /Libraries/MiKTeX/Web2CEmulation/w2cemu-version.h | 0204c86134b1f048cf86dd7c5ba40b4a1d95964f | [] | no_license | Amaterasu27/miktex | 739df0e7ec38b526f0add05e78b46368bebbb969 | ccdc4f388368069011f169f97aef643c353fab7d | refs/heads/master | 2021-01-23T04:20:30.678404 | 2015-04-11T13:59:12 | 2015-04-11T13:59:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 862 | h | /* w2cemu-version.h: version number -*- C++ -*-
Copyright (C) 2010-2013 Christian Schenk
This file 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, or (at your
option) any later version.
This file 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 file; if not, write to the Free Software
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
USA. */
#define MIKTEX_COMP_J2000_VERSION 4923
#include <miktex/Core/Version>
| [
"[email protected]"
] | |
20433f1a2414fe1aa522437539cedd81985bf769 | 5e6910a3e9a20b15717a88fd38d200d962faedb6 | /AtCoder/dp--M/u.cpp | 7bc52e8ed23831562d2719f067355a1d024e7919 | [] | no_license | khaledsliti/CompetitiveProgramming | f1ae55556d744784365bcedf7a9aaef7024c5e75 | 635ef40fb76db5337d62dc140f38105595ccd714 | refs/heads/master | 2023-08-29T15:12:04.935894 | 2023-08-15T13:27:12 | 2023-08-15T13:27:12 | 171,742,989 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 975 | cpp | // We only fail when we stop trying
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define mp make_pair
#define endl '\n'
#define D(x) cerr << #x << " = " << (x) << '\n'
#define sz(x) ((int)(x).size())
#define all(x) (x).begin(), (x).end()
typedef long long ll;
const ll Inf = 1e18;
const int N = 16;
int n;
int a[N][N];
long long cost[1 << N];
long long dp[1 << N];
int main()
{
cin >> n;
for(int i = 0; i < n; i++)
for(int j = 0; j < n; j++)
cin >> a[i][j];
for(int msk = 0; msk < (1 << n); msk++) {
cost[msk] = 0;
for(int i = 0; i < n; i++)
if(msk & (1 << i))
for(int j = i + 1; j < n; j++)
if(msk & (1 << j))
cost[msk] += a[i][j];
}
dp[0] = 0;
for(int msk = 1; msk < (1 << n); msk++) {
dp[msk] = -Inf;
for(int sub = msk; sub > 0; sub = (msk & (sub - 1))) {
dp[msk] = max(dp[msk], cost[sub] + dp[msk ^ sub]);
}
}
cout << dp[(1 << n) - 1] << endl;
return 0;
}
| [
"[email protected]"
] | |
6d2445eb669721b4c9ed1f4bcb5a3cfdcbd21b4e | 4acd949a9e384c10efd498e7aefab0957ec4fc62 | /src/Button.h | 28b722f8100ea2fac7d84862c746a0a37f372939 | [] | no_license | RositcaMadzharova/Roulette2 | b91edf758f2addb9f0b7e408964ffd994fb76a23 | 75570b896915e7389a8670d6cd58efda0fcd6c8b | refs/heads/master | 2021-05-05T06:12:48.838260 | 2017-08-03T08:29:06 | 2017-08-03T08:29:06 | 118,791,948 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 413 | h | /*
* Button.h
*
* Created on: Jul 7, 2017
* Author: kakev
*/
#ifndef BUTTON_H_
#define BUTTON_H_
#include "LTexture.h"
#include <Windows.h>
class Button : public LTexture{
public:
Button(int x = 0, int y = 0);
virtual bool isHover();
virtual bool isClicked( SDL_Event *);
virtual bool isRightClicked( SDL_Event *);
virtual ~Button();
private:
};
#endif /* BUTTON_H_ */
| [
"[email protected]"
] | |
cf57c39de6f7fda15742df79fbb26ca31066e469 | b69e34de6fd6d8169e33be70ce8db9bb9d8e29f3 | /Threats/Virus.h | 8d0e784652fe012f1743986cb9f772a789fcddee | [] | no_license | david-docteur/McOfee_Simulation | 5857db59df8d3d1cffb4b2635559cc99539ccb75 | 037f104436bd24c5ef92eec668a5d82a9ff5b8a7 | refs/heads/master | 2016-09-13T17:14:30.920583 | 2016-05-11T17:33:09 | 2016-05-11T17:33:09 | 57,882,316 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,151 | h | /*
* File: Threats/Virus.h
* Author: David Docteur
* Company: Undefined
* Date: XX/XX/XXXX
*
* This class will be the header of the Virus class,
* which inherits from the Threat abstract class.
*/
#ifndef VIRUS_H
#define VIRUS_H
#include "../Threat.h"
namespace McOfee
{
class Virus : public Threat
{
// Folder to destroy
std::string folderToDestroy;
public:
// Default constructor
Virus();
// Constructor
Virus(int threatId, std::string type);
// Destructor
virtual ~Virus();
// Returns the folder to be destroyed
std::string getFolderToDestroy();
// Set the folder to be destroyed
void setFolderToDestroy(std::string folder);
// Prints what the threat does
std::string printThreatAction();
// Prints how dangerous a Threat is
int printThreatLevel();
// Returns the id of the Threat
int getThreatId();
// Returns the name of the Threat
std::string getThreatName();
// Returns the Thread's type
std::string getThreatType();
};
}
#endif // VIRUS_H | [
"[email protected]"
] | |
c24d3575470bb44e614d67693e3888801dcfb109 | 31bc277d64fe8002c8c6376a7e89bab7e093a301 | /STSample/GeneratedFiles/Debug/moc_stsample.cpp | a0e327ffff916b2059df5c0cb31aafc4f9c7297d | [] | no_license | sunpu/stsample | cad5da33d01f1cf4183e20154f79b96e655de344 | 86dbea41cc428f12f15853cddd17a959fa8a4714 | refs/heads/master | 2021-09-07T12:41:16.454942 | 2018-02-23T01:42:33 | 2018-02-23T01:42:33 | 115,606,043 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,137 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'stsample.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.6.2)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../../stsample.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'stsample.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.6.2. 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
struct qt_meta_stringdata_tahiti__STSample_t {
QByteArrayData data[20];
char stringdata0[364];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_tahiti__STSample_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_tahiti__STSample_t qt_meta_stringdata_tahiti__STSample = {
{
QT_MOC_LITERAL(0, 0, 16), // "tahiti::STSample"
QT_MOC_LITERAL(1, 17, 15), // "newStreamSignal"
QT_MOC_LITERAL(2, 33, 0), // ""
QT_MOC_LITERAL(3, 34, 2), // "id"
QT_MOC_LITERAL(4, 37, 5), // "width"
QT_MOC_LITERAL(5, 43, 6), // "height"
QT_MOC_LITERAL(6, 50, 18), // "updateRenderSignal"
QT_MOC_LITERAL(7, 69, 29), // "std::shared_ptr<RemoteStream>"
QT_MOC_LITERAL(8, 99, 6), // "stream"
QT_MOC_LITERAL(9, 106, 18), // "on_pbLogin_clicked"
QT_MOC_LITERAL(10, 125, 19), // "on_pbLogout_clicked"
QT_MOC_LITERAL(11, 145, 28), // "on_pbSendLocalCamera_clicked"
QT_MOC_LITERAL(12, 174, 28), // "on_pbStopLocalCamera_clicked"
QT_MOC_LITERAL(13, 203, 29), // "on_pbSendLocalDesktop_clicked"
QT_MOC_LITERAL(14, 233, 29), // "on_pbStopLocalDesktop_clicked"
QT_MOC_LITERAL(15, 263, 28), // "on_pbSendLocalWindow_clicked"
QT_MOC_LITERAL(16, 292, 28), // "on_pbStopLocalWindow_clicked"
QT_MOC_LITERAL(17, 321, 13), // "newStreamSlot"
QT_MOC_LITERAL(18, 335, 16), // "updateRenderSlot"
QT_MOC_LITERAL(19, 352, 11) // "checkChange"
},
"tahiti::STSample\0newStreamSignal\0\0id\0"
"width\0height\0updateRenderSignal\0"
"std::shared_ptr<RemoteStream>\0stream\0"
"on_pbLogin_clicked\0on_pbLogout_clicked\0"
"on_pbSendLocalCamera_clicked\0"
"on_pbStopLocalCamera_clicked\0"
"on_pbSendLocalDesktop_clicked\0"
"on_pbStopLocalDesktop_clicked\0"
"on_pbSendLocalWindow_clicked\0"
"on_pbStopLocalWindow_clicked\0newStreamSlot\0"
"updateRenderSlot\0checkChange"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_tahiti__STSample[] = {
// content:
7, // revision
0, // classname
0, 0, // classinfo
13, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
2, // signalCount
// signals: name, argc, parameters, tag, flags
1, 3, 79, 2, 0x06 /* Public */,
6, 2, 86, 2, 0x06 /* Public */,
// slots: name, argc, parameters, tag, flags
9, 0, 91, 2, 0x0a /* Public */,
10, 0, 92, 2, 0x0a /* Public */,
11, 0, 93, 2, 0x0a /* Public */,
12, 0, 94, 2, 0x0a /* Public */,
13, 0, 95, 2, 0x0a /* Public */,
14, 0, 96, 2, 0x0a /* Public */,
15, 0, 97, 2, 0x0a /* Public */,
16, 0, 98, 2, 0x0a /* Public */,
17, 3, 99, 2, 0x0a /* Public */,
18, 2, 106, 2, 0x0a /* Public */,
19, 0, 111, 2, 0x0a /* Public */,
// signals: parameters
QMetaType::Void, QMetaType::QString, QMetaType::Int, QMetaType::Int, 3, 4, 5,
QMetaType::Void, QMetaType::QString, 0x80000000 | 7, 3, 8,
// slots: parameters
QMetaType::Void,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void, QMetaType::QString, QMetaType::Int, QMetaType::Int, 3, 4, 5,
QMetaType::Void, QMetaType::QString, 0x80000000 | 7, 3, 8,
QMetaType::Void,
0 // eod
};
void tahiti::STSample::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
if (_c == QMetaObject::InvokeMetaMethod) {
STSample *_t = static_cast<STSample *>(_o);
Q_UNUSED(_t)
switch (_id) {
case 0: _t->newStreamSignal((*reinterpret_cast< QString(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break;
case 1: _t->updateRenderSignal((*reinterpret_cast< QString(*)>(_a[1])),(*reinterpret_cast< std::shared_ptr<RemoteStream>(*)>(_a[2]))); break;
case 2: _t->on_pbLogin_clicked(); break;
case 3: _t->on_pbLogout_clicked(); break;
case 4: _t->on_pbSendLocalCamera_clicked(); break;
case 5: _t->on_pbStopLocalCamera_clicked(); break;
case 6: _t->on_pbSendLocalDesktop_clicked(); break;
case 7: _t->on_pbStopLocalDesktop_clicked(); break;
case 8: _t->on_pbSendLocalWindow_clicked(); break;
case 9: _t->on_pbStopLocalWindow_clicked(); break;
case 10: _t->newStreamSlot((*reinterpret_cast< QString(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break;
case 11: _t->updateRenderSlot((*reinterpret_cast< QString(*)>(_a[1])),(*reinterpret_cast< std::shared_ptr<RemoteStream>(*)>(_a[2]))); break;
case 12: _t->checkChange(); break;
default: ;
}
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
switch (_id) {
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
case 1:
switch (*reinterpret_cast<int*>(_a[1])) {
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
case 1:
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< std::shared_ptr<RemoteStream> >(); break;
}
break;
case 11:
switch (*reinterpret_cast<int*>(_a[1])) {
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
case 1:
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< std::shared_ptr<RemoteStream> >(); break;
}
break;
}
} else if (_c == QMetaObject::IndexOfMethod) {
int *result = reinterpret_cast<int *>(_a[0]);
void **func = reinterpret_cast<void **>(_a[1]);
{
typedef void (STSample::*_t)(QString , int , int );
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&STSample::newStreamSignal)) {
*result = 0;
return;
}
}
{
typedef void (STSample::*_t)(QString , std::shared_ptr<RemoteStream> );
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&STSample::updateRenderSignal)) {
*result = 1;
return;
}
}
}
}
const QMetaObject tahiti::STSample::staticMetaObject = {
{ &QMainWindow::staticMetaObject, qt_meta_stringdata_tahiti__STSample.data,
qt_meta_data_tahiti__STSample, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
};
const QMetaObject *tahiti::STSample::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *tahiti::STSample::qt_metacast(const char *_clname)
{
if (!_clname) return Q_NULLPTR;
if (!strcmp(_clname, qt_meta_stringdata_tahiti__STSample.stringdata0))
return static_cast<void*>(const_cast< STSample*>(this));
if (!strcmp(_clname, "ConferenceClientObserver"))
return static_cast< ConferenceClientObserver*>(const_cast< STSample*>(this));
return QMainWindow::qt_metacast(_clname);
}
int tahiti::STSample::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QMainWindow::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 13)
qt_static_metacall(this, _c, _id, _a);
_id -= 13;
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
if (_id < 13)
qt_static_metacall(this, _c, _id, _a);
_id -= 13;
}
return _id;
}
// SIGNAL 0
void tahiti::STSample::newStreamSignal(QString _t1, int _t2, int _t3)
{
void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)), const_cast<void*>(reinterpret_cast<const void*>(&_t2)), const_cast<void*>(reinterpret_cast<const void*>(&_t3)) };
QMetaObject::activate(this, &staticMetaObject, 0, _a);
}
// SIGNAL 1
void tahiti::STSample::updateRenderSignal(QString _t1, std::shared_ptr<RemoteStream> _t2)
{
void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)), const_cast<void*>(reinterpret_cast<const void*>(&_t2)) };
QMetaObject::activate(this, &staticMetaObject, 1, _a);
}
QT_END_MOC_NAMESPACE
| [
"[email protected]"
] | |
98ab797eabb2857c74c0535472d55f96d59c72c8 | d683b036089eacfb3d1f18aca2710af209ca9c38 | /MobileGameTest/Classes/Native/GenericMethods4.cpp | 445c846f27db5fa3f1056fe7fb9b590d18efb3b1 | [] | no_license | jibberjibbs/BootyCrawl | 63d524d771616ec8dfa06cbea2b42551e4858b83 | 73879f790ffb03051266e751b7ddc4025d43b48a | refs/heads/master | 2021-01-04T11:07:42.491643 | 2020-02-14T14:12:27 | 2020-02-14T14:12:27 | 240,520,283 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,747,770 | 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, 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>
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 T1>
struct VirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, 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);
}
};
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74;
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.Networking.NetworkBehaviour/Invoker>
struct Dictionary_2_t7CB63C060ADDEC4A72D1BBD323E4C66E5A50238B;
// System.Collections.Generic.HashSet`1<System.Int32>
struct HashSet_1_tD16423F193A61077DD5FE7C8517877716AAFF11E;
// System.Collections.Generic.HashSet`1<UnityEngine.Networking.NetworkInstanceId>
struct HashSet_1_t04AFB5FB47684F4B89636F9B0A465D7E869FFA50;
// System.Collections.Generic.IEnumerable`1<System.Object>
struct IEnumerable_1_t2F75FCBEC68AFE08982DA43985F9D04056E2BE73;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>
struct IList_1_tD431CA53D2DA04D533C85B6F283DF4535D06B9FC;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>
struct IList_1_t6CC82F01278D7AA7C3DC2939506F0C54E06AAADE;
// System.Collections.Generic.IList`1<UnityEngine.Transform>
struct IList_1_t2CE05980F8B9CC1149914C41DDAB66D7ABFC902A;
// System.Collections.Generic.IReadOnlyDictionary`2<System.Object,System.Object>
struct IReadOnlyDictionary_2_tF12AC6C54B252680968AC58C45E1522DA1C72D03;
// 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.Object,System.Object>[]
struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D;
// System.Collections.Generic.List`1<UnityEngine.CanvasGroup>
struct List_1_t053DAB6E2110E276A0339D73497193F464BC1F82;
// System.Collections.Generic.List`1<UnityEngine.Networking.NetworkClient>
struct List_1_t51C4494E1C3EF6D60D76BC46D51A3376405941EE;
// System.Collections.Generic.List`1<UnityEngine.Networking.NetworkConnection>
struct List_1_t7A006745EA41BB1EE354777CCAE13C252BF8240D;
// System.Collections.Generic.List`1<UnityEngine.Networking.NetworkMigrationManager/PendingPlayerInfo>
struct List_1_t87345ABE62C753FC4A3E06A0820A8CAF6DC8ACA8;
// System.Collections.Generic.List`1<UnityEngine.RectTransform>
struct List_1_tDDCC3FF04B4444A45BC27D94CC0369A8CF06DBF9;
// System.Collections.Generic.List`1<UnityEngine.Transform>
struct List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE;
// System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>
struct List_1_t836CD930F5F0862929A362435417DA9BCD4186F8;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Networking.NetworkConnection>
struct ReadOnlyCollection_1_t75152D706F94D4BEAEEBB803A10EE0E71B324B91;
// System.Converter`2<System.Object,System.Object>
struct Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Boolean>
struct Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Byte>
struct Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Char>
struct Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.DateTime>
struct Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.DateTimeOffset>
struct Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Decimal>
struct Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Double>
struct Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Guid>
struct Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Int16>
struct Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Int32>
struct Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Int64>
struct Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.IntPtr>
struct Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Object>
struct Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.SByte>
struct Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Single>
struct Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.TimeSpan>
struct Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.UInt16>
struct Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.UInt32>
struct Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.UInt64>
struct Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.UIntPtr>
struct Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Boolean>
struct Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Byte>
struct Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Char>
struct Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.DateTime>
struct Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.DateTimeOffset>
struct Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Decimal>
struct Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Double>
struct Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Guid>
struct Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Int16>
struct Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Int32>
struct Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Int64>
struct Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.IntPtr>
struct Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Object>
struct Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.SByte>
struct Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Single>
struct Transformer_1_t761E0F084572634E94674D7C1912B56771C73045;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.TimeSpan>
struct Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.UInt16>
struct Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.UInt32>
struct Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.UInt64>
struct Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.UIntPtr>
struct Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Boolean>
struct Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Byte>
struct Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Char>
struct Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.DateTime>
struct Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.DateTimeOffset>
struct Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Decimal>
struct Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Double>
struct Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Guid>
struct Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Int16>
struct Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Int32>
struct Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Int64>
struct Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.IntPtr>
struct Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Object>
struct Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.SByte>
struct Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Single>
struct Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.TimeSpan>
struct Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.UInt16>
struct Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.UInt32>
struct Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.UInt64>
struct Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.UIntPtr>
struct Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Boolean>
struct Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Byte>
struct Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Char>
struct Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.DateTime>
struct Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.DateTimeOffset>
struct Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Decimal>
struct Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Double>
struct Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Guid>
struct Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Int16>
struct Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Int32>
struct Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Int64>
struct Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.IntPtr>
struct Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Object>
struct Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.SByte>
struct Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Single>
struct Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.TimeSpan>
struct Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.UInt16>
struct Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.UInt32>
struct Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.UInt64>
struct Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.UIntPtr>
struct Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Object,System.Object>
struct Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Boolean>
struct Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Byte>
struct Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Char>
struct Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.DateTime>
struct Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.DateTimeOffset>
struct Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Decimal>
struct Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Double>
struct Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Guid>
struct Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Int16>
struct Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Int32>
struct Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Int64>
struct Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.IntPtr>
struct Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Object>
struct Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.SByte>
struct Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Single>
struct Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.TimeSpan>
struct Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.UInt16>
struct Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.UInt32>
struct Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.UInt64>
struct Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.UIntPtr>
struct Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Boolean>
struct Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Byte>
struct Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Char>
struct Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.DateTime>
struct Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.DateTimeOffset>
struct Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Decimal>
struct Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Double>
struct Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Guid>
struct Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Int16>
struct Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Int32>
struct Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Int64>
struct Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.IntPtr>
struct Transformer_1_t873B2E4C2418F756278367655E1C64D654382460;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Object>
struct Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.SByte>
struct Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Single>
struct Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.TimeSpan>
struct Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.UInt16>
struct Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.UInt32>
struct Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.UInt64>
struct Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.UIntPtr>
struct Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Boolean>
struct Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Byte>
struct Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Char>
struct Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.DateTime>
struct Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.DateTimeOffset>
struct Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Decimal>
struct Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Double>
struct Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Guid>
struct Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Int16>
struct Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Int32>
struct Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Int64>
struct Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.IntPtr>
struct Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Object>
struct Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.SByte>
struct Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Single>
struct Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.TimeSpan>
struct Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.UInt16>
struct Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.UInt32>
struct Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.UInt64>
struct Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.UIntPtr>
struct Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Boolean>
struct Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Byte>
struct Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Char>
struct Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.DateTime>
struct Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.DateTimeOffset>
struct Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Decimal>
struct Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Double>
struct Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Guid>
struct Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Int16>
struct Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Int32>
struct Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Int64>
struct Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.IntPtr>
struct Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Object>
struct Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.SByte>
struct Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Single>
struct Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.TimeSpan>
struct Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.UInt16>
struct Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.UInt32>
struct Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.UInt64>
struct Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.UIntPtr>
struct Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913;
// System.Diagnostics.Tracing.EventProvider/SessionInfo[]
struct SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906;
// System.Diagnostics.Tracing.TraceLoggingEventTypes
struct TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25;
// System.Exception
struct Exception_t;
// System.Func`1<System.Object>
struct Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386;
// System.Func`2<System.Object,System.Boolean>
struct Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.Int32Enum[]
struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
// System.MissingMethodException
struct MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498;
// System.MonoTypeInfo
struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D;
// System.Net.EndPoint
struct EndPoint_tD87FCEF2780A951E8CE8D808C345FBF2C088D980;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.Predicate`1<System.Object>
struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979;
// System.Reflection.Assembly
struct Assembly_t;
// System.Reflection.Assembly/ResolveEventHolder
struct ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E;
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF;
// System.Reflection.CustomAttributeData/LazyCAttrData
struct LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38;
// System.Reflection.CustomAttributeNamedArgument[]
struct CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828;
// System.Reflection.CustomAttributeTypedArgument[]
struct CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05;
// System.Reflection.MemberFilter
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Reflection.ParameterInfo[]
struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694;
// System.Reflection.RuntimeConstructorInfo
struct RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.RuntimeType
struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2;
// System.Single[]
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5;
// System.String
struct String_t;
// System.Text.Encoding
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4;
// System.Threading.CancellationCallbackInfo
struct CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36;
// System.Threading.ManualResetEvent
struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408;
// System.Threading.SendOrPostCallback
struct SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01;
// System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7;
// 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;
// UnityEngine.BeforeRenderHelper/OrderBlock[]
struct OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101;
// UnityEngine.Camera
struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34;
// UnityEngine.Color32[]
struct Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983;
// UnityEngine.Component
struct Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621;
// UnityEngine.DisallowMultipleComponent[]
struct DisallowMultipleComponentU5BU5D_t59E317D853AAC982D5D18D4C1581422FC151F7E3;
// UnityEngine.EventSystems.BaseEventData
struct BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5;
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966;
// UnityEngine.EventSystems.EventSystem
struct EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<System.Object>
struct EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler>
struct EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ICancelHandler>
struct EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDeselectHandler>
struct EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDragHandler>
struct EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDropHandler>
struct EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IEndDragHandler>
struct EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler>
struct EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IMoveHandler>
struct EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler>
struct EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler>
struct EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler>
struct EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler>
struct EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler>
struct EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IScrollHandler>
struct EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISelectHandler>
struct EventFunction_1_t7521247C87411935E8A2CA38683533083459473F;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISubmitHandler>
struct EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler>
struct EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173;
// UnityEngine.EventSystems.RaycastResult[]
struct RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65;
// UnityEngine.Events.UnityAction
struct UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4;
// UnityEngine.ExecuteInEditMode[]
struct ExecuteInEditModeU5BU5D_tAE8DA030BEBA505907556F161EB49FD565976C80;
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem/UpdateFunction
struct UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8;
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem[]
struct PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2;
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F;
// UnityEngine.Mesh
struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C;
// UnityEngine.Networking.ChannelPacket[]
struct ChannelPacketU5BU5D_t4F30D435CDD109EFAC04DDAA14FFCA6EC3FD3C68;
// UnityEngine.Networking.ClientScene/PendingOwner[]
struct PendingOwnerU5BU5D_tC7C57765D842F658B31DE4453A4838057D5C6EFA;
// UnityEngine.Networking.HostTopology
struct HostTopology_tD01D253330A0DAA736EDFC67EE9585C363FA9B0E;
// UnityEngine.Networking.LocalClient/InternalMsg[]
struct InternalMsgU5BU5D_t9FE1EB9BD31AEA326D79AC2749B4D89621EB99B6;
// UnityEngine.Networking.NetBuffer
struct NetBuffer_t2BA43CF3688776F372BECD54D28F90CB0559B36C;
// UnityEngine.Networking.NetworkBehaviour
struct NetworkBehaviour_tE0C48D0A9ED8AC3977CAEF5B8090089CD544D19C;
// UnityEngine.Networking.NetworkClient
struct NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F;
// UnityEngine.Networking.NetworkConnection
struct NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA;
// UnityEngine.Networking.NetworkIdentity
struct NetworkIdentity_t764E9C8A578DEF667FDCB3D1171A4B0DDF38069B;
// UnityEngine.Networking.NetworkLobbyManager/PendingPlayer[]
struct PendingPlayerU5BU5D_t0528231D7204589D7A98D2A727DFFF7CBB36864E;
// UnityEngine.Networking.NetworkMessage
struct NetworkMessage_tCD66E2AE395A185EFE622EBB5497C95F6754685C;
// UnityEngine.Networking.NetworkMessageHandlers
struct NetworkMessageHandlers_tA7BB2E51BDBD8ECE976AD44F1B634F40EA9807D4;
// UnityEngine.Networking.NetworkMigrationManager/PendingPlayerInfo[]
struct PendingPlayerInfoU5BU5D_t4FB2FD5DC2C9A9DD7851E566CC11A9B113081ADC;
// UnityEngine.Networking.NetworkReader
struct NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12;
// UnityEngine.Networking.NetworkScene
struct NetworkScene_t67A8AC9779C203B146A8723FA561736890CA9A40;
// UnityEngine.Networking.NetworkServer
struct NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1;
// UnityEngine.Networking.NetworkServer/ServerSimpleWrapper
struct ServerSimpleWrapper_t1ECF42A66748FA970402440F00E743DB5E2AAA32;
// UnityEngine.Networking.NetworkServerSimple
struct NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648;
// UnityEngine.Networking.NetworkSystem.CRCMessage
struct CRCMessage_t7F44D52B267C35387F0D7AD0D9098D579ECF61FA;
// UnityEngine.Networking.NetworkSystem.CRCMessageEntry[]
struct CRCMessageEntryU5BU5D_t1B5D587D6874D0A4400FC5721E2678BE6D3751EF;
// UnityEngine.Networking.NetworkSystem.PeerInfoPlayer[]
struct PeerInfoPlayerU5BU5D_t2DC6ACEAE1A547C8C73E8EEF72F51E0611E694F3;
// UnityEngine.Networking.NetworkSystem.RemovePlayerMessage
struct RemovePlayerMessage_t51B0D9BCA3C2B4FD772A2972588CC0915FD4CEBF;
// UnityEngine.Networking.ULocalConnectionToClient
struct ULocalConnectionToClient_t7AF7EBF2BEC3714F75EF894035BFAE9E6F9561A8;
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0;
// UnityEngine.Object[]
struct ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9;
// UnityEngine.Playables.PlayableBinding/CreateOutputMethod
struct CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3;
// UnityEngine.Playables.PlayableBinding[]
struct PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB;
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165;
// UnityEngine.RectOffset
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A;
// UnityEngine.RectTransform
struct RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20;
// UnityEngine.RequireComponent[]
struct RequireComponentU5BU5D_t4295259AA991FCAA75878E4731813266CFC5351D;
// UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734;
// UnityEngine.Sprite
struct Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198;
// UnityEngine.Transform
struct Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA;
// UnityEngine.Transform[]
struct TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804;
// UnityEngine.UI.AnimationTriggers
struct AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5;
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>
struct TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF;
// UnityEngine.UI.Dropdown/DropdownEvent
struct DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306;
// UnityEngine.UI.Dropdown/OptionData
struct OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831;
// UnityEngine.UI.Dropdown/OptionDataList
struct OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D;
// UnityEngine.UI.Graphic
struct Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8;
// UnityEngine.UI.Image
struct Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E;
// UnityEngine.UI.LayoutGroup
struct LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4;
// UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>
struct ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC;
// UnityEngine.UI.Selectable
struct Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A;
// UnityEngine.UI.Selectable[]
struct SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02;
// UnityEngine.UI.Text
struct Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030;
// UnityEngine.UICharInfo[]
struct UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482;
// UnityEngine.UILineInfo[]
struct UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC;
// UnityEngine.UIVertex[]
struct UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A;
// UnityEngine.UnityException
struct UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28;
// 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* Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LogFilter_t5202A297E770086F7954B8D6703BAC03C22654ED_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral01AF91396F2E7927DC5CE2FFE22E72929461FD93;
IL2CPP_EXTERN_C String_t* _stringLiteral04444310B8C9D216A6BC1D1CC9542ECC75BC02DF;
IL2CPP_EXTERN_C String_t* _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25;
IL2CPP_EXTERN_C String_t* _stringLiteral2C3199988097E4BB3103E8C34B8DFE8796545D8F;
IL2CPP_EXTERN_C String_t* _stringLiteral2E834101FFA09925E25D757417D3FF8481703143;
IL2CPP_EXTERN_C String_t* _stringLiteral56EB1C433748E5EF9B4DB1C73820724497D429D3;
IL2CPP_EXTERN_C String_t* _stringLiteral64358BBCCF8C380C05E774933982A64691BCEB28;
IL2CPP_EXTERN_C String_t* _stringLiteral6B8BDD37D6A5FE9BFD9CE2C3B38104FB717F3F22;
IL2CPP_EXTERN_C String_t* _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF;
IL2CPP_EXTERN_C String_t* _stringLiteral8F21CBA58007DD2948E09F425535D825423801C1;
IL2CPP_EXTERN_C String_t* _stringLiteral8F2582A880B3405D36C51482DB13DBFA0F0CC8A9;
IL2CPP_EXTERN_C String_t* _stringLiteral9E40BAB578BFD23D5BA188CEF4D4CE5EB5A78927;
IL2CPP_EXTERN_C String_t* _stringLiteralBF077A5DDDFA362E2EE48FEBBAD7CC35A4A6952D;
IL2CPP_EXTERN_C String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
IL2CPP_EXTERN_C String_t* _stringLiteralEF5C844EAB88BCACA779BD2F3AD67B573BBBBFCA;
IL2CPP_EXTERN_C String_t* _stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6;
IL2CPP_EXTERN_C const RuntimeMethod* Activator_CreateInstance_TisRuntimeObject_mDA89B83096094F5172A908AB1A58EF573D6B80F9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m4EB6BCB9266D31902A76F2F846B438DDC3B6A79D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_FindAll_TisRuntimeObject_mA98E5A13A8737A1E5CD968D85C81A5275D98270D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_FindLast_TisRuntimeObject_m4E31CFB84B91215A9C9C168FA4ECB1DF3EA123AB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Find_TisRuntimeObject_mB8509653F89FF33B78C3019FD9A78297F222C337_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m30C0C47C4512435E439A7ED471BBEED9083E49CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m4569173BF88BC0385D8CD65FDC8A79D3A51F4F33_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m35D71EC8F506ABBDEAB4DA491A0C39F130AAA398_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mA20976BDE39E7CDFAE80707F5D7B8782D2DB26F1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisCRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_m6332BA83613BAAC00FD9F6F6666C52C41820DFBC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m53E8625AE904443A1E1DBCCF105D4577B179F5C2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_m7E4C229D5E4380991C59B97FE59761BC015DB19A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8A9BCF051C369596DC54FFC5AF2E53311B3085AC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m5B1598323DDCFCA00E53E5D898D026781060AB03_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m33630D6CDB958E870C4423D8B4B95B45B53E27B5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9_mA7AF99631501D2C0149A00D96F3DE4DF3A6A9F8B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mD68E6BB921EFA3B762CFAB6A1C463A58F26FC3C3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m9EBDE7DEA2408A7206ADAB86BD45E77DF5C63A81_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m7FE4474292FC7BC61503EBAA451177566C7A11F2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m782303121097277DB87E5CF415EF0465C4B4A1B1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mCD6665078DDF4047758A406CD953DBD6FFB70478_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mA5EA9A997E687B2A740812E57305FAD0B5428F3F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m68307563E8A8612829E8C8D1010115AF810C2A27_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m89B0E816317A499BFFFF1F32EC99B68D1045E6C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m5BB4D70758EF8C6AFCFC3A0CE70EB0BA56014BDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_mA1993BD92A566CB774DB1DB93E022FEE3C178CE4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t199B9164AC346CAFF297C44D6DF2326A3634773E_mA2EBFD8E91214965241C6DC4DE7ECCA476860A8C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t39E5078AF9E9A002524BC15C94626539E28F1DD0_m2FC92B6A540B1B221877F88A1E771C4B170552E7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41_m70851182CC3514A03DE62928DC5E7B4AE051F488_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mBB9351B9A332C5E66A4C12BE34CB36FB09A0AD84_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F_mBF1B83DE94B6C1C21BD685531EC5A0EE1FF2C54E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t8E09DFCC6D674230C233702F449DB762B53A2031_m4BF436A83CFF761046536805211E24AED4A2ED17_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A_m4A18392565D1FA2BE698EABCD1276C9E4DCD2E3C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tB17A20FF297E1D4E33181E36238F550A443DFD91_m9A269F79BA22C6B161F552CC4C24A4387B19B278_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA_mCF694E3E6C3BD9DA431AF5A3BF5E21387B53C3CF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m8D765D0F36D3032CCB14ED4831E45D7E2BC0546F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m9AE27399BB6EC825F7276F24EECB292251BD0CB7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3_m99370E3D9350C54CCA064D13AD948820F6D14CF8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mAB5413860CB11C4079C1BB386E21AF2E0BDF3321_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mBB31C607B411E6085409D85D4923B37DEF523008_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m90C1DA8A90349E98D0CAE4E6E9F8B13CDD9D383F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mC2EC9BDCF259FBF41231168EB670844F06EA064F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m39952434C44AD3DC50E3B088D2AB7BB9DF4BF6A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m795F49361982E404E95390015D517257EE067216_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisGuid_t_mC7579366A25132E1C71A250DBB784A903BCADCCC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m2C75C255E63AFB4C7EBD1905AD57D4E50E534FED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mC0FBBA64A8AD9D86D56FED81BFDE1F2F06F88490_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mD7D437DF6139243DC88F2B7DE2305205C2905D26_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mEFD1A61B0B41A9FFD0F040F4A1A07220F8F0CD90_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m1CF13A729DFD610EBB2D8C060C5AF62C6F1CBBE9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisIntPtr_t_m97F983B47BBAF278F9F2B9B14AAD5D1639754C48_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m27C62570D0F265FD04FA8E6A480284B26DB44AE2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mCE86842C0F97A7F4669040429C23BF3438BDB39B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisInternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_m05772F9DEE03DFE30708FE510D62A269E9265BCD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8_m32B4726F90F2B91DD4CCC53A665C0773DA6ACF0D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0_m52CA2B4B0064162747A249352EC38BAFBE4DC5D7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mF23635BA7CC17669D742EA635FBE69BC61FA66F3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2_mA4ABE6BCB1B84D1684F954ED195F07D24558209F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF_mDA12E6C4504C7EC792157440B19398FD399C318C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD8E7932136B09DB9DEF32AA6FE217F32D860C43D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_mA6FA92FD002D406D05A07134DC2BC8135E874B3F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mEBF0FA040E7F47BBB25F2E8B521190971A4F94BD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m1FDA4C119EA5BEDA9E3E30256B1B1C366E3F41B1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013_m70E213DBFA61DC70BE981243D87479BAED14F46F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03_m06049BAB5AA0A23249D676BBB63DB2C91CE20CFB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367_m1AF51A35EF6BFAFF7B2A441CBD977B4EDE3D18B2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m6E4B947482045717A1235E904E57CE8E069A6570_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA_mC4C1B10EDEEA41BF5ECFC883824597E6074CBB4B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m8C70310D622A1B1605DD6D7ACFFC611C08B41272_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5_mE137801D3995A0812EC67BD13E3C27154E6E0C33_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_mD3408DB78285D3922662AA4F7A5DC6B89870FF7A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_mCBEC9342279EF9BEBF1624F73A8C3183F053E823_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_mC184A789622183B538CC90CBA7EB19F5B307DF31_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m63AAEF4BA3CC016E2F8D6A5D0EC53D359279C943_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m98C80522DA18E643E4667969AD96DAE7B8727DF7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisNetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_m07F11E741372BFA842B803F940FC4B62A2C96151_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisNetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C_m6252AB208D073C4E156DD202EF5DF1C3762705C8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisNetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_m50E9CFFF804305C64DE6C46F3BB4003468612D89_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisNetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340_m22F3F9C81544AA9D607623DE94AB340CF6A8817F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mD0FE97B15C9FA8B66BB462AA2A30F988EA03299C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m20B1886525CDB86FF07F92A29DFF25F3C3297949_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisPeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B_m0B961B76F101F6DDF5B03E1B603B0DD726D4448E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisPendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369_m5C00CA40B78E30DA36C44E80E99C7DA11A7D39C2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisPendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_mE1E5DDD8215457374035F6796EF5FBBEEE3D169E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisPendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_m8F47E5C85605C58BE4DDF2F214B5E6E187B7961A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mE3F758712EFE7BDB3C8AD4CA776F4C5FCED20F45_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mC49BE7A8A1BE4C13417FE433DCBD6A2D3CFBBDCA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m40222B08F0CF63CCA43E04EF166CF8B07F94E0DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m457F0431F183E566CCF01D8E5227545FDC429B35_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mE238673BEA35FF1C73A13F79FCDC634CA5020A64_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m5D584575ADF5B9CAFFE1938FBE2215E52E60321B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mAE9047DFAA2BB7016E21BFAFA99BCD7C274D6119_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisRuntimeObject_m08E712C1A936A68ACBDDDB3BD61F20658A5A1F59_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m542710B68FCD399C6523BAA5B1E342DB12FA6C41_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mE0A42E82FF714E2989C444EB78B6C005A4604BC7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m08091EB834286C575732D7E88D50862B35589EC5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m045B811FF1EB9EB084635F408D509B2081199C98_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisSlot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE_mC774715485B839266C4724F1C26460A696465880_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_m16FFF75D5F2920E7FECF993A0C0537D58AB690C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_mD86C0C67E39FD2A6DE4E993195C85EAC1ED5100E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_mC22677B8BB3C2E2FD6E8EFEDAE1263F7C1552473_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m50C17816856C83AC643E0C9514C311816C06ADFB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisTouch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8_m07A7E48E610F3C1FD1EF58B644A9D6670686FFAC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m4BE02A176629CBDDC6AAE27051526963CEA5F348_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m3B144C216D207DC5DD90C433988C7BD1D6D746F2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m4A58F74CF983A715A77F5506B54B831D4609C2C3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m333BB1E13495F525681D8CD750954CB38787E0E4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mFA15CACC0FB406A96AEE4FB4C35AA6C3DF7CDB94_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUInt64Enum_tEAD217F175F60689A664303784384DEF759D24C8_m996BA283944F3C95BE0BB6689453EC9A19236A97_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m8AAD596833F8BEBCA1E526874718756C351CEE01_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUIntPtr_t_m446B08574377791B5780B08A4FC9FD0EF840C976_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m5CAED87CB0DBEE91B20FFA4AC49CE8295CC39888_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mC022982B678F2CE77FE94F96EBFAFA37C557681E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m1315FF1DB9DF79D3E27EC2FEC0AB27D883DE4FF5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m3F09800A0C792413A927D72A12670BC9A86EA4A5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mC500BEBCAE65267ED127EE4EF03640ED52CB5A76_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m0F9E7F24987CE293C28F6C14F3075C20F505C26B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m34FFF3F2DD9F225183E4AAB65F391DA3B64C4C23_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_mBA598D1852E66122156731750BBF1D8EDFEBAC55_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m629BA5846BCC1FB720C82F465DBEDC7CC35C9923_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mE0AC51BD7B42B61EADFED85793540510F5513D8E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisCRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_mCB72E999384CD04F6708A0F7DF14DC366647A04C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m0318D47BE2AB57E53839293C15DD335B8B0583AA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_m77E0536B0EA9DD8668E73B024B1B3AB0024F6A81_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m7910AF4B30BD106F78DE0F14393EA2FA9165302D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m690637A6E30AAACC2D08D07F0107FFFE45B9AA25_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m372F4A01E422405E0877577213525110F165CC72_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9_mEAA9756D5C0D76082EBB9C6616877093559C34B6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mC0BA868364A2EC9CBE08EEE61C17C9909356B644_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m1A4B88B46CEC94307CF29224873D7CE4027C40C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m2FD87C18D9E6848633DF705BFFAFEB78D9396EA4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mB284F11FF6EAAF07725EE9EEECAAD865E149E9CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mAFF3D10D243FFDDEA2E5BE47A3D72269875C515D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mA29C644E6B30AA8FF56106A39C9E7530CE6AD04D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mE027C77C0133B05655D10BE4BAB17CCBEA45C34E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m91B1B86B2435BE0A25761F475691E825DDAD39A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m61ECA245B1071FDB6DB79FE4A5AE6362A5381DF5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8CC22EADB453439C66E587109B90CCA60E03233A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t199B9164AC346CAFF297C44D6DF2326A3634773E_m5A81BF6729AD3F27D7D81207F0062658B7691E52_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t39E5078AF9E9A002524BC15C94626539E28F1DD0_m563A8446B6169FDBA32A96CAD61A6AC45DDB1193_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41_mB5BB61A8753F4594A352065E8763E6C3960CD6CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m5E18D1F3D75951F12CB606D6CEB7A156A5C6C8BD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F_mBAB992A938D3752B42E17BF0B84949AF28D9C4A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t8E09DFCC6D674230C233702F449DB762B53A2031_mD39E648003BB9CBF387FC1C7A57CEF392955FE56_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A_m9AFBF14E065C35FE4A9D1F4FF992D7AD38B5FD8C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_tB17A20FF297E1D4E33181E36238F550A443DFD91_mD5D689FE3ED01AB86981BB7E4C55086B25FDE77D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA_m7F09027CEE6FA179CF39CE2EE7344874251EFB84_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m4DC869A1E743F333DE9CC0C76B3CFC709F91A53A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m00CEFC0E6EB5C4E6286E76754603C701C01C8813_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3_mDE897A92EAC2998CD2283AEAE9845179CC1FCED1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m4277A55FF0F7CC43A28269EF99E761F3BA612EE3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mA7CBB7A3611EAF729E13A7C81382465897606032_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m47A9D1BA5A97752AF36397686537AB4612A836EB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mBB81776EBAE07C3F1598652B60A70D03C8C1B423_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m9D0452CD1962BBA9DAE3FC2B0EC0429F65CF1103_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mD10502BEA559D905BB0619CB8D721895595CC9A7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisGuid_t_m979DD807F084EEDE01F888F9957547DE23BCABBA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m02FDDCF30AEA5010D3F032AAD267FCB98051A142_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m646E9CD2F8B82E5F35FBDE2A0EFD98A0F195D680_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mB47101014CAE26A07ACE2888ADF044342599F247_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mC0D56DB29145576351D3144C0174C3DB3DFF9C84_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m69766EC28E50BA89284F2D32C8684A401A19B346_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisIntPtr_t_mDAAED5E34FC82EC1CE912628ED6EFA3FD73BF68D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m61D9DED5DD618D348B1BADD336B69E7902CC5424_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mDDF4AC156930E20611FCFB76DFC231AE7903FEE0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisInternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_mE3B5D366B8013C619025F688F466D8D85811151B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8_m10C44687A2630A158BB98C25AE834423678F70F3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0_m79910272E029E9A1B573A04039A478E301F70066_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m27C4C8AE0E9CB818A2F22B3E4A2C34C493DC1198_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2_m9FD49E7F05F088714637F9839166C2228B94A6BE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF_mF123F563D67A1B5462D91DCBAC4C24DA3D951550_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m07DCF9692981AEACAD04D98EA58EC5727A57F24E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m869CD39A2A3CBBF2661E51A2C3F817DDE806C357_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mBCE929EFD88213430B14BD2CF31A583723522143_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mCE796920ABC11A9902FC9F9D6160642A63D433FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013_mE4763008069B1BB6BB10D513F2B43D587E26A437_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03_m272D07B3C360FEEE4641CD09765786613EC19336_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367_m9F18D534073EB714A33DD07BC19837F08129B5F7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m4BF67E948E45ECF36FBD1F318CB1F443A173691F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA_m1EFDECC7EB45805B1ACA7C9F225EE5105C83F588_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mE46942032A5444788C9BD3E4B05C8A9BD2DCA803_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5_mF662C16E92251858B5B21997E6720A69C0B9CBB5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_m98456D231691613A58F88EDAA7C48E68451E1440_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_mD6A0D9843EAA93E58C03D148C4944DA9AA85608A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m3B53EB9E61040DA92DCE1D4373F9ECFC85FE5651_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mE5257779A8486E28FF4CE35150FACFDEF3E4C3A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m8661006C340B2092AB2ECC60557630BCEB060F5C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisNetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_mF841820605721022D11EB2BC71950405BFBCB96B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisNetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C_m00E360FC47B1E1A2A9522A426CD8A97B8A219B27_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisNetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_m51BB4C7EEEDA640856FF5C7F62DAA3FFC5E1F218_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisNetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340_m124867B1340F5E75470C0EC276A9823B3D6423D5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m3A94BC2B4F31DBA1005FB94913C3130C69A2E39F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m83A26FF89E9009B96B3B82235BC9508BB8406D77_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisPeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B_mDAFBDF63028508295FD9DD2B12ADEACDB5E7738F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisPendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369_m791831A820CDA6360FE3D113A86AFFE9E37D886C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisPendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_m9F681389356540D66546BF036D5957B9A3833D1C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisPendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_m62BAD5A2D438648F52FB22CB88E7628005CDF231_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m3B2A6B15ACEDDD69DFC2A7B1F1549239040CC12D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m362D4C945930128AB5451EC5F1413FB6543D01C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_mF91557842C227193C860DC92424711A92AD86409_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m343C0DB5D50F0936952CCACC386228F2ACC5A796_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mDCDC36064BB0FF4DC76546ED1CA3DDB6C303F4FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m38A53DF1F99A89D6300E7B7B184AD963AA80D865_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m6880A2B25322CD928A2218BAC463B0F9D7450BD2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisRuntimeObject_m98D2A0CAA60FCDAD14B318032271D194A0FC463A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m288F7FA25642BAF460C919173FFBACFF200256FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m300EDE92997FDDF1F28D0F58BB0DCD2949366ADC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m77CE54A431B9137F71AE4EB8DD6BD6896CAD51D5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m38844CFC22B83289886F6AD309D8861827A1A40F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSlot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE_m94ABB4F93917928468AA9470A5EBEFA740945FC9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_mA17F8F43464C47B9037751844B2B6283AE7D2876_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m7D69069E0004BED34CC1CBFC3FD7952524A8579D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1CF557045E7E734993401587A6B95688A830C1C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m6F26E3B1889F792C114EA852B45C022258DDF5D4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTouch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8_m1A9DC9373316DB755F222D79C0CA465C44173767_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m9E313F8A2D13BED598479D435A4A24C96427C2AF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mEF125F16F3141B6C8C95062D9EB62DB34E311BB8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mF50C75640622E1227765A491D563BD148B3C0D95_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m92C7FC890AD3637D775B949E40AC58993090D84D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m92E8524E021B44BD9FBA8B7B532C1C1D1AE2591E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUInt64Enum_tEAD217F175F60689A664303784384DEF759D24C8_mC2C973AEA831F0BC853FB4240672AAF73F311FEB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m67422E4BCD6185FCCC24C2E10B17354B5CA4881F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUIntPtr_t_m8E6F5EA76515799BF3B9D4CF0338A24FA7585247_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m838F955DD9621FF5361500D081CC22FE49049581_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m526D0C17B58AAB83A25B74C2462E165995C9DE2A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mFB7A377E49F0D9217F0C8F3C4105B731581E20FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m7C76B27D3E4BC6D2DA07088A801DBABE51FDEA0B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mE136BEFAFFA4D20AC5F03D08E9E761773B432A66_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mFBBF1D38CCDA2D13FFA16BC0CE1E5987639162FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m5D116C3383F95724C01C628C0D0069F3D7F65621_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ValidateEventData_TisRuntimeObject_mC0CCF6A7FE6F32C0C6B0FB70F163257D9A07F211_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LazyInitializer_EnsureInitializedCore_TisRuntimeObject_m4289829E8C0F3DA67A5B3E27721CF5D1C203CED2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mFB4F65ABD2DD0845C2448493238223FB4079A90C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m88FE4B6F43A2CD95BB9ECF8D801F206618FFFFB8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Object_Instantiate_TisRuntimeObject_mFBEB99FAFA7C81868D18C2A17C94AF512CD872EC_RuntimeMethod_var;
IL2CPP_EXTERN_C const uint32_t Activator_CreateInstance_TisRuntimeObject_mDA89B83096094F5172A908AB1A58EF573D6B80F9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m4EB6BCB9266D31902A76F2F846B438DDC3B6A79D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_FindAll_TisRuntimeObject_mA98E5A13A8737A1E5CD968D85C81A5275D98270D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_FindLast_TisRuntimeObject_m4E31CFB84B91215A9C9C168FA4ECB1DF3EA123AB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_Find_TisRuntimeObject_mB8509653F89FF33B78C3019FD9A78297F222C337_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m30C0C47C4512435E439A7ED471BBEED9083E49CB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m4569173BF88BC0385D8CD65FDC8A79D3A51F4F33_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m35D71EC8F506ABBDEAB4DA491A0C39F130AAA398_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mA20976BDE39E7CDFAE80707F5D7B8782D2DB26F1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisCRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_m6332BA83613BAAC00FD9F6F6666C52C41820DFBC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m53E8625AE904443A1E1DBCCF105D4577B179F5C2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_m7E4C229D5E4380991C59B97FE59761BC015DB19A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8A9BCF051C369596DC54FFC5AF2E53311B3085AC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m5B1598323DDCFCA00E53E5D898D026781060AB03_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m33630D6CDB958E870C4423D8B4B95B45B53E27B5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9_mA7AF99631501D2C0149A00D96F3DE4DF3A6A9F8B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mD68E6BB921EFA3B762CFAB6A1C463A58F26FC3C3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m9EBDE7DEA2408A7206ADAB86BD45E77DF5C63A81_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m7FE4474292FC7BC61503EBAA451177566C7A11F2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m782303121097277DB87E5CF415EF0465C4B4A1B1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mCD6665078DDF4047758A406CD953DBD6FFB70478_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mA5EA9A997E687B2A740812E57305FAD0B5428F3F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m68307563E8A8612829E8C8D1010115AF810C2A27_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m89B0E816317A499BFFFF1F32EC99B68D1045E6C9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m5BB4D70758EF8C6AFCFC3A0CE70EB0BA56014BDF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_mA1993BD92A566CB774DB1DB93E022FEE3C178CE4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t199B9164AC346CAFF297C44D6DF2326A3634773E_mA2EBFD8E91214965241C6DC4DE7ECCA476860A8C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t39E5078AF9E9A002524BC15C94626539E28F1DD0_m2FC92B6A540B1B221877F88A1E771C4B170552E7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41_m70851182CC3514A03DE62928DC5E7B4AE051F488_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mBB9351B9A332C5E66A4C12BE34CB36FB09A0AD84_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F_mBF1B83DE94B6C1C21BD685531EC5A0EE1FF2C54E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t8E09DFCC6D674230C233702F449DB762B53A2031_m4BF436A83CFF761046536805211E24AED4A2ED17_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A_m4A18392565D1FA2BE698EABCD1276C9E4DCD2E3C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tB17A20FF297E1D4E33181E36238F550A443DFD91_m9A269F79BA22C6B161F552CC4C24A4387B19B278_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA_mCF694E3E6C3BD9DA431AF5A3BF5E21387B53C3CF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m8D765D0F36D3032CCB14ED4831E45D7E2BC0546F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m9AE27399BB6EC825F7276F24EECB292251BD0CB7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3_m99370E3D9350C54CCA064D13AD948820F6D14CF8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mAB5413860CB11C4079C1BB386E21AF2E0BDF3321_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mBB31C607B411E6085409D85D4923B37DEF523008_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m90C1DA8A90349E98D0CAE4E6E9F8B13CDD9D383F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mC2EC9BDCF259FBF41231168EB670844F06EA064F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m39952434C44AD3DC50E3B088D2AB7BB9DF4BF6A2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m795F49361982E404E95390015D517257EE067216_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisGuid_t_mC7579366A25132E1C71A250DBB784A903BCADCCC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m2C75C255E63AFB4C7EBD1905AD57D4E50E534FED_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mC0FBBA64A8AD9D86D56FED81BFDE1F2F06F88490_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mD7D437DF6139243DC88F2B7DE2305205C2905D26_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mEFD1A61B0B41A9FFD0F040F4A1A07220F8F0CD90_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m1CF13A729DFD610EBB2D8C060C5AF62C6F1CBBE9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisIntPtr_t_m97F983B47BBAF278F9F2B9B14AAD5D1639754C48_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m27C62570D0F265FD04FA8E6A480284B26DB44AE2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mCE86842C0F97A7F4669040429C23BF3438BDB39B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisInternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_m05772F9DEE03DFE30708FE510D62A269E9265BCD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8_m32B4726F90F2B91DD4CCC53A665C0773DA6ACF0D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0_m52CA2B4B0064162747A249352EC38BAFBE4DC5D7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mF23635BA7CC17669D742EA635FBE69BC61FA66F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2_mA4ABE6BCB1B84D1684F954ED195F07D24558209F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF_mDA12E6C4504C7EC792157440B19398FD399C318C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD8E7932136B09DB9DEF32AA6FE217F32D860C43D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_mA6FA92FD002D406D05A07134DC2BC8135E874B3F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mEBF0FA040E7F47BBB25F2E8B521190971A4F94BD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m1FDA4C119EA5BEDA9E3E30256B1B1C366E3F41B1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013_m70E213DBFA61DC70BE981243D87479BAED14F46F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03_m06049BAB5AA0A23249D676BBB63DB2C91CE20CFB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367_m1AF51A35EF6BFAFF7B2A441CBD977B4EDE3D18B2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m6E4B947482045717A1235E904E57CE8E069A6570_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA_mC4C1B10EDEEA41BF5ECFC883824597E6074CBB4B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m8C70310D622A1B1605DD6D7ACFFC611C08B41272_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5_mE137801D3995A0812EC67BD13E3C27154E6E0C33_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_mD3408DB78285D3922662AA4F7A5DC6B89870FF7A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_mCBEC9342279EF9BEBF1624F73A8C3183F053E823_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_mC184A789622183B538CC90CBA7EB19F5B307DF31_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m63AAEF4BA3CC016E2F8D6A5D0EC53D359279C943_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m98C80522DA18E643E4667969AD96DAE7B8727DF7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisNetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_m07F11E741372BFA842B803F940FC4B62A2C96151_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisNetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C_m6252AB208D073C4E156DD202EF5DF1C3762705C8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisNetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_m50E9CFFF804305C64DE6C46F3BB4003468612D89_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisNetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340_m22F3F9C81544AA9D607623DE94AB340CF6A8817F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mD0FE97B15C9FA8B66BB462AA2A30F988EA03299C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m20B1886525CDB86FF07F92A29DFF25F3C3297949_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisPeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B_m0B961B76F101F6DDF5B03E1B603B0DD726D4448E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisPendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369_m5C00CA40B78E30DA36C44E80E99C7DA11A7D39C2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisPendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_mE1E5DDD8215457374035F6796EF5FBBEEE3D169E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisPendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_m8F47E5C85605C58BE4DDF2F214B5E6E187B7961A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mE3F758712EFE7BDB3C8AD4CA776F4C5FCED20F45_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mC49BE7A8A1BE4C13417FE433DCBD6A2D3CFBBDCA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m40222B08F0CF63CCA43E04EF166CF8B07F94E0DC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m457F0431F183E566CCF01D8E5227545FDC429B35_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mE238673BEA35FF1C73A13F79FCDC634CA5020A64_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m5D584575ADF5B9CAFFE1938FBE2215E52E60321B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mAE9047DFAA2BB7016E21BFAFA99BCD7C274D6119_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisRuntimeObject_m08E712C1A936A68ACBDDDB3BD61F20658A5A1F59_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m542710B68FCD399C6523BAA5B1E342DB12FA6C41_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mE0A42E82FF714E2989C444EB78B6C005A4604BC7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m08091EB834286C575732D7E88D50862B35589EC5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m045B811FF1EB9EB084635F408D509B2081199C98_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisSlot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE_mC774715485B839266C4724F1C26460A696465880_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_m16FFF75D5F2920E7FECF993A0C0537D58AB690C0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_mD86C0C67E39FD2A6DE4E993195C85EAC1ED5100E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_mC22677B8BB3C2E2FD6E8EFEDAE1263F7C1552473_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m50C17816856C83AC643E0C9514C311816C06ADFB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisTouch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8_m07A7E48E610F3C1FD1EF58B644A9D6670686FFAC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m4BE02A176629CBDDC6AAE27051526963CEA5F348_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m3B144C216D207DC5DD90C433988C7BD1D6D746F2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m4A58F74CF983A715A77F5506B54B831D4609C2C3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m333BB1E13495F525681D8CD750954CB38787E0E4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mFA15CACC0FB406A96AEE4FB4C35AA6C3DF7CDB94_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUInt64Enum_tEAD217F175F60689A664303784384DEF759D24C8_m996BA283944F3C95BE0BB6689453EC9A19236A97_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m8AAD596833F8BEBCA1E526874718756C351CEE01_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUIntPtr_t_m446B08574377791B5780B08A4FC9FD0EF840C976_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m5CAED87CB0DBEE91B20FFA4AC49CE8295CC39888_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mC022982B678F2CE77FE94F96EBFAFA37C557681E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m1315FF1DB9DF79D3E27EC2FEC0AB27D883DE4FF5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m3F09800A0C792413A927D72A12670BC9A86EA4A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mC500BEBCAE65267ED127EE4EF03640ED52CB5A76_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m0F9E7F24987CE293C28F6C14F3075C20F505C26B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m34FFF3F2DD9F225183E4AAB65F391DA3B64C4C23_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_mBA598D1852E66122156731750BBF1D8EDFEBAC55_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m629BA5846BCC1FB720C82F465DBEDC7CC35C9923_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mE0AC51BD7B42B61EADFED85793540510F5513D8E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisCRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_mCB72E999384CD04F6708A0F7DF14DC366647A04C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m0318D47BE2AB57E53839293C15DD335B8B0583AA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_m77E0536B0EA9DD8668E73B024B1B3AB0024F6A81_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m7910AF4B30BD106F78DE0F14393EA2FA9165302D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m690637A6E30AAACC2D08D07F0107FFFE45B9AA25_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m372F4A01E422405E0877577213525110F165CC72_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9_mEAA9756D5C0D76082EBB9C6616877093559C34B6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mC0BA868364A2EC9CBE08EEE61C17C9909356B644_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m1A4B88B46CEC94307CF29224873D7CE4027C40C0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m2FD87C18D9E6848633DF705BFFAFEB78D9396EA4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mB284F11FF6EAAF07725EE9EEECAAD865E149E9CD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mAFF3D10D243FFDDEA2E5BE47A3D72269875C515D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mA29C644E6B30AA8FF56106A39C9E7530CE6AD04D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mE027C77C0133B05655D10BE4BAB17CCBEA45C34E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m91B1B86B2435BE0A25761F475691E825DDAD39A4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m61ECA245B1071FDB6DB79FE4A5AE6362A5381DF5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8CC22EADB453439C66E587109B90CCA60E03233A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t199B9164AC346CAFF297C44D6DF2326A3634773E_m5A81BF6729AD3F27D7D81207F0062658B7691E52_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t39E5078AF9E9A002524BC15C94626539E28F1DD0_m563A8446B6169FDBA32A96CAD61A6AC45DDB1193_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41_mB5BB61A8753F4594A352065E8763E6C3960CD6CD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m5E18D1F3D75951F12CB606D6CEB7A156A5C6C8BD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F_mBAB992A938D3752B42E17BF0B84949AF28D9C4A6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t8E09DFCC6D674230C233702F449DB762B53A2031_mD39E648003BB9CBF387FC1C7A57CEF392955FE56_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A_m9AFBF14E065C35FE4A9D1F4FF992D7AD38B5FD8C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_tB17A20FF297E1D4E33181E36238F550A443DFD91_mD5D689FE3ED01AB86981BB7E4C55086B25FDE77D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA_m7F09027CEE6FA179CF39CE2EE7344874251EFB84_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m4DC869A1E743F333DE9CC0C76B3CFC709F91A53A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m00CEFC0E6EB5C4E6286E76754603C701C01C8813_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3_mDE897A92EAC2998CD2283AEAE9845179CC1FCED1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m4277A55FF0F7CC43A28269EF99E761F3BA612EE3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mA7CBB7A3611EAF729E13A7C81382465897606032_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m47A9D1BA5A97752AF36397686537AB4612A836EB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mBB81776EBAE07C3F1598652B60A70D03C8C1B423_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m9D0452CD1962BBA9DAE3FC2B0EC0429F65CF1103_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mD10502BEA559D905BB0619CB8D721895595CC9A7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisGuid_t_m979DD807F084EEDE01F888F9957547DE23BCABBA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m02FDDCF30AEA5010D3F032AAD267FCB98051A142_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m646E9CD2F8B82E5F35FBDE2A0EFD98A0F195D680_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mB47101014CAE26A07ACE2888ADF044342599F247_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mC0D56DB29145576351D3144C0174C3DB3DFF9C84_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m69766EC28E50BA89284F2D32C8684A401A19B346_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisIntPtr_t_mDAAED5E34FC82EC1CE912628ED6EFA3FD73BF68D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m61D9DED5DD618D348B1BADD336B69E7902CC5424_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mDDF4AC156930E20611FCFB76DFC231AE7903FEE0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisInternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_mE3B5D366B8013C619025F688F466D8D85811151B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8_m10C44687A2630A158BB98C25AE834423678F70F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0_m79910272E029E9A1B573A04039A478E301F70066_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m27C4C8AE0E9CB818A2F22B3E4A2C34C493DC1198_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2_m9FD49E7F05F088714637F9839166C2228B94A6BE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF_mF123F563D67A1B5462D91DCBAC4C24DA3D951550_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m07DCF9692981AEACAD04D98EA58EC5727A57F24E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m869CD39A2A3CBBF2661E51A2C3F817DDE806C357_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mBCE929EFD88213430B14BD2CF31A583723522143_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mCE796920ABC11A9902FC9F9D6160642A63D433FA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013_mE4763008069B1BB6BB10D513F2B43D587E26A437_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03_m272D07B3C360FEEE4641CD09765786613EC19336_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367_m9F18D534073EB714A33DD07BC19837F08129B5F7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m4BF67E948E45ECF36FBD1F318CB1F443A173691F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA_m1EFDECC7EB45805B1ACA7C9F225EE5105C83F588_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mE46942032A5444788C9BD3E4B05C8A9BD2DCA803_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5_mF662C16E92251858B5B21997E6720A69C0B9CBB5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_m98456D231691613A58F88EDAA7C48E68451E1440_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_mD6A0D9843EAA93E58C03D148C4944DA9AA85608A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m3B53EB9E61040DA92DCE1D4373F9ECFC85FE5651_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mE5257779A8486E28FF4CE35150FACFDEF3E4C3A2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m8661006C340B2092AB2ECC60557630BCEB060F5C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisNetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_mF841820605721022D11EB2BC71950405BFBCB96B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisNetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C_m00E360FC47B1E1A2A9522A426CD8A97B8A219B27_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisNetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_m51BB4C7EEEDA640856FF5C7F62DAA3FFC5E1F218_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisNetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340_m124867B1340F5E75470C0EC276A9823B3D6423D5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m3A94BC2B4F31DBA1005FB94913C3130C69A2E39F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m83A26FF89E9009B96B3B82235BC9508BB8406D77_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisPeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B_mDAFBDF63028508295FD9DD2B12ADEACDB5E7738F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisPendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369_m791831A820CDA6360FE3D113A86AFFE9E37D886C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisPendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_m9F681389356540D66546BF036D5957B9A3833D1C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisPendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_m62BAD5A2D438648F52FB22CB88E7628005CDF231_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m3B2A6B15ACEDDD69DFC2A7B1F1549239040CC12D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m362D4C945930128AB5451EC5F1413FB6543D01C9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_mF91557842C227193C860DC92424711A92AD86409_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m343C0DB5D50F0936952CCACC386228F2ACC5A796_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mDCDC36064BB0FF4DC76546ED1CA3DDB6C303F4FE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m38A53DF1F99A89D6300E7B7B184AD963AA80D865_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m6880A2B25322CD928A2218BAC463B0F9D7450BD2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisRuntimeObject_m98D2A0CAA60FCDAD14B318032271D194A0FC463A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m288F7FA25642BAF460C919173FFBACFF200256FE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m300EDE92997FDDF1F28D0F58BB0DCD2949366ADC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m77CE54A431B9137F71AE4EB8DD6BD6896CAD51D5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m38844CFC22B83289886F6AD309D8861827A1A40F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSlot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE_m94ABB4F93917928468AA9470A5EBEFA740945FC9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_mA17F8F43464C47B9037751844B2B6283AE7D2876_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m7D69069E0004BED34CC1CBFC3FD7952524A8579D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1CF557045E7E734993401587A6B95688A830C1C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m6F26E3B1889F792C114EA852B45C022258DDF5D4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTouch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8_m1A9DC9373316DB755F222D79C0CA465C44173767_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m9E313F8A2D13BED598479D435A4A24C96427C2AF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mEF125F16F3141B6C8C95062D9EB62DB34E311BB8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mF50C75640622E1227765A491D563BD148B3C0D95_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m92C7FC890AD3637D775B949E40AC58993090D84D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m92E8524E021B44BD9FBA8B7B532C1C1D1AE2591E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUInt64Enum_tEAD217F175F60689A664303784384DEF759D24C8_mC2C973AEA831F0BC853FB4240672AAF73F311FEB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m67422E4BCD6185FCCC24C2E10B17354B5CA4881F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUIntPtr_t_m8E6F5EA76515799BF3B9D4CF0338A24FA7585247_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m838F955DD9621FF5361500D081CC22FE49049581_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m526D0C17B58AAB83A25B74C2462E165995C9DE2A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mFB7A377E49F0D9217F0C8F3C4105B731581E20FA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m7C76B27D3E4BC6D2DA07088A801DBABE51FDEA0B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mE136BEFAFFA4D20AC5F03D08E9E761773B432A66_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mFBBF1D38CCDA2D13FFA16BC0CE1E5987639162FB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AttributeHelperEngine_GetCustomAttributeOfType_TisRuntimeObject_m7AEF0374A18EED15CB2B6318117FDC6364AC2F3B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m5D116C3383F95724C01C628C0D0069F3D7F65621_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Component_GetComponentInChildren_TisRuntimeObject_m06B65DD1CC6DFB48DB4DEE2CC185788D42837D30_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Component_GetComponentInParent_TisRuntimeObject_m3D5E351D50C60522BD31D282D044F6527C382749_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Component_GetComponent_TisRuntimeObject_m15E3130603CE5400743CCCDEE7600FB9EEFAE5C0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_mA75245E8BF9FAB8A58686B2B26E4FC342453E774_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_GetOrAddComponent_TisRuntimeObject_mAEDB727D813C41FFCB6E8556119504E270F2E755_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_mB2DEEAF3F86ED5BECA570432FD5440948D5CB3B8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_GetEventHandler_TisRuntimeObject_m4A0A387AEA9C47C3DB85EAB3FE49C0689C0FFFA8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_ValidateEventData_TisRuntimeObject_mC0CCF6A7FE6F32C0C6B0FB70F163257D9A07F211_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GameObject_AddComponent_TisRuntimeObject_m80EDFEAC4927F588A7A702F81524EDBFA8603FE2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GameObject_GetComponentInChildren_TisRuntimeObject_mA15208779D36FF60D56159BD6B74200FF125201E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GameObject_GetComponentsInChildren_TisRuntimeObject_m480234581F731A03837A715CDD95230957255B5B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GameObject_GetComponentsInParent_TisRuntimeObject_m80BC53BC6926863115F0039372F2CB123D4A44BE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GameObject_GetComponents_TisRuntimeObject_m5EA1B9B8C5B01E9DE33C6FB0D9AD52F85E0D3911_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LazyInitializer_EnsureInitializedCore_TisRuntimeObject_m4289829E8C0F3DA67A5B3E27721CF5D1C203CED2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NetworkBehaviour_SetSyncVar_TisRuntimeObject_mDC5B93C615AA596F16D1098A271CF25451046AC8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NetworkClient_SetNetworkConnectionClass_TisRuntimeObject_m218CBEE6B3225A73DFDD15B5F65F8D7718D4FC5A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NetworkServerSimple_SetNetworkConnectionClass_TisRuntimeObject_mF8591090F35D9FFF167DE2D4DCA946AB3A6052DC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NetworkServer_SetNetworkConnectionClass_TisRuntimeObject_m6560DEFCDEFB40A1CBDA4C9575209C70FBA58933_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Object_FindObjectOfType_TisRuntimeObject_mE3957366B74863C807E6E8A23D239A0CB079BB9C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Object_FindObjectsOfType_TisRuntimeObject_mE570B614F68E0A19BD5F65061CDA9BEE6EDBD159_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Object_Instantiate_TisRuntimeObject_m352D452C728667C9C76C942525CDE26444568ECD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Object_Instantiate_TisRuntimeObject_mFBEB99FAFA7C81868D18C2A17C94AF512CD872EC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Resources_FindObjectsOfTypeAll_TisRuntimeObject_mC9CD64DDE6AECE8EB6C5FC87DBB92322CD77DEF1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Resources_GetBuiltinResource_TisRuntimeObject_m832F2383487D59D5D8B18FA4C1C689A1032669BE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ScriptableObject_CreateInstance_TisRuntimeObject_m7A8F75139352BA04C2EEC1D72D430FAC94C753DE_MetadataUsageId;
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 ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com;
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke;
struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_com;
struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_pinvoke;
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F;
struct KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7;
struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A;
struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262;
struct SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906;
struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A;
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828;
struct CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05;
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5;
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4;
struct OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101;
struct Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983;
struct RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65;
struct ChannelPacketU5BU5D_t4F30D435CDD109EFAC04DDAA14FFCA6EC3FD3C68;
struct PendingOwnerU5BU5D_tC7C57765D842F658B31DE4453A4838057D5C6EFA;
struct InternalMsgU5BU5D_t9FE1EB9BD31AEA326D79AC2749B4D89621EB99B6;
struct PendingPlayerU5BU5D_t0528231D7204589D7A98D2A727DFFF7CBB36864E;
struct PendingPlayerInfoU5BU5D_t4FB2FD5DC2C9A9DD7851E566CC11A9B113081ADC;
struct CRCMessageEntryU5BU5D_t1B5D587D6874D0A4400FC5721E2678BE6D3751EF;
struct PeerInfoPlayerU5BU5D_t2DC6ACEAE1A547C8C73E8EEF72F51E0611E694F3;
struct ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9;
struct RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165;
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
// System.Activator
struct Activator_tB50E7575818FE43EB3B56CA3880E7C80D884C1CC : public RuntimeObject
{
public:
public:
};
struct Il2CppArrayBounds;
// System.Array
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.CollectionExtensions
struct CollectionExtensions_t1943508648E4A2A0FBCF65503E3BD7032F003E0A : public RuntimeObject
{
public:
public:
};
// 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<UnityEngine.Transform>
struct List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* ____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_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE, ____items_1)); }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* get__items_1() const { return ____items_1; }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* 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_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE, ____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_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE, ____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_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE, ____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_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE_StaticFields, ____emptyArray_5)); }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* get__emptyArray_5() const { return ____emptyArray_5; }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Boolean>
struct Caster_1_t1C42C521F7CF8631FF6985A641436B54CEE018E8 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t1C42C521F7CF8631FF6985A641436B54CEE018E8_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t1C42C521F7CF8631FF6985A641436B54CEE018E8_StaticFields, ___Instance_0)); }
inline Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Byte>
struct Caster_1_tE0B5719D5D953F42A65E75E7D46BD8D7DD83D018 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tE0B5719D5D953F42A65E75E7D46BD8D7DD83D018_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tE0B5719D5D953F42A65E75E7D46BD8D7DD83D018_StaticFields, ___Instance_0)); }
inline Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Char>
struct Caster_1_tAFB70D9BBAD381451752BAEF28C81B52B2869977 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tAFB70D9BBAD381451752BAEF28C81B52B2869977_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tAFB70D9BBAD381451752BAEF28C81B52B2869977_StaticFields, ___Instance_0)); }
inline Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_t09B5032BA61F81ADC8AEF23DEF9F301CE607AF7C : public RuntimeObject
{
public:
public:
};
struct Caster_1_t09B5032BA61F81ADC8AEF23DEF9F301CE607AF7C_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t09B5032BA61F81ADC8AEF23DEF9F301CE607AF7C_StaticFields, ___Instance_0)); }
inline Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.DateTime>
struct Caster_1_tB37D2514A59669003F7F156FB271151F0D11E5FB : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB37D2514A59669003F7F156FB271151F0D11E5FB_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB37D2514A59669003F7F156FB271151F0D11E5FB_StaticFields, ___Instance_0)); }
inline Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.DateTimeOffset>
struct Caster_1_tAD8FA143928683B1E0B6BEB460980A8543022E9B : public RuntimeObject
{
public:
public:
};
struct Caster_1_tAD8FA143928683B1E0B6BEB460980A8543022E9B_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tAD8FA143928683B1E0B6BEB460980A8543022E9B_StaticFields, ___Instance_0)); }
inline Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Decimal>
struct Caster_1_t58883F2D0ACC52F20C8978FC28C9C9D9CCFC69C2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t58883F2D0ACC52F20C8978FC28C9C9D9CCFC69C2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t58883F2D0ACC52F20C8978FC28C9C9D9CCFC69C2_StaticFields, ___Instance_0)); }
inline Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_tAFED591EF13E015162D8B2F6F629837E43482837 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tAFED591EF13E015162D8B2F6F629837E43482837_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tAFED591EF13E015162D8B2F6F629837E43482837_StaticFields, ___Instance_0)); }
inline Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Double>
struct Caster_1_tF3B99FF3BBCDEA3D042AAF9F41A16C7AD4A29ED2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tF3B99FF3BBCDEA3D042AAF9F41A16C7AD4A29ED2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tF3B99FF3BBCDEA3D042AAF9F41A16C7AD4A29ED2_StaticFields, ___Instance_0)); }
inline Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Guid>
struct Caster_1_tD296AE417E6EE7ADB8DAF202B8BC3203CBE89300 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tD296AE417E6EE7ADB8DAF202B8BC3203CBE89300_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tD296AE417E6EE7ADB8DAF202B8BC3203CBE89300_StaticFields, ___Instance_0)); }
inline Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Int16>
struct Caster_1_t699B4565B14DC3E4AAE69424E8CCCB8C5F5C84BF : public RuntimeObject
{
public:
public:
};
struct Caster_1_t699B4565B14DC3E4AAE69424E8CCCB8C5F5C84BF_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t699B4565B14DC3E4AAE69424E8CCCB8C5F5C84BF_StaticFields, ___Instance_0)); }
inline Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Int32>
struct Caster_1_t847B65F78580B4C35C46212B37066290881E839D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t847B65F78580B4C35C46212B37066290881E839D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t847B65F78580B4C35C46212B37066290881E839D_StaticFields, ___Instance_0)); }
inline Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Int64>
struct Caster_1_tEE77AB8F884BD2579C99A38CFB1AAFEE0DCF07FA : public RuntimeObject
{
public:
public:
};
struct Caster_1_tEE77AB8F884BD2579C99A38CFB1AAFEE0DCF07FA_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tEE77AB8F884BD2579C99A38CFB1AAFEE0DCF07FA_StaticFields, ___Instance_0)); }
inline Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.IntPtr>
struct Caster_1_t02312CA733627756FCC99C1ED8322D3A6C51FB60 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t02312CA733627756FCC99C1ED8322D3A6C51FB60_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t02312CA733627756FCC99C1ED8322D3A6C51FB60_StaticFields, ___Instance_0)); }
inline Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Object>
struct Caster_1_t79B0C615C852AD755B10B324A903BD8ECE30C1D2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t79B0C615C852AD755B10B324A903BD8ECE30C1D2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t79B0C615C852AD755B10B324A903BD8ECE30C1D2_StaticFields, ___Instance_0)); }
inline Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.SByte>
struct Caster_1_t27F1F99B9A4CEB186ECF7805145934EA77CB1257 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t27F1F99B9A4CEB186ECF7805145934EA77CB1257_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t27F1F99B9A4CEB186ECF7805145934EA77CB1257_StaticFields, ___Instance_0)); }
inline Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Single>
struct Caster_1_t5908B8116E70EA9E946E9F5128B622E9063630CC : public RuntimeObject
{
public:
public:
};
struct Caster_1_t5908B8116E70EA9E946E9F5128B622E9063630CC_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t5908B8116E70EA9E946E9F5128B622E9063630CC_StaticFields, ___Instance_0)); }
inline Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.TimeSpan>
struct Caster_1_t0B12755AB11A35CCF3F2B11D0A02101A3A325F45 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t0B12755AB11A35CCF3F2B11D0A02101A3A325F45_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t0B12755AB11A35CCF3F2B11D0A02101A3A325F45_StaticFields, ___Instance_0)); }
inline Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.UInt16>
struct Caster_1_t408C47A521D832C453740F1E3F374FCCB5E32E8A : public RuntimeObject
{
public:
public:
};
struct Caster_1_t408C47A521D832C453740F1E3F374FCCB5E32E8A_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t408C47A521D832C453740F1E3F374FCCB5E32E8A_StaticFields, ___Instance_0)); }
inline Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.UInt32>
struct Caster_1_t674C9A8AF3118A1ACC250CBE1B160B5287944451 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t674C9A8AF3118A1ACC250CBE1B160B5287944451_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t674C9A8AF3118A1ACC250CBE1B160B5287944451_StaticFields, ___Instance_0)); }
inline Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.UInt64>
struct Caster_1_t80311815F1B7E9467CB0674AEC735F4E06AF50CA : public RuntimeObject
{
public:
public:
};
struct Caster_1_t80311815F1B7E9467CB0674AEC735F4E06AF50CA_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t80311815F1B7E9467CB0674AEC735F4E06AF50CA_StaticFields, ___Instance_0)); }
inline Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.UIntPtr>
struct Caster_1_t57C825D368DB63A6299B8DF204CDB497F51F538D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t57C825D368DB63A6299B8DF204CDB497F51F538D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t57C825D368DB63A6299B8DF204CDB497F51F538D_StaticFields, ___Instance_0)); }
inline Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Boolean>
struct Caster_1_tCAA6ACA318706EA3CFC28187859C80CD568A8943 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCAA6ACA318706EA3CFC28187859C80CD568A8943_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCAA6ACA318706EA3CFC28187859C80CD568A8943_StaticFields, ___Instance_0)); }
inline Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Byte>
struct Caster_1_tCFD75E9DB3970A86144B6EFA3E793B6C12B52B33 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCFD75E9DB3970A86144B6EFA3E793B6C12B52B33_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCFD75E9DB3970A86144B6EFA3E793B6C12B52B33_StaticFields, ___Instance_0)); }
inline Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Char>
struct Caster_1_tDE1C83FE3C48AB3782D0BCBC7ACD4EA1700DBF59 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tDE1C83FE3C48AB3782D0BCBC7ACD4EA1700DBF59_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tDE1C83FE3C48AB3782D0BCBC7ACD4EA1700DBF59_StaticFields, ___Instance_0)); }
inline Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_t6B1DD3EE8B308447896C88A6A69138BC65A5FA40 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t6B1DD3EE8B308447896C88A6A69138BC65A5FA40_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t6B1DD3EE8B308447896C88A6A69138BC65A5FA40_StaticFields, ___Instance_0)); }
inline Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.DateTime>
struct Caster_1_t502C258C3B6A03A1FD5B2E3254072F77EE89A675 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t502C258C3B6A03A1FD5B2E3254072F77EE89A675_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t502C258C3B6A03A1FD5B2E3254072F77EE89A675_StaticFields, ___Instance_0)); }
inline Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.DateTimeOffset>
struct Caster_1_t11F20427B499F3CD52E11D6A1AB7C931DCF96DB8 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t11F20427B499F3CD52E11D6A1AB7C931DCF96DB8_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t11F20427B499F3CD52E11D6A1AB7C931DCF96DB8_StaticFields, ___Instance_0)); }
inline Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Decimal>
struct Caster_1_tB676512E7A350DB4ED01AA9C00F5621E3A8C7F0F : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB676512E7A350DB4ED01AA9C00F5621E3A8C7F0F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB676512E7A350DB4ED01AA9C00F5621E3A8C7F0F_StaticFields, ___Instance_0)); }
inline Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_t8218635FFE52C666262AEEAEE207339F47173DFF : public RuntimeObject
{
public:
public:
};
struct Caster_1_t8218635FFE52C666262AEEAEE207339F47173DFF_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t8218635FFE52C666262AEEAEE207339F47173DFF_StaticFields, ___Instance_0)); }
inline Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Double>
struct Caster_1_t03D8E1F7D51ED3D2AE2677EDF3B6A0F0A4416AB5 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t03D8E1F7D51ED3D2AE2677EDF3B6A0F0A4416AB5_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t03D8E1F7D51ED3D2AE2677EDF3B6A0F0A4416AB5_StaticFields, ___Instance_0)); }
inline Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Guid>
struct Caster_1_t5932849F6E79E1885331632BE0371A5087A6DD8C : public RuntimeObject
{
public:
public:
};
struct Caster_1_t5932849F6E79E1885331632BE0371A5087A6DD8C_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t5932849F6E79E1885331632BE0371A5087A6DD8C_StaticFields, ___Instance_0)); }
inline Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Int16>
struct Caster_1_t1F87BBD03AF9272751C51F5D605EFEF43AB46FE1 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t1F87BBD03AF9272751C51F5D605EFEF43AB46FE1_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t1F87BBD03AF9272751C51F5D605EFEF43AB46FE1_StaticFields, ___Instance_0)); }
inline Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Int32>
struct Caster_1_tB23D3BA31E450FB0952F33E1D2DB4DBFCD754BE1 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB23D3BA31E450FB0952F33E1D2DB4DBFCD754BE1_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB23D3BA31E450FB0952F33E1D2DB4DBFCD754BE1_StaticFields, ___Instance_0)); }
inline Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Int64>
struct Caster_1_tCA7F280780B937135FD0247CC90F5BCAD8963441 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCA7F280780B937135FD0247CC90F5BCAD8963441_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCA7F280780B937135FD0247CC90F5BCAD8963441_StaticFields, ___Instance_0)); }
inline Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.IntPtr>
struct Caster_1_t33C636F2356154C6CDFA5421A2797B1F58F30BCC : public RuntimeObject
{
public:
public:
};
struct Caster_1_t33C636F2356154C6CDFA5421A2797B1F58F30BCC_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t33C636F2356154C6CDFA5421A2797B1F58F30BCC_StaticFields, ___Instance_0)); }
inline Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Object>
struct Caster_1_tF7A61263020C72F89182A7A8527DE53779F6D045 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tF7A61263020C72F89182A7A8527DE53779F6D045_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tF7A61263020C72F89182A7A8527DE53779F6D045_StaticFields, ___Instance_0)); }
inline Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.SByte>
struct Caster_1_tE4ED47E76B44B007CC692D239C61ED53AE3DEC20 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tE4ED47E76B44B007CC692D239C61ED53AE3DEC20_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tE4ED47E76B44B007CC692D239C61ED53AE3DEC20_StaticFields, ___Instance_0)); }
inline Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Single>
struct Caster_1_tFFE1731A5A18D2FC62FB4FD0E140F893FEFCBFBC : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFFE1731A5A18D2FC62FB4FD0E140F893FEFCBFBC_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFFE1731A5A18D2FC62FB4FD0E140F893FEFCBFBC_StaticFields, ___Instance_0)); }
inline Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.TimeSpan>
struct Caster_1_tE7B6AE02946C8C7D035775855D3F8667EECF49F0 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tE7B6AE02946C8C7D035775855D3F8667EECF49F0_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tE7B6AE02946C8C7D035775855D3F8667EECF49F0_StaticFields, ___Instance_0)); }
inline Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.UInt16>
struct Caster_1_tAB8276A53DE8D0B71D0C922FBDC1EA643B4B0801 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tAB8276A53DE8D0B71D0C922FBDC1EA643B4B0801_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tAB8276A53DE8D0B71D0C922FBDC1EA643B4B0801_StaticFields, ___Instance_0)); }
inline Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.UInt32>
struct Caster_1_t46C35E368FA9C3535F632F4A43107C8C0DECDF2D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t46C35E368FA9C3535F632F4A43107C8C0DECDF2D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t46C35E368FA9C3535F632F4A43107C8C0DECDF2D_StaticFields, ___Instance_0)); }
inline Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.UInt64>
struct Caster_1_t0DD4ACB69C178BCC9281945CB5322037FF50ACD4 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t0DD4ACB69C178BCC9281945CB5322037FF50ACD4_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t0DD4ACB69C178BCC9281945CB5322037FF50ACD4_StaticFields, ___Instance_0)); }
inline Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.UIntPtr>
struct Caster_1_tAB93366D39B91199FA6BB514B138640EEA06D826 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tAB93366D39B91199FA6BB514B138640EEA06D826_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tAB93366D39B91199FA6BB514B138640EEA06D826_StaticFields, ___Instance_0)); }
inline Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Boolean>
struct Caster_1_t48A24901856804183E97D899F37E2B095C3D3AD0 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t48A24901856804183E97D899F37E2B095C3D3AD0_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t48A24901856804183E97D899F37E2B095C3D3AD0_StaticFields, ___Instance_0)); }
inline Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Byte>
struct Caster_1_tB8F12CF62FE2B524624E09DCE78970BE6555258F : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB8F12CF62FE2B524624E09DCE78970BE6555258F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB8F12CF62FE2B524624E09DCE78970BE6555258F_StaticFields, ___Instance_0)); }
inline Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Char>
struct Caster_1_tD430240C674256CDF3116A5E5C05D32D14ADE25B : public RuntimeObject
{
public:
public:
};
struct Caster_1_tD430240C674256CDF3116A5E5C05D32D14ADE25B_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tD430240C674256CDF3116A5E5C05D32D14ADE25B_StaticFields, ___Instance_0)); }
inline Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_tA4C9DBDB9984A7DBDBE1E328A1E6D32056B598D5 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tA4C9DBDB9984A7DBDBE1E328A1E6D32056B598D5_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tA4C9DBDB9984A7DBDBE1E328A1E6D32056B598D5_StaticFields, ___Instance_0)); }
inline Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.DateTime>
struct Caster_1_t910ED4892D830D9260544CCD5A5BA17D0EAAC5A7 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t910ED4892D830D9260544CCD5A5BA17D0EAAC5A7_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t910ED4892D830D9260544CCD5A5BA17D0EAAC5A7_StaticFields, ___Instance_0)); }
inline Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.DateTimeOffset>
struct Caster_1_t3B656E50540D77F8D98EC3723A33AD022BA02142 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3B656E50540D77F8D98EC3723A33AD022BA02142_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3B656E50540D77F8D98EC3723A33AD022BA02142_StaticFields, ___Instance_0)); }
inline Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Decimal>
struct Caster_1_t37CFBE48D145A145182032241D4C96C7A9651872 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t37CFBE48D145A145182032241D4C96C7A9651872_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t37CFBE48D145A145182032241D4C96C7A9651872_StaticFields, ___Instance_0)); }
inline Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_t6C69308FA9D7112A4603D39468BDA09974918F69 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t6C69308FA9D7112A4603D39468BDA09974918F69_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t6C69308FA9D7112A4603D39468BDA09974918F69_StaticFields, ___Instance_0)); }
inline Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Double>
struct Caster_1_t667DCCFE8DA1234CBF65A5978B6D27BE63CD598A : public RuntimeObject
{
public:
public:
};
struct Caster_1_t667DCCFE8DA1234CBF65A5978B6D27BE63CD598A_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t667DCCFE8DA1234CBF65A5978B6D27BE63CD598A_StaticFields, ___Instance_0)); }
inline Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Guid>
struct Caster_1_tB84AF4B31F4DAF0AB144E99A83CE997FB4C72D58 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB84AF4B31F4DAF0AB144E99A83CE997FB4C72D58_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB84AF4B31F4DAF0AB144E99A83CE997FB4C72D58_StaticFields, ___Instance_0)); }
inline Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Int16>
struct Caster_1_t10436C94D617CD0D6ABB2F7D073CFA27B74C1E30 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t10436C94D617CD0D6ABB2F7D073CFA27B74C1E30_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t10436C94D617CD0D6ABB2F7D073CFA27B74C1E30_StaticFields, ___Instance_0)); }
inline Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Int32>
struct Caster_1_t14BB827E485FED333B17154453079AE34F1F49AD : public RuntimeObject
{
public:
public:
};
struct Caster_1_t14BB827E485FED333B17154453079AE34F1F49AD_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t14BB827E485FED333B17154453079AE34F1F49AD_StaticFields, ___Instance_0)); }
inline Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Int64>
struct Caster_1_t7A312140662B26A86CC59C245C7C848163A49AB4 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7A312140662B26A86CC59C245C7C848163A49AB4_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7A312140662B26A86CC59C245C7C848163A49AB4_StaticFields, ___Instance_0)); }
inline Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.IntPtr>
struct Caster_1_t9C36147697AE67003B8A0EF11EEF2516066D90C4 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9C36147697AE67003B8A0EF11EEF2516066D90C4_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9C36147697AE67003B8A0EF11EEF2516066D90C4_StaticFields, ___Instance_0)); }
inline Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Object>
struct Caster_1_t31EFD992543429652A6ED1652D545CCD372DB7C5 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t31EFD992543429652A6ED1652D545CCD372DB7C5_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t31EFD992543429652A6ED1652D545CCD372DB7C5_StaticFields, ___Instance_0)); }
inline Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.SByte>
struct Caster_1_t9347D88993875351431679E4107168C7CD28B825 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9347D88993875351431679E4107168C7CD28B825_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9347D88993875351431679E4107168C7CD28B825_StaticFields, ___Instance_0)); }
inline Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Single>
struct Caster_1_t3EA25BC7E67BA9A7DA94FB04B9939AA009AE1F2D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3EA25BC7E67BA9A7DA94FB04B9939AA009AE1F2D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3EA25BC7E67BA9A7DA94FB04B9939AA009AE1F2D_StaticFields, ___Instance_0)); }
inline Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.TimeSpan>
struct Caster_1_tFDA8B5B6F494CA32867BEDA1744607B9DE4AC7FD : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFDA8B5B6F494CA32867BEDA1744607B9DE4AC7FD_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFDA8B5B6F494CA32867BEDA1744607B9DE4AC7FD_StaticFields, ___Instance_0)); }
inline Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.UInt16>
struct Caster_1_t5A5C0360CA0AE23E50B74262E52C01F758755C97 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t5A5C0360CA0AE23E50B74262E52C01F758755C97_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t5A5C0360CA0AE23E50B74262E52C01F758755C97_StaticFields, ___Instance_0)); }
inline Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.UInt32>
struct Caster_1_t3A7D9F3C5EC2EF5D573D0A6E3F67BA58C73B050A : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3A7D9F3C5EC2EF5D573D0A6E3F67BA58C73B050A_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3A7D9F3C5EC2EF5D573D0A6E3F67BA58C73B050A_StaticFields, ___Instance_0)); }
inline Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.UInt64>
struct Caster_1_t5606234865DF0152C73166D640BD2651AAC8D43E : public RuntimeObject
{
public:
public:
};
struct Caster_1_t5606234865DF0152C73166D640BD2651AAC8D43E_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t5606234865DF0152C73166D640BD2651AAC8D43E_StaticFields, ___Instance_0)); }
inline Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.UIntPtr>
struct Caster_1_t0233A96550545D6F17A5141586520D492131F3AF : public RuntimeObject
{
public:
public:
};
struct Caster_1_t0233A96550545D6F17A5141586520D492131F3AF_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t0233A96550545D6F17A5141586520D492131F3AF_StaticFields, ___Instance_0)); }
inline Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Boolean>
struct Caster_1_t78D880B4DED6A81AFFB3DA6D32BA8A0E295F3788 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t78D880B4DED6A81AFFB3DA6D32BA8A0E295F3788_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t78D880B4DED6A81AFFB3DA6D32BA8A0E295F3788_StaticFields, ___Instance_0)); }
inline Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Byte>
struct Caster_1_tF1E9F5ACC455E168230D60D0AE5E848A5DBE2930 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tF1E9F5ACC455E168230D60D0AE5E848A5DBE2930_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tF1E9F5ACC455E168230D60D0AE5E848A5DBE2930_StaticFields, ___Instance_0)); }
inline Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Char>
struct Caster_1_t95AC156F3D75823ABA3B6749B8E5DAAF8EB6AB25 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t95AC156F3D75823ABA3B6749B8E5DAAF8EB6AB25_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t95AC156F3D75823ABA3B6749B8E5DAAF8EB6AB25_StaticFields, ___Instance_0)); }
inline Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_t8B6EA4487FE31C415BCD954287C70DF849E09E08 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t8B6EA4487FE31C415BCD954287C70DF849E09E08_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t8B6EA4487FE31C415BCD954287C70DF849E09E08_StaticFields, ___Instance_0)); }
inline Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.DateTime>
struct Caster_1_t2314A24A7931390C6867F5AB59BCE7DF7875EDB6 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t2314A24A7931390C6867F5AB59BCE7DF7875EDB6_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t2314A24A7931390C6867F5AB59BCE7DF7875EDB6_StaticFields, ___Instance_0)); }
inline Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.DateTimeOffset>
struct Caster_1_t39143C74EFB8AD6200EFEE9E31A9EBDC9718F1E5 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t39143C74EFB8AD6200EFEE9E31A9EBDC9718F1E5_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t39143C74EFB8AD6200EFEE9E31A9EBDC9718F1E5_StaticFields, ___Instance_0)); }
inline Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Decimal>
struct Caster_1_t4B1D64CB72ED6461809D48568ECB009A92F781FE : public RuntimeObject
{
public:
public:
};
struct Caster_1_t4B1D64CB72ED6461809D48568ECB009A92F781FE_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t4B1D64CB72ED6461809D48568ECB009A92F781FE_StaticFields, ___Instance_0)); }
inline Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_t279DFE68F30E6659059D94B02BD5361A9BBE40D4 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t279DFE68F30E6659059D94B02BD5361A9BBE40D4_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t279DFE68F30E6659059D94B02BD5361A9BBE40D4_StaticFields, ___Instance_0)); }
inline Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Double>
struct Caster_1_tFFC10B3F233B81FE8D4EA64668FE2EA15A433C6D : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFFC10B3F233B81FE8D4EA64668FE2EA15A433C6D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFFC10B3F233B81FE8D4EA64668FE2EA15A433C6D_StaticFields, ___Instance_0)); }
inline Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Guid>
struct Caster_1_t7F15074A7BC9B5DA634F74067B2CAA3E4D8C7379 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7F15074A7BC9B5DA634F74067B2CAA3E4D8C7379_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7F15074A7BC9B5DA634F74067B2CAA3E4D8C7379_StaticFields, ___Instance_0)); }
inline Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Int16>
struct Caster_1_tE25B230380E2CE54B9276690CD814DE511450833 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tE25B230380E2CE54B9276690CD814DE511450833_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tE25B230380E2CE54B9276690CD814DE511450833_StaticFields, ___Instance_0)); }
inline Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Int32>
struct Caster_1_t3B87E9C89959ABEE4F6F1172FFA2D99D20FEAF4D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3B87E9C89959ABEE4F6F1172FFA2D99D20FEAF4D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3B87E9C89959ABEE4F6F1172FFA2D99D20FEAF4D_StaticFields, ___Instance_0)); }
inline Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Int64>
struct Caster_1_t7D3ABA04133A298DFD0422ADFEBDEF3656AF0031 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7D3ABA04133A298DFD0422ADFEBDEF3656AF0031_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7D3ABA04133A298DFD0422ADFEBDEF3656AF0031_StaticFields, ___Instance_0)); }
inline Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.IntPtr>
struct Caster_1_t9E4D034C656C467484BBD42F5B9FF5B91F790BED : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9E4D034C656C467484BBD42F5B9FF5B91F790BED_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9E4D034C656C467484BBD42F5B9FF5B91F790BED_StaticFields, ___Instance_0)); }
inline Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Object>
struct Caster_1_t7F4B7F98CCD80CC0E1B52334B484C566B3772846 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7F4B7F98CCD80CC0E1B52334B484C566B3772846_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7F4B7F98CCD80CC0E1B52334B484C566B3772846_StaticFields, ___Instance_0)); }
inline Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.SByte>
struct Caster_1_tD1867CCD99C0E4D6779357AA6EAE58CA54AE0AF4 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tD1867CCD99C0E4D6779357AA6EAE58CA54AE0AF4_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tD1867CCD99C0E4D6779357AA6EAE58CA54AE0AF4_StaticFields, ___Instance_0)); }
inline Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Single>
struct Caster_1_tCADDC259BB0BC859D77522BE7660068F2B40F0FC : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCADDC259BB0BC859D77522BE7660068F2B40F0FC_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCADDC259BB0BC859D77522BE7660068F2B40F0FC_StaticFields, ___Instance_0)); }
inline Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.TimeSpan>
struct Caster_1_tB392A04593C4239456BD2F10286A27F0AE928679 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB392A04593C4239456BD2F10286A27F0AE928679_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB392A04593C4239456BD2F10286A27F0AE928679_StaticFields, ___Instance_0)); }
inline Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.UInt16>
struct Caster_1_t9F5AB8620B99DD3C4BBDD28E6F5A78003016D254 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9F5AB8620B99DD3C4BBDD28E6F5A78003016D254_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9F5AB8620B99DD3C4BBDD28E6F5A78003016D254_StaticFields, ___Instance_0)); }
inline Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.UInt32>
struct Caster_1_t5F92169CA22878B796AF5109203D193F987A4A39 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t5F92169CA22878B796AF5109203D193F987A4A39_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t5F92169CA22878B796AF5109203D193F987A4A39_StaticFields, ___Instance_0)); }
inline Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.UInt64>
struct Caster_1_tF96225B214D9B7EE71FE55E75A65EBD3AFEFAB6C : public RuntimeObject
{
public:
public:
};
struct Caster_1_tF96225B214D9B7EE71FE55E75A65EBD3AFEFAB6C_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tF96225B214D9B7EE71FE55E75A65EBD3AFEFAB6C_StaticFields, ___Instance_0)); }
inline Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.UIntPtr>
struct Caster_1_t02CDD619AF43E06FEDAB4F242EB5DAB284E98B19 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t02CDD619AF43E06FEDAB4F242EB5DAB284E98B19_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t02CDD619AF43E06FEDAB4F242EB5DAB284E98B19_StaticFields, ___Instance_0)); }
inline Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Object,System.Object>
struct Caster_1_t195DBA8A516B142DCC1ACA2DA98380583B5F1D8E : public RuntimeObject
{
public:
public:
};
struct Caster_1_t195DBA8A516B142DCC1ACA2DA98380583B5F1D8E_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t195DBA8A516B142DCC1ACA2DA98380583B5F1D8E_StaticFields, ___Instance_0)); }
inline Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Boolean>
struct Caster_1_t9548AD2802014C51CE95C2D167F4C5AFF00F7AB0 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9548AD2802014C51CE95C2D167F4C5AFF00F7AB0_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9548AD2802014C51CE95C2D167F4C5AFF00F7AB0_StaticFields, ___Instance_0)); }
inline Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Byte>
struct Caster_1_t6D09AA62870A76ABA6E5E4D301AFCCF93F194424 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t6D09AA62870A76ABA6E5E4D301AFCCF93F194424_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t6D09AA62870A76ABA6E5E4D301AFCCF93F194424_StaticFields, ___Instance_0)); }
inline Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Char>
struct Caster_1_t7BED5C159FA7237F00FC5BF1362A67DD3DEE749A : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7BED5C159FA7237F00FC5BF1362A67DD3DEE749A_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7BED5C159FA7237F00FC5BF1362A67DD3DEE749A_StaticFields, ___Instance_0)); }
inline Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_tFE5F9417466A4CB788D519C7878ECCB397E668A1 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFE5F9417466A4CB788D519C7878ECCB397E668A1_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFE5F9417466A4CB788D519C7878ECCB397E668A1_StaticFields, ___Instance_0)); }
inline Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.DateTime>
struct Caster_1_tB027436891672D8E446545806D30A74D601A125F : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB027436891672D8E446545806D30A74D601A125F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB027436891672D8E446545806D30A74D601A125F_StaticFields, ___Instance_0)); }
inline Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.DateTimeOffset>
struct Caster_1_tC50D5F2635E0A7DCD57C363B1CA71CFEA00F93EF : public RuntimeObject
{
public:
public:
};
struct Caster_1_tC50D5F2635E0A7DCD57C363B1CA71CFEA00F93EF_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tC50D5F2635E0A7DCD57C363B1CA71CFEA00F93EF_StaticFields, ___Instance_0)); }
inline Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Decimal>
struct Caster_1_tE749C798EEF25AA04DF0E56627917C360336EBA4 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tE749C798EEF25AA04DF0E56627917C360336EBA4_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tE749C798EEF25AA04DF0E56627917C360336EBA4_StaticFields, ___Instance_0)); }
inline Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_t70BCB30FF0C2DF9E545F34DEF21271408068477F : public RuntimeObject
{
public:
public:
};
struct Caster_1_t70BCB30FF0C2DF9E545F34DEF21271408068477F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t70BCB30FF0C2DF9E545F34DEF21271408068477F_StaticFields, ___Instance_0)); }
inline Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Double>
struct Caster_1_tC218F4859CF65473DA915EE5333EFDCFEE72392E : public RuntimeObject
{
public:
public:
};
struct Caster_1_tC218F4859CF65473DA915EE5333EFDCFEE72392E_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tC218F4859CF65473DA915EE5333EFDCFEE72392E_StaticFields, ___Instance_0)); }
inline Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Guid>
struct Caster_1_t8409BE0ECE6FE2A29D79E7044752D251CB863421 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t8409BE0ECE6FE2A29D79E7044752D251CB863421_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t8409BE0ECE6FE2A29D79E7044752D251CB863421_StaticFields, ___Instance_0)); }
inline Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Int16>
struct Caster_1_t62F9F0EA0D2CF70BE880EC5B4DB6C4E3BD191FF1 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t62F9F0EA0D2CF70BE880EC5B4DB6C4E3BD191FF1_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t62F9F0EA0D2CF70BE880EC5B4DB6C4E3BD191FF1_StaticFields, ___Instance_0)); }
inline Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Int32>
struct Caster_1_t12F7AE622EDC8B8147BB5162376EAEBD2A1A716D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t12F7AE622EDC8B8147BB5162376EAEBD2A1A716D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t12F7AE622EDC8B8147BB5162376EAEBD2A1A716D_StaticFields, ___Instance_0)); }
inline Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Int64>
struct Caster_1_t9136EB8D74B86E14C4D0B7DE2699BB30FF62ADE0 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9136EB8D74B86E14C4D0B7DE2699BB30FF62ADE0_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9136EB8D74B86E14C4D0B7DE2699BB30FF62ADE0_StaticFields, ___Instance_0)); }
inline Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.IntPtr>
struct Caster_1_t3AEE07159271C04282D4520F761455EA4BF25B90 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3AEE07159271C04282D4520F761455EA4BF25B90_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3AEE07159271C04282D4520F761455EA4BF25B90_StaticFields, ___Instance_0)); }
inline Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Object>
struct Caster_1_tDE4AB1F4E3BD9C2B0BF368F239F02CD0D92D7D3B : public RuntimeObject
{
public:
public:
};
struct Caster_1_tDE4AB1F4E3BD9C2B0BF368F239F02CD0D92D7D3B_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tDE4AB1F4E3BD9C2B0BF368F239F02CD0D92D7D3B_StaticFields, ___Instance_0)); }
inline Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.SByte>
struct Caster_1_tCC08F4371265D272EC5F5C61F06234FB4C49F905 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCC08F4371265D272EC5F5C61F06234FB4C49F905_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCC08F4371265D272EC5F5C61F06234FB4C49F905_StaticFields, ___Instance_0)); }
inline Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Single>
struct Caster_1_tB1E0520D57EA2A38EB25F38157F7FAE2077D0519 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB1E0520D57EA2A38EB25F38157F7FAE2077D0519_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB1E0520D57EA2A38EB25F38157F7FAE2077D0519_StaticFields, ___Instance_0)); }
inline Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.TimeSpan>
struct Caster_1_t063FFE54B6E834FCAADA9B98B6556AFEC0411632 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t063FFE54B6E834FCAADA9B98B6556AFEC0411632_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t063FFE54B6E834FCAADA9B98B6556AFEC0411632_StaticFields, ___Instance_0)); }
inline Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.UInt16>
struct Caster_1_tA4C712C2F66B1CCA6198D56E9156B3ED627F7E7F : public RuntimeObject
{
public:
public:
};
struct Caster_1_tA4C712C2F66B1CCA6198D56E9156B3ED627F7E7F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tA4C712C2F66B1CCA6198D56E9156B3ED627F7E7F_StaticFields, ___Instance_0)); }
inline Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.UInt32>
struct Caster_1_t4E01ADD98CF6A52B499B239DD79900153A6E8CB9 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t4E01ADD98CF6A52B499B239DD79900153A6E8CB9_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t4E01ADD98CF6A52B499B239DD79900153A6E8CB9_StaticFields, ___Instance_0)); }
inline Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.UInt64>
struct Caster_1_tA76F3CD44521225217CEE9D5E70655913B3652F6 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tA76F3CD44521225217CEE9D5E70655913B3652F6_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tA76F3CD44521225217CEE9D5E70655913B3652F6_StaticFields, ___Instance_0)); }
inline Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.UIntPtr>
struct Caster_1_t27A7F78CA974CB9EB88650C0F7D4CCB345E0D6F0 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t27A7F78CA974CB9EB88650C0F7D4CCB345E0D6F0_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t27A7F78CA974CB9EB88650C0F7D4CCB345E0D6F0_StaticFields, ___Instance_0)); }
inline Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Boolean>
struct Caster_1_t2AC7FD1B9C92018FCD42D2FBB7DE1C15E7C6141D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t2AC7FD1B9C92018FCD42D2FBB7DE1C15E7C6141D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t2AC7FD1B9C92018FCD42D2FBB7DE1C15E7C6141D_StaticFields, ___Instance_0)); }
inline Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Byte>
struct Caster_1_tA9F99D3DE3C2B79878574DA79394D40484CF909C : public RuntimeObject
{
public:
public:
};
struct Caster_1_tA9F99D3DE3C2B79878574DA79394D40484CF909C_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tA9F99D3DE3C2B79878574DA79394D40484CF909C_StaticFields, ___Instance_0)); }
inline Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Char>
struct Caster_1_t439110BADC840296B0301DC221E3742B2C8E8934 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t439110BADC840296B0301DC221E3742B2C8E8934_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t439110BADC840296B0301DC221E3742B2C8E8934_StaticFields, ___Instance_0)); }
inline Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_t9CF680A45E2713569B0D6E5DCD3ACE8E5CE11A5F : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9CF680A45E2713569B0D6E5DCD3ACE8E5CE11A5F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9CF680A45E2713569B0D6E5DCD3ACE8E5CE11A5F_StaticFields, ___Instance_0)); }
inline Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.DateTime>
struct Caster_1_t45EEB8AA14910B5FE2FEA34EC88A9154085E86BC : public RuntimeObject
{
public:
public:
};
struct Caster_1_t45EEB8AA14910B5FE2FEA34EC88A9154085E86BC_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t45EEB8AA14910B5FE2FEA34EC88A9154085E86BC_StaticFields, ___Instance_0)); }
inline Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.DateTimeOffset>
struct Caster_1_t0AD7C98192FA0900645BFF7111DF2264C1F11843 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t0AD7C98192FA0900645BFF7111DF2264C1F11843_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t0AD7C98192FA0900645BFF7111DF2264C1F11843_StaticFields, ___Instance_0)); }
inline Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Decimal>
struct Caster_1_tB30E4B83744A2AB4B34E2140F09FF2DBAD9067A2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB30E4B83744A2AB4B34E2140F09FF2DBAD9067A2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB30E4B83744A2AB4B34E2140F09FF2DBAD9067A2_StaticFields, ___Instance_0)); }
inline Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_t9F48A0F7F413295607FDDD8C95EAA2A8FB1BA77F : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9F48A0F7F413295607FDDD8C95EAA2A8FB1BA77F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9F48A0F7F413295607FDDD8C95EAA2A8FB1BA77F_StaticFields, ___Instance_0)); }
inline Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Double>
struct Caster_1_tFA61F79F888D97CEE77D5548328774BE7E4EB84A : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFA61F79F888D97CEE77D5548328774BE7E4EB84A_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFA61F79F888D97CEE77D5548328774BE7E4EB84A_StaticFields, ___Instance_0)); }
inline Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Guid>
struct Caster_1_t62DA063BB7BB019FFBE6B9ED3A08D069E330FE87 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t62DA063BB7BB019FFBE6B9ED3A08D069E330FE87_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t62DA063BB7BB019FFBE6B9ED3A08D069E330FE87_StaticFields, ___Instance_0)); }
inline Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Int16>
struct Caster_1_tF5CE3C0B8FDD93C834FC13D907003475F7844594 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tF5CE3C0B8FDD93C834FC13D907003475F7844594_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tF5CE3C0B8FDD93C834FC13D907003475F7844594_StaticFields, ___Instance_0)); }
inline Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Int32>
struct Caster_1_t8F8BD84B7E2CC9232254A7A82FBEA7C1C7227E24 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t8F8BD84B7E2CC9232254A7A82FBEA7C1C7227E24_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t8F8BD84B7E2CC9232254A7A82FBEA7C1C7227E24_StaticFields, ___Instance_0)); }
inline Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Int64>
struct Caster_1_t7796DD6DA3A2E903A8337A4426EA117003E4FF07 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7796DD6DA3A2E903A8337A4426EA117003E4FF07_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7796DD6DA3A2E903A8337A4426EA117003E4FF07_StaticFields, ___Instance_0)); }
inline Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.IntPtr>
struct Caster_1_tF06869CDE05BEA07C45D10B5C27C152492D8F494 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tF06869CDE05BEA07C45D10B5C27C152492D8F494_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tF06869CDE05BEA07C45D10B5C27C152492D8F494_StaticFields, ___Instance_0)); }
inline Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Object>
struct Caster_1_t0E97020316A62558167F5F018A989125D28729AD : public RuntimeObject
{
public:
public:
};
struct Caster_1_t0E97020316A62558167F5F018A989125D28729AD_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t0E97020316A62558167F5F018A989125D28729AD_StaticFields, ___Instance_0)); }
inline Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.SByte>
struct Caster_1_t7194A004154AABF5CF224780C51648A67A6757A2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7194A004154AABF5CF224780C51648A67A6757A2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7194A004154AABF5CF224780C51648A67A6757A2_StaticFields, ___Instance_0)); }
inline Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Single>
struct Caster_1_t073650CFFC30F591C4E5B47753CBDF6EAEC9AA0D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t073650CFFC30F591C4E5B47753CBDF6EAEC9AA0D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t073650CFFC30F591C4E5B47753CBDF6EAEC9AA0D_StaticFields, ___Instance_0)); }
inline Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.TimeSpan>
struct Caster_1_tC9893BC43C67D8FE44500C545C7D0B22FBDFA338 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tC9893BC43C67D8FE44500C545C7D0B22FBDFA338_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tC9893BC43C67D8FE44500C545C7D0B22FBDFA338_StaticFields, ___Instance_0)); }
inline Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.UInt16>
struct Caster_1_t97E30322734EE96D22D5EDDDA8A32D7F28BF9E0D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t97E30322734EE96D22D5EDDDA8A32D7F28BF9E0D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t97E30322734EE96D22D5EDDDA8A32D7F28BF9E0D_StaticFields, ___Instance_0)); }
inline Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.UInt32>
struct Caster_1_tEAB5EDC98E125207E56614BEDA0E194CDB6A81D2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tEAB5EDC98E125207E56614BEDA0E194CDB6A81D2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tEAB5EDC98E125207E56614BEDA0E194CDB6A81D2_StaticFields, ___Instance_0)); }
inline Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.UInt64>
struct Caster_1_tE1468C16E0D935665BAFEAE58EC1DC80FEA18FD0 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tE1468C16E0D935665BAFEAE58EC1DC80FEA18FD0_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tE1468C16E0D935665BAFEAE58EC1DC80FEA18FD0_StaticFields, ___Instance_0)); }
inline Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.UIntPtr>
struct Caster_1_t9DA7DEC0029E18FF11AF097849FFE2FD2B961C60 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9DA7DEC0029E18FF11AF097849FFE2FD2B961C60_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9DA7DEC0029E18FF11AF097849FFE2FD2B961C60_StaticFields, ___Instance_0)); }
inline Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Boolean>
struct Caster_1_t1B6BC63943ECA453AF4038A2F429DC89D1C88504 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t1B6BC63943ECA453AF4038A2F429DC89D1C88504_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t1B6BC63943ECA453AF4038A2F429DC89D1C88504_StaticFields, ___Instance_0)); }
inline Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Byte>
struct Caster_1_t1E5C78F2324B0966F93815A21CF15C56A6D1D763 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t1E5C78F2324B0966F93815A21CF15C56A6D1D763_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t1E5C78F2324B0966F93815A21CF15C56A6D1D763_StaticFields, ___Instance_0)); }
inline Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Char>
struct Caster_1_tEED0D769437F89233D231DC79626AC0A6337593C : public RuntimeObject
{
public:
public:
};
struct Caster_1_tEED0D769437F89233D231DC79626AC0A6337593C_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tEED0D769437F89233D231DC79626AC0A6337593C_StaticFields, ___Instance_0)); }
inline Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_t722135795C75F590A8BC1E4CE7DB7DDFFA14314A : public RuntimeObject
{
public:
public:
};
struct Caster_1_t722135795C75F590A8BC1E4CE7DB7DDFFA14314A_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t722135795C75F590A8BC1E4CE7DB7DDFFA14314A_StaticFields, ___Instance_0)); }
inline Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.DateTime>
struct Caster_1_t3F3455CCFC9311D353A7D8C4A42200408CA558BC : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3F3455CCFC9311D353A7D8C4A42200408CA558BC_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3F3455CCFC9311D353A7D8C4A42200408CA558BC_StaticFields, ___Instance_0)); }
inline Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.DateTimeOffset>
struct Caster_1_t2EE1EC204134DA58566A851DFA40A0B880948A86 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t2EE1EC204134DA58566A851DFA40A0B880948A86_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t2EE1EC204134DA58566A851DFA40A0B880948A86_StaticFields, ___Instance_0)); }
inline Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Decimal>
struct Caster_1_t0BBCE2A7CB1298EE3E1F92A4EE98EE1FEA34EC7F : public RuntimeObject
{
public:
public:
};
struct Caster_1_t0BBCE2A7CB1298EE3E1F92A4EE98EE1FEA34EC7F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t0BBCE2A7CB1298EE3E1F92A4EE98EE1FEA34EC7F_StaticFields, ___Instance_0)); }
inline Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_tEB26AB756A5FFD5D46CEFADFD4354B569FE79E35 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tEB26AB756A5FFD5D46CEFADFD4354B569FE79E35_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tEB26AB756A5FFD5D46CEFADFD4354B569FE79E35_StaticFields, ___Instance_0)); }
inline Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Double>
struct Caster_1_t4EF5B9F285768775D3C068FAF5475BD3A7560098 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t4EF5B9F285768775D3C068FAF5475BD3A7560098_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t4EF5B9F285768775D3C068FAF5475BD3A7560098_StaticFields, ___Instance_0)); }
inline Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Guid>
struct Caster_1_t82D455B6810AAD5E0FB1B33CBEAE2D7F6B1215C1 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t82D455B6810AAD5E0FB1B33CBEAE2D7F6B1215C1_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t82D455B6810AAD5E0FB1B33CBEAE2D7F6B1215C1_StaticFields, ___Instance_0)); }
inline Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Int16>
struct Caster_1_tFBB6815F7209EA2669845E4F5390708755B6A996 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFBB6815F7209EA2669845E4F5390708755B6A996_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFBB6815F7209EA2669845E4F5390708755B6A996_StaticFields, ___Instance_0)); }
inline Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Int32>
struct Caster_1_t79F9BB0534172847D8A8840D22FEA3ACBF6E2E30 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t79F9BB0534172847D8A8840D22FEA3ACBF6E2E30_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t79F9BB0534172847D8A8840D22FEA3ACBF6E2E30_StaticFields, ___Instance_0)); }
inline Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Int64>
struct Caster_1_t2E73FCE9B801A6C9D2357B69DB15EE7FF8CCDBD8 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t2E73FCE9B801A6C9D2357B69DB15EE7FF8CCDBD8_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t2E73FCE9B801A6C9D2357B69DB15EE7FF8CCDBD8_StaticFields, ___Instance_0)); }
inline Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.IntPtr>
struct Caster_1_t7428F42D13DDC0C1A066BD1EE9BC521E66BA5BC1 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7428F42D13DDC0C1A066BD1EE9BC521E66BA5BC1_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7428F42D13DDC0C1A066BD1EE9BC521E66BA5BC1_StaticFields, ___Instance_0)); }
inline Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Object>
struct Caster_1_tB69CF02AAB845E9B3DDB7E61DDA09AE13B6C05C2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB69CF02AAB845E9B3DDB7E61DDA09AE13B6C05C2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB69CF02AAB845E9B3DDB7E61DDA09AE13B6C05C2_StaticFields, ___Instance_0)); }
inline Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.SByte>
struct Caster_1_t5B781D2583194FDAD58A1DEB85D1364FB241544E : public RuntimeObject
{
public:
public:
};
struct Caster_1_t5B781D2583194FDAD58A1DEB85D1364FB241544E_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t5B781D2583194FDAD58A1DEB85D1364FB241544E_StaticFields, ___Instance_0)); }
inline Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Single>
struct Caster_1_tFB47F8B972002AEAC72800811486FA13E467A8BF : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFB47F8B972002AEAC72800811486FA13E467A8BF_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFB47F8B972002AEAC72800811486FA13E467A8BF_StaticFields, ___Instance_0)); }
inline Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.TimeSpan>
struct Caster_1_tC8767D376B189ACD381153C9C173514211A0FE0F : public RuntimeObject
{
public:
public:
};
struct Caster_1_tC8767D376B189ACD381153C9C173514211A0FE0F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tC8767D376B189ACD381153C9C173514211A0FE0F_StaticFields, ___Instance_0)); }
inline Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.UInt16>
struct Caster_1_t42992A2C9D038623500C211031C77C7208D43273 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t42992A2C9D038623500C211031C77C7208D43273_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t42992A2C9D038623500C211031C77C7208D43273_StaticFields, ___Instance_0)); }
inline Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.UInt32>
struct Caster_1_t87A4B6548293C1368DDFCB40BA06CF49106148F9 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t87A4B6548293C1368DDFCB40BA06CF49106148F9_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t87A4B6548293C1368DDFCB40BA06CF49106148F9_StaticFields, ___Instance_0)); }
inline Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.UInt64>
struct Caster_1_tFD458BDD72B070794987225E3DB7C380E3CC37D2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFD458BDD72B070794987225E3DB7C380E3CC37D2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFD458BDD72B070794987225E3DB7C380E3CC37D2_StaticFields, ___Instance_0)); }
inline Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.UIntPtr>
struct Caster_1_t941B28C129B116297C114C4519CDE8190AB5C2D9 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t941B28C129B116297C114C4519CDE8190AB5C2D9_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t941B28C129B116297C114C4519CDE8190AB5C2D9_StaticFields, ___Instance_0)); }
inline Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Boolean>
struct Caster_1_tD2A776BD441B8E1E656DBDBEA29CE09F6370B01D : public RuntimeObject
{
public:
public:
};
struct Caster_1_tD2A776BD441B8E1E656DBDBEA29CE09F6370B01D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tD2A776BD441B8E1E656DBDBEA29CE09F6370B01D_StaticFields, ___Instance_0)); }
inline Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Byte>
struct Caster_1_t482CB7C00B7672BE86AB37B58803EDDA5253C159 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t482CB7C00B7672BE86AB37B58803EDDA5253C159_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t482CB7C00B7672BE86AB37B58803EDDA5253C159_StaticFields, ___Instance_0)); }
inline Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Char>
struct Caster_1_tC3C7676E4988AB84AD5D483DF6D6D51F652B8EAA : public RuntimeObject
{
public:
public:
};
struct Caster_1_tC3C7676E4988AB84AD5D483DF6D6D51F652B8EAA_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tC3C7676E4988AB84AD5D483DF6D6D51F652B8EAA_StaticFields, ___Instance_0)); }
inline Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_tAEB42C1C02AED929BC1BEC04D98C0DF0C1BEFFC8 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tAEB42C1C02AED929BC1BEC04D98C0DF0C1BEFFC8_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tAEB42C1C02AED929BC1BEC04D98C0DF0C1BEFFC8_StaticFields, ___Instance_0)); }
inline Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.DateTime>
struct Caster_1_tCDE1BC83F41D1B9514A301F4F689ECD00B852E4B : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCDE1BC83F41D1B9514A301F4F689ECD00B852E4B_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCDE1BC83F41D1B9514A301F4F689ECD00B852E4B_StaticFields, ___Instance_0)); }
inline Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.DateTimeOffset>
struct Caster_1_t648D614B6DE9FA1B879A571830C1B8BC23894BC0 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t648D614B6DE9FA1B879A571830C1B8BC23894BC0_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t648D614B6DE9FA1B879A571830C1B8BC23894BC0_StaticFields, ___Instance_0)); }
inline Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Decimal>
struct Caster_1_t4F5F7A38C557F7B9436C5C1F5FF63A6B645F482C : public RuntimeObject
{
public:
public:
};
struct Caster_1_t4F5F7A38C557F7B9436C5C1F5FF63A6B645F482C_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t4F5F7A38C557F7B9436C5C1F5FF63A6B645F482C_StaticFields, ___Instance_0)); }
inline Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_t816F760E4CB91E8ED4749C51E1906DAA5FBFCBDD : public RuntimeObject
{
public:
public:
};
struct Caster_1_t816F760E4CB91E8ED4749C51E1906DAA5FBFCBDD_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t816F760E4CB91E8ED4749C51E1906DAA5FBFCBDD_StaticFields, ___Instance_0)); }
inline Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Double>
struct Caster_1_tCA85C27159D944B0FA3E9E3AF4E43F1301C0856A : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCA85C27159D944B0FA3E9E3AF4E43F1301C0856A_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCA85C27159D944B0FA3E9E3AF4E43F1301C0856A_StaticFields, ___Instance_0)); }
inline Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Guid>
struct Caster_1_t32E967508060A04E0F6F4A5A9E516B2751446098 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t32E967508060A04E0F6F4A5A9E516B2751446098_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t32E967508060A04E0F6F4A5A9E516B2751446098_StaticFields, ___Instance_0)); }
inline Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Int16>
struct Caster_1_tF3538AE7B545B5E66C20C4C751A1EAEE76E82FEF : public RuntimeObject
{
public:
public:
};
struct Caster_1_tF3538AE7B545B5E66C20C4C751A1EAEE76E82FEF_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tF3538AE7B545B5E66C20C4C751A1EAEE76E82FEF_StaticFields, ___Instance_0)); }
inline Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Int32>
struct Caster_1_t053E7CA3C6B09080F453D7B9ADCED0B07B7355B2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t053E7CA3C6B09080F453D7B9ADCED0B07B7355B2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t053E7CA3C6B09080F453D7B9ADCED0B07B7355B2_StaticFields, ___Instance_0)); }
inline Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Int64>
struct Caster_1_t3DD97367B1E8C9F032197273CF90E5919C74B518 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3DD97367B1E8C9F032197273CF90E5919C74B518_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3DD97367B1E8C9F032197273CF90E5919C74B518_StaticFields, ___Instance_0)); }
inline Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.IntPtr>
struct Caster_1_t3E5340F9C3D63DE7B3280B37BCD14B25362CC87E : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3E5340F9C3D63DE7B3280B37BCD14B25362CC87E_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3E5340F9C3D63DE7B3280B37BCD14B25362CC87E_StaticFields, ___Instance_0)); }
inline Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Object>
struct Caster_1_t1C8C6FEDED1BBCC86BF7F183BAAA65A65E37F6B9 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t1C8C6FEDED1BBCC86BF7F183BAAA65A65E37F6B9_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t1C8C6FEDED1BBCC86BF7F183BAAA65A65E37F6B9_StaticFields, ___Instance_0)); }
inline Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.SByte>
struct Caster_1_t261B67D54DDBEE2E45C594357E6132EBCFC20C43 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t261B67D54DDBEE2E45C594357E6132EBCFC20C43_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t261B67D54DDBEE2E45C594357E6132EBCFC20C43_StaticFields, ___Instance_0)); }
inline Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Single>
struct Caster_1_t758D846F58655E22B936DD8A2DB64283EA3805A2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t758D846F58655E22B936DD8A2DB64283EA3805A2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t758D846F58655E22B936DD8A2DB64283EA3805A2_StaticFields, ___Instance_0)); }
inline Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.TimeSpan>
struct Caster_1_t01551B272EDA007DB4640BBDA9745FCD8150E90F : public RuntimeObject
{
public:
public:
};
struct Caster_1_t01551B272EDA007DB4640BBDA9745FCD8150E90F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t01551B272EDA007DB4640BBDA9745FCD8150E90F_StaticFields, ___Instance_0)); }
inline Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.UInt16>
struct Caster_1_t927662BF5FDD93421514AD6DFF5810834FC65437 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t927662BF5FDD93421514AD6DFF5810834FC65437_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t927662BF5FDD93421514AD6DFF5810834FC65437_StaticFields, ___Instance_0)); }
inline Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.UInt32>
struct Caster_1_t4FBD60419DE1522A1D8D6D26E18CCE6C5CBE862C : public RuntimeObject
{
public:
public:
};
struct Caster_1_t4FBD60419DE1522A1D8D6D26E18CCE6C5CBE862C_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t4FBD60419DE1522A1D8D6D26E18CCE6C5CBE862C_StaticFields, ___Instance_0)); }
inline Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.UInt64>
struct Caster_1_tCD382BFE18B540FD55BB3D1DE0739E2718F2B9F7 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCD382BFE18B540FD55BB3D1DE0739E2718F2B9F7_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCD382BFE18B540FD55BB3D1DE0739E2718F2B9F7_StaticFields, ___Instance_0)); }
inline Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.UIntPtr>
struct Caster_1_tE9665C2AD78EA0AECF9AA50DC59E256EA789B56B : public RuntimeObject
{
public:
public:
};
struct Caster_1_tE9665C2AD78EA0AECF9AA50DC59E256EA789B56B_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tE9665C2AD78EA0AECF9AA50DC59E256EA789B56B_StaticFields, ___Instance_0)); }
inline Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.Byte>
struct EnumHelper_1_tCD9C6B46C79CF3B8A9228DF132E8EB369F254C82 : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_tCD9C6B46C79CF3B8A9228DF132E8EB369F254C82_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_tCD9C6B46C79CF3B8A9228DF132E8EB369F254C82_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.Int16>
struct EnumHelper_1_t70C30A1B36497D83A015022E6BB524A187CFAFC7 : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_t70C30A1B36497D83A015022E6BB524A187CFAFC7_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_t70C30A1B36497D83A015022E6BB524A187CFAFC7_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.Int32>
struct EnumHelper_1_t26411DBF6873AF1883D85665AA592CC54B8015EB : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_t26411DBF6873AF1883D85665AA592CC54B8015EB_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_t26411DBF6873AF1883D85665AA592CC54B8015EB_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.Int64>
struct EnumHelper_1_t7766047F041B50F63B0724CEB9FC3DF493563942 : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_t7766047F041B50F63B0724CEB9FC3DF493563942_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_t7766047F041B50F63B0724CEB9FC3DF493563942_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.Object>
struct EnumHelper_1_t13741AF87195F19C45AE0A8104DE3A894D9E78AD : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_t13741AF87195F19C45AE0A8104DE3A894D9E78AD_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_t13741AF87195F19C45AE0A8104DE3A894D9E78AD_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.SByte>
struct EnumHelper_1_tB725A0B0F692F58B04B5C2851987ED5557FFF3E2 : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_tB725A0B0F692F58B04B5C2851987ED5557FFF3E2_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_tB725A0B0F692F58B04B5C2851987ED5557FFF3E2_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>
struct EnumHelper_1_t6CA08F864466AB0FE3C91BD7A9E544E9EDE03759 : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_t6CA08F864466AB0FE3C91BD7A9E544E9EDE03759_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_t6CA08F864466AB0FE3C91BD7A9E544E9EDE03759_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>
struct EnumHelper_1_tB3516ACE0911526FDCCECA27C61B425D83C7F471 : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_tB3516ACE0911526FDCCECA27C61B425D83C7F471_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_tB3516ACE0911526FDCCECA27C61B425D83C7F471_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>
struct EnumHelper_1_t1606E7976B4575AE013F57502CAB2A7F55672EB5 : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_t1606E7976B4575AE013F57502CAB2A7F55672EB5_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_t1606E7976B4575AE013F57502CAB2A7F55672EB5_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.EmptyArray`1<System.Char>
struct EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields, ___Value_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_Value_0() const { return ___Value_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>
struct EmptyArray_1_t2F6E359A64FCAE440B259B477121A341730D73D3 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t2F6E359A64FCAE440B259B477121A341730D73D3_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t2F6E359A64FCAE440B259B477121A341730D73D3_StaticFields, ___Value_0)); }
inline KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* get_Value_0() const { return ___Value_0; }
inline KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>
struct EmptyArray_1_tA835F9169F98551C5189EB04F9D45B0E331E6B98 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_tA835F9169F98551C5189EB04F9D45B0E331E6B98_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tA835F9169F98551C5189EB04F9D45B0E331E6B98_StaticFields, ___Value_0)); }
inline KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* get_Value_0() const { return ___Value_0; }
inline KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct EmptyArray_1_t11B3969D38E2BF74B97BD01F02D6E2583FAA1D8F : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t11B3969D38E2BF74B97BD01F02D6E2583FAA1D8F_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t11B3969D38E2BF74B97BD01F02D6E2583FAA1D8F_StaticFields, ___Value_0)); }
inline KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* get_Value_0() const { return ___Value_0; }
inline KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Object>
struct EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields, ___Value_0)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_Value_0() const { return ___Value_0; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<UnityEngine.Networking.ChannelPacket>
struct EmptyArray_1_t165B5C598FC8FD3BE53DB6F40BD61821CD2CDEBB : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t165B5C598FC8FD3BE53DB6F40BD61821CD2CDEBB_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
ChannelPacketU5BU5D_t4F30D435CDD109EFAC04DDAA14FFCA6EC3FD3C68* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t165B5C598FC8FD3BE53DB6F40BD61821CD2CDEBB_StaticFields, ___Value_0)); }
inline ChannelPacketU5BU5D_t4F30D435CDD109EFAC04DDAA14FFCA6EC3FD3C68* get_Value_0() const { return ___Value_0; }
inline ChannelPacketU5BU5D_t4F30D435CDD109EFAC04DDAA14FFCA6EC3FD3C68** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(ChannelPacketU5BU5D_t4F30D435CDD109EFAC04DDAA14FFCA6EC3FD3C68* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<UnityEngine.Networking.LocalClient_InternalMsg>
struct EmptyArray_1_tC97ACD4D9D5808AE2F19E11EFE6DFF24D128FADE : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_tC97ACD4D9D5808AE2F19E11EFE6DFF24D128FADE_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
InternalMsgU5BU5D_t9FE1EB9BD31AEA326D79AC2749B4D89621EB99B6* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tC97ACD4D9D5808AE2F19E11EFE6DFF24D128FADE_StaticFields, ___Value_0)); }
inline InternalMsgU5BU5D_t9FE1EB9BD31AEA326D79AC2749B4D89621EB99B6* get_Value_0() const { return ___Value_0; }
inline InternalMsgU5BU5D_t9FE1EB9BD31AEA326D79AC2749B4D89621EB99B6** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(InternalMsgU5BU5D_t9FE1EB9BD31AEA326D79AC2749B4D89621EB99B6* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Linq.Enumerable
struct Enumerable_tECC271C86C6E8F72E4E27C7C8FD5DB7B63D5D737 : public RuntimeObject
{
public:
public:
};
// System.Reflection.CustomAttributeData
struct CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 : public RuntimeObject
{
public:
// System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::ctorInfo
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ___ctorInfo_0;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument> System.Reflection.CustomAttributeData::ctorArgs
RuntimeObject* ___ctorArgs_1;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument> System.Reflection.CustomAttributeData::namedArgs
RuntimeObject* ___namedArgs_2;
// System.Reflection.CustomAttributeData_LazyCAttrData System.Reflection.CustomAttributeData::lazyData
LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 * ___lazyData_3;
public:
inline static int32_t get_offset_of_ctorInfo_0() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___ctorInfo_0)); }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * get_ctorInfo_0() const { return ___ctorInfo_0; }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF ** get_address_of_ctorInfo_0() { return &___ctorInfo_0; }
inline void set_ctorInfo_0(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * value)
{
___ctorInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ctorInfo_0), (void*)value);
}
inline static int32_t get_offset_of_ctorArgs_1() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___ctorArgs_1)); }
inline RuntimeObject* get_ctorArgs_1() const { return ___ctorArgs_1; }
inline RuntimeObject** get_address_of_ctorArgs_1() { return &___ctorArgs_1; }
inline void set_ctorArgs_1(RuntimeObject* value)
{
___ctorArgs_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ctorArgs_1), (void*)value);
}
inline static int32_t get_offset_of_namedArgs_2() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___namedArgs_2)); }
inline RuntimeObject* get_namedArgs_2() const { return ___namedArgs_2; }
inline RuntimeObject** get_address_of_namedArgs_2() { return &___namedArgs_2; }
inline void set_namedArgs_2(RuntimeObject* value)
{
___namedArgs_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___namedArgs_2), (void*)value);
}
inline static int32_t get_offset_of_lazyData_3() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___lazyData_3)); }
inline LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 * get_lazyData_3() const { return ___lazyData_3; }
inline LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 ** get_address_of_lazyData_3() { return &___lazyData_3; }
inline void set_lazyData_3(LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 * value)
{
___lazyData_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lazyData_3), (void*)value);
}
};
// System.Reflection.CustomAttributeExtensions
struct CustomAttributeExtensions_t46E823943384E2B9D2E7A6A492117E1A2331F5D3 : public RuntimeObject
{
public:
public:
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.Runtime.CompilerServices.JitHelpers
struct JitHelpers_t6BCD6CAFCA9C54EDD15CC80B7D7416E8711E8AAB : 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.Threading.Interlocked
struct Interlocked_tFC2D55B9E6E624D5151A9DC89A50567677F7F433 : public RuntimeObject
{
public:
public:
};
// System.Threading.LazyInitializer
struct LazyInitializer_tFC4C124B28D8DA023D36F3298FC7EA95653CB8A7 : public RuntimeObject
{
public:
public:
};
// System.Threading.Volatile
struct Volatile_tE96815F4BB2ADA7D8E4005AD52AC020C22856632 : public RuntimeObject
{
public:
public:
};
// 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
{
};
// Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility
struct NativeArrayUnsafeUtility_t2B01CE90013CE5874AC6E98925C55FA6C1F5F4BA : public RuntimeObject
{
public:
public:
};
// Unity.Collections.LowLevel.Unsafe.UnsafeUtility
struct UnsafeUtility_t78D5F2C60E6994F1B44020D1B4368BB8DD559AA8 : public RuntimeObject
{
public:
public:
};
// UnityEngine.AttributeHelperEngine
struct AttributeHelperEngine_t22E0A0A6E68E2DFAFB28B91CC8AFCE4630723601 : public RuntimeObject
{
public:
public:
};
struct AttributeHelperEngine_t22E0A0A6E68E2DFAFB28B91CC8AFCE4630723601_StaticFields
{
public:
// UnityEngine.DisallowMultipleComponent[] UnityEngine.AttributeHelperEngine::_disallowMultipleComponentArray
DisallowMultipleComponentU5BU5D_t59E317D853AAC982D5D18D4C1581422FC151F7E3* ____disallowMultipleComponentArray_0;
// UnityEngine.ExecuteInEditMode[] UnityEngine.AttributeHelperEngine::_executeInEditModeArray
ExecuteInEditModeU5BU5D_tAE8DA030BEBA505907556F161EB49FD565976C80* ____executeInEditModeArray_1;
// UnityEngine.RequireComponent[] UnityEngine.AttributeHelperEngine::_requireComponentArray
RequireComponentU5BU5D_t4295259AA991FCAA75878E4731813266CFC5351D* ____requireComponentArray_2;
public:
inline static int32_t get_offset_of__disallowMultipleComponentArray_0() { return static_cast<int32_t>(offsetof(AttributeHelperEngine_t22E0A0A6E68E2DFAFB28B91CC8AFCE4630723601_StaticFields, ____disallowMultipleComponentArray_0)); }
inline DisallowMultipleComponentU5BU5D_t59E317D853AAC982D5D18D4C1581422FC151F7E3* get__disallowMultipleComponentArray_0() const { return ____disallowMultipleComponentArray_0; }
inline DisallowMultipleComponentU5BU5D_t59E317D853AAC982D5D18D4C1581422FC151F7E3** get_address_of__disallowMultipleComponentArray_0() { return &____disallowMultipleComponentArray_0; }
inline void set__disallowMultipleComponentArray_0(DisallowMultipleComponentU5BU5D_t59E317D853AAC982D5D18D4C1581422FC151F7E3* value)
{
____disallowMultipleComponentArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____disallowMultipleComponentArray_0), (void*)value);
}
inline static int32_t get_offset_of__executeInEditModeArray_1() { return static_cast<int32_t>(offsetof(AttributeHelperEngine_t22E0A0A6E68E2DFAFB28B91CC8AFCE4630723601_StaticFields, ____executeInEditModeArray_1)); }
inline ExecuteInEditModeU5BU5D_tAE8DA030BEBA505907556F161EB49FD565976C80* get__executeInEditModeArray_1() const { return ____executeInEditModeArray_1; }
inline ExecuteInEditModeU5BU5D_tAE8DA030BEBA505907556F161EB49FD565976C80** get_address_of__executeInEditModeArray_1() { return &____executeInEditModeArray_1; }
inline void set__executeInEditModeArray_1(ExecuteInEditModeU5BU5D_tAE8DA030BEBA505907556F161EB49FD565976C80* value)
{
____executeInEditModeArray_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____executeInEditModeArray_1), (void*)value);
}
inline static int32_t get_offset_of__requireComponentArray_2() { return static_cast<int32_t>(offsetof(AttributeHelperEngine_t22E0A0A6E68E2DFAFB28B91CC8AFCE4630723601_StaticFields, ____requireComponentArray_2)); }
inline RequireComponentU5BU5D_t4295259AA991FCAA75878E4731813266CFC5351D* get__requireComponentArray_2() const { return ____requireComponentArray_2; }
inline RequireComponentU5BU5D_t4295259AA991FCAA75878E4731813266CFC5351D** get_address_of__requireComponentArray_2() { return &____requireComponentArray_2; }
inline void set__requireComponentArray_2(RequireComponentU5BU5D_t4295259AA991FCAA75878E4731813266CFC5351D* value)
{
____requireComponentArray_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____requireComponentArray_2), (void*)value);
}
};
// UnityEngine.EventSystems.AbstractEventData
struct AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.EventSystems.AbstractEventData::m_Used
bool ___m_Used_0;
public:
inline static int32_t get_offset_of_m_Used_0() { return static_cast<int32_t>(offsetof(AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6, ___m_Used_0)); }
inline bool get_m_Used_0() const { return ___m_Used_0; }
inline bool* get_address_of_m_Used_0() { return &___m_Used_0; }
inline void set_m_Used_0(bool value)
{
___m_Used_0 = value;
}
};
// UnityEngine.EventSystems.ExecuteEvents
struct ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985 : public RuntimeObject
{
public:
public:
};
struct ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields
{
public:
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerEnterHandler
EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * ___s_PointerEnterHandler_0;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerExitHandler
EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * ___s_PointerExitHandler_1;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerDownHandler
EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * ___s_PointerDownHandler_2;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerUpHandler
EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * ___s_PointerUpHandler_3;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerClickHandler
EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * ___s_PointerClickHandler_4;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_InitializePotentialDragHandler
EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * ___s_InitializePotentialDragHandler_5;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_BeginDragHandler
EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * ___s_BeginDragHandler_6;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_DragHandler
EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * ___s_DragHandler_7;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IEndDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_EndDragHandler
EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * ___s_EndDragHandler_8;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IDropHandler> UnityEngine.EventSystems.ExecuteEvents::s_DropHandler
EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * ___s_DropHandler_9;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IScrollHandler> UnityEngine.EventSystems.ExecuteEvents::s_ScrollHandler
EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * ___s_ScrollHandler_10;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler> UnityEngine.EventSystems.ExecuteEvents::s_UpdateSelectedHandler
EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * ___s_UpdateSelectedHandler_11;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.ISelectHandler> UnityEngine.EventSystems.ExecuteEvents::s_SelectHandler
EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * ___s_SelectHandler_12;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IDeselectHandler> UnityEngine.EventSystems.ExecuteEvents::s_DeselectHandler
EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * ___s_DeselectHandler_13;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IMoveHandler> UnityEngine.EventSystems.ExecuteEvents::s_MoveHandler
EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * ___s_MoveHandler_14;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.ISubmitHandler> UnityEngine.EventSystems.ExecuteEvents::s_SubmitHandler
EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * ___s_SubmitHandler_15;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.ICancelHandler> UnityEngine.EventSystems.ExecuteEvents::s_CancelHandler
EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * ___s_CancelHandler_16;
// UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>> UnityEngine.EventSystems.ExecuteEvents::s_HandlerListPool
ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC * ___s_HandlerListPool_17;
// System.Collections.Generic.List`1<UnityEngine.Transform> UnityEngine.EventSystems.ExecuteEvents::s_InternalTransformList
List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * ___s_InternalTransformList_18;
public:
inline static int32_t get_offset_of_s_PointerEnterHandler_0() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_PointerEnterHandler_0)); }
inline EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * get_s_PointerEnterHandler_0() const { return ___s_PointerEnterHandler_0; }
inline EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 ** get_address_of_s_PointerEnterHandler_0() { return &___s_PointerEnterHandler_0; }
inline void set_s_PointerEnterHandler_0(EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * value)
{
___s_PointerEnterHandler_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PointerEnterHandler_0), (void*)value);
}
inline static int32_t get_offset_of_s_PointerExitHandler_1() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_PointerExitHandler_1)); }
inline EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * get_s_PointerExitHandler_1() const { return ___s_PointerExitHandler_1; }
inline EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA ** get_address_of_s_PointerExitHandler_1() { return &___s_PointerExitHandler_1; }
inline void set_s_PointerExitHandler_1(EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * value)
{
___s_PointerExitHandler_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PointerExitHandler_1), (void*)value);
}
inline static int32_t get_offset_of_s_PointerDownHandler_2() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_PointerDownHandler_2)); }
inline EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * get_s_PointerDownHandler_2() const { return ___s_PointerDownHandler_2; }
inline EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E ** get_address_of_s_PointerDownHandler_2() { return &___s_PointerDownHandler_2; }
inline void set_s_PointerDownHandler_2(EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * value)
{
___s_PointerDownHandler_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PointerDownHandler_2), (void*)value);
}
inline static int32_t get_offset_of_s_PointerUpHandler_3() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_PointerUpHandler_3)); }
inline EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * get_s_PointerUpHandler_3() const { return ___s_PointerUpHandler_3; }
inline EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 ** get_address_of_s_PointerUpHandler_3() { return &___s_PointerUpHandler_3; }
inline void set_s_PointerUpHandler_3(EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * value)
{
___s_PointerUpHandler_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PointerUpHandler_3), (void*)value);
}
inline static int32_t get_offset_of_s_PointerClickHandler_4() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_PointerClickHandler_4)); }
inline EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * get_s_PointerClickHandler_4() const { return ___s_PointerClickHandler_4; }
inline EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E ** get_address_of_s_PointerClickHandler_4() { return &___s_PointerClickHandler_4; }
inline void set_s_PointerClickHandler_4(EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * value)
{
___s_PointerClickHandler_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PointerClickHandler_4), (void*)value);
}
inline static int32_t get_offset_of_s_InitializePotentialDragHandler_5() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_InitializePotentialDragHandler_5)); }
inline EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * get_s_InitializePotentialDragHandler_5() const { return ___s_InitializePotentialDragHandler_5; }
inline EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 ** get_address_of_s_InitializePotentialDragHandler_5() { return &___s_InitializePotentialDragHandler_5; }
inline void set_s_InitializePotentialDragHandler_5(EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * value)
{
___s_InitializePotentialDragHandler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InitializePotentialDragHandler_5), (void*)value);
}
inline static int32_t get_offset_of_s_BeginDragHandler_6() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_BeginDragHandler_6)); }
inline EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * get_s_BeginDragHandler_6() const { return ___s_BeginDragHandler_6; }
inline EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 ** get_address_of_s_BeginDragHandler_6() { return &___s_BeginDragHandler_6; }
inline void set_s_BeginDragHandler_6(EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * value)
{
___s_BeginDragHandler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_BeginDragHandler_6), (void*)value);
}
inline static int32_t get_offset_of_s_DragHandler_7() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_DragHandler_7)); }
inline EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * get_s_DragHandler_7() const { return ___s_DragHandler_7; }
inline EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 ** get_address_of_s_DragHandler_7() { return &___s_DragHandler_7; }
inline void set_s_DragHandler_7(EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * value)
{
___s_DragHandler_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DragHandler_7), (void*)value);
}
inline static int32_t get_offset_of_s_EndDragHandler_8() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_EndDragHandler_8)); }
inline EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * get_s_EndDragHandler_8() const { return ___s_EndDragHandler_8; }
inline EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 ** get_address_of_s_EndDragHandler_8() { return &___s_EndDragHandler_8; }
inline void set_s_EndDragHandler_8(EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * value)
{
___s_EndDragHandler_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EndDragHandler_8), (void*)value);
}
inline static int32_t get_offset_of_s_DropHandler_9() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_DropHandler_9)); }
inline EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * get_s_DropHandler_9() const { return ___s_DropHandler_9; }
inline EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 ** get_address_of_s_DropHandler_9() { return &___s_DropHandler_9; }
inline void set_s_DropHandler_9(EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * value)
{
___s_DropHandler_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DropHandler_9), (void*)value);
}
inline static int32_t get_offset_of_s_ScrollHandler_10() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_ScrollHandler_10)); }
inline EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * get_s_ScrollHandler_10() const { return ___s_ScrollHandler_10; }
inline EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A ** get_address_of_s_ScrollHandler_10() { return &___s_ScrollHandler_10; }
inline void set_s_ScrollHandler_10(EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * value)
{
___s_ScrollHandler_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ScrollHandler_10), (void*)value);
}
inline static int32_t get_offset_of_s_UpdateSelectedHandler_11() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_UpdateSelectedHandler_11)); }
inline EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * get_s_UpdateSelectedHandler_11() const { return ___s_UpdateSelectedHandler_11; }
inline EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 ** get_address_of_s_UpdateSelectedHandler_11() { return &___s_UpdateSelectedHandler_11; }
inline void set_s_UpdateSelectedHandler_11(EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * value)
{
___s_UpdateSelectedHandler_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_UpdateSelectedHandler_11), (void*)value);
}
inline static int32_t get_offset_of_s_SelectHandler_12() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_SelectHandler_12)); }
inline EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * get_s_SelectHandler_12() const { return ___s_SelectHandler_12; }
inline EventFunction_1_t7521247C87411935E8A2CA38683533083459473F ** get_address_of_s_SelectHandler_12() { return &___s_SelectHandler_12; }
inline void set_s_SelectHandler_12(EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * value)
{
___s_SelectHandler_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_SelectHandler_12), (void*)value);
}
inline static int32_t get_offset_of_s_DeselectHandler_13() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_DeselectHandler_13)); }
inline EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * get_s_DeselectHandler_13() const { return ___s_DeselectHandler_13; }
inline EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 ** get_address_of_s_DeselectHandler_13() { return &___s_DeselectHandler_13; }
inline void set_s_DeselectHandler_13(EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * value)
{
___s_DeselectHandler_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DeselectHandler_13), (void*)value);
}
inline static int32_t get_offset_of_s_MoveHandler_14() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_MoveHandler_14)); }
inline EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * get_s_MoveHandler_14() const { return ___s_MoveHandler_14; }
inline EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB ** get_address_of_s_MoveHandler_14() { return &___s_MoveHandler_14; }
inline void set_s_MoveHandler_14(EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * value)
{
___s_MoveHandler_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_MoveHandler_14), (void*)value);
}
inline static int32_t get_offset_of_s_SubmitHandler_15() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_SubmitHandler_15)); }
inline EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * get_s_SubmitHandler_15() const { return ___s_SubmitHandler_15; }
inline EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B ** get_address_of_s_SubmitHandler_15() { return &___s_SubmitHandler_15; }
inline void set_s_SubmitHandler_15(EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * value)
{
___s_SubmitHandler_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_SubmitHandler_15), (void*)value);
}
inline static int32_t get_offset_of_s_CancelHandler_16() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_CancelHandler_16)); }
inline EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * get_s_CancelHandler_16() const { return ___s_CancelHandler_16; }
inline EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 ** get_address_of_s_CancelHandler_16() { return &___s_CancelHandler_16; }
inline void set_s_CancelHandler_16(EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * value)
{
___s_CancelHandler_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_CancelHandler_16), (void*)value);
}
inline static int32_t get_offset_of_s_HandlerListPool_17() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_HandlerListPool_17)); }
inline ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC * get_s_HandlerListPool_17() const { return ___s_HandlerListPool_17; }
inline ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC ** get_address_of_s_HandlerListPool_17() { return &___s_HandlerListPool_17; }
inline void set_s_HandlerListPool_17(ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC * value)
{
___s_HandlerListPool_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_HandlerListPool_17), (void*)value);
}
inline static int32_t get_offset_of_s_InternalTransformList_18() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_InternalTransformList_18)); }
inline List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * get_s_InternalTransformList_18() const { return ___s_InternalTransformList_18; }
inline List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE ** get_address_of_s_InternalTransformList_18() { return &___s_InternalTransformList_18; }
inline void set_s_InternalTransformList_18(List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * value)
{
___s_InternalTransformList_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InternalTransformList_18), (void*)value);
}
};
// UnityEngine.Networking.MessageBase
struct MessageBase_t2EA42B01AD6A5F36EAF84BE623801951B9F55416 : public RuntimeObject
{
public:
public:
};
// UnityEngine.Networking.NetworkMessage
struct NetworkMessage_tCD66E2AE395A185EFE622EBB5497C95F6754685C : public RuntimeObject
{
public:
// System.Int16 UnityEngine.Networking.NetworkMessage::msgType
int16_t ___msgType_1;
// UnityEngine.Networking.NetworkConnection UnityEngine.Networking.NetworkMessage::conn
NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * ___conn_2;
// UnityEngine.Networking.NetworkReader UnityEngine.Networking.NetworkMessage::reader
NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 * ___reader_3;
// System.Int32 UnityEngine.Networking.NetworkMessage::channelId
int32_t ___channelId_4;
public:
inline static int32_t get_offset_of_msgType_1() { return static_cast<int32_t>(offsetof(NetworkMessage_tCD66E2AE395A185EFE622EBB5497C95F6754685C, ___msgType_1)); }
inline int16_t get_msgType_1() const { return ___msgType_1; }
inline int16_t* get_address_of_msgType_1() { return &___msgType_1; }
inline void set_msgType_1(int16_t value)
{
___msgType_1 = value;
}
inline static int32_t get_offset_of_conn_2() { return static_cast<int32_t>(offsetof(NetworkMessage_tCD66E2AE395A185EFE622EBB5497C95F6754685C, ___conn_2)); }
inline NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * get_conn_2() const { return ___conn_2; }
inline NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA ** get_address_of_conn_2() { return &___conn_2; }
inline void set_conn_2(NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * value)
{
___conn_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___conn_2), (void*)value);
}
inline static int32_t get_offset_of_reader_3() { return static_cast<int32_t>(offsetof(NetworkMessage_tCD66E2AE395A185EFE622EBB5497C95F6754685C, ___reader_3)); }
inline NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 * get_reader_3() const { return ___reader_3; }
inline NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 ** get_address_of_reader_3() { return &___reader_3; }
inline void set_reader_3(NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 * value)
{
___reader_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___reader_3), (void*)value);
}
inline static int32_t get_offset_of_channelId_4() { return static_cast<int32_t>(offsetof(NetworkMessage_tCD66E2AE395A185EFE622EBB5497C95F6754685C, ___channelId_4)); }
inline int32_t get_channelId_4() const { return ___channelId_4; }
inline int32_t* get_address_of_channelId_4() { return &___channelId_4; }
inline void set_channelId_4(int32_t value)
{
___channelId_4 = value;
}
};
// UnityEngine.Networking.NetworkReader
struct NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 : public RuntimeObject
{
public:
// UnityEngine.Networking.NetBuffer UnityEngine.Networking.NetworkReader::m_buf
NetBuffer_t2BA43CF3688776F372BECD54D28F90CB0559B36C * ___m_buf_0;
public:
inline static int32_t get_offset_of_m_buf_0() { return static_cast<int32_t>(offsetof(NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12, ___m_buf_0)); }
inline NetBuffer_t2BA43CF3688776F372BECD54D28F90CB0559B36C * get_m_buf_0() const { return ___m_buf_0; }
inline NetBuffer_t2BA43CF3688776F372BECD54D28F90CB0559B36C ** get_address_of_m_buf_0() { return &___m_buf_0; }
inline void set_m_buf_0(NetBuffer_t2BA43CF3688776F372BECD54D28F90CB0559B36C * value)
{
___m_buf_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_buf_0), (void*)value);
}
};
struct NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12_StaticFields
{
public:
// System.Byte[] UnityEngine.Networking.NetworkReader::s_StringReaderBuffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___s_StringReaderBuffer_3;
// System.Text.Encoding UnityEngine.Networking.NetworkReader::s_Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___s_Encoding_4;
public:
inline static int32_t get_offset_of_s_StringReaderBuffer_3() { return static_cast<int32_t>(offsetof(NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12_StaticFields, ___s_StringReaderBuffer_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_s_StringReaderBuffer_3() const { return ___s_StringReaderBuffer_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_s_StringReaderBuffer_3() { return &___s_StringReaderBuffer_3; }
inline void set_s_StringReaderBuffer_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___s_StringReaderBuffer_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_StringReaderBuffer_3), (void*)value);
}
inline static int32_t get_offset_of_s_Encoding_4() { return static_cast<int32_t>(offsetof(NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12_StaticFields, ___s_Encoding_4)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_s_Encoding_4() const { return ___s_Encoding_4; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_s_Encoding_4() { return &___s_Encoding_4; }
inline void set_s_Encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___s_Encoding_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Encoding_4), (void*)value);
}
};
// UnityEngine.Networking.NetworkServer
struct NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.Networking.NetworkServer::m_LocalClientActive
bool ___m_LocalClientActive_4;
// System.Collections.Generic.List`1<UnityEngine.Networking.NetworkConnection> UnityEngine.Networking.NetworkServer::m_LocalConnectionsFakeList
List_1_t7A006745EA41BB1EE354777CCAE13C252BF8240D * ___m_LocalConnectionsFakeList_5;
// UnityEngine.Networking.ULocalConnectionToClient UnityEngine.Networking.NetworkServer::m_LocalConnection
ULocalConnectionToClient_t7AF7EBF2BEC3714F75EF894035BFAE9E6F9561A8 * ___m_LocalConnection_6;
// UnityEngine.Networking.NetworkScene UnityEngine.Networking.NetworkServer::m_NetworkScene
NetworkScene_t67A8AC9779C203B146A8723FA561736890CA9A40 * ___m_NetworkScene_7;
// System.Collections.Generic.HashSet`1<System.Int32> UnityEngine.Networking.NetworkServer::m_ExternalConnections
HashSet_1_tD16423F193A61077DD5FE7C8517877716AAFF11E * ___m_ExternalConnections_8;
// UnityEngine.Networking.NetworkServer_ServerSimpleWrapper UnityEngine.Networking.NetworkServer::m_SimpleServerSimple
ServerSimpleWrapper_t1ECF42A66748FA970402440F00E743DB5E2AAA32 * ___m_SimpleServerSimple_9;
// System.Single UnityEngine.Networking.NetworkServer::m_MaxDelay
float ___m_MaxDelay_10;
// System.Collections.Generic.HashSet`1<UnityEngine.Networking.NetworkInstanceId> UnityEngine.Networking.NetworkServer::m_RemoveList
HashSet_1_t04AFB5FB47684F4B89636F9B0A465D7E869FFA50 * ___m_RemoveList_11;
// System.Int32 UnityEngine.Networking.NetworkServer::m_RemoveListCount
int32_t ___m_RemoveListCount_12;
public:
inline static int32_t get_offset_of_m_LocalClientActive_4() { return static_cast<int32_t>(offsetof(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1, ___m_LocalClientActive_4)); }
inline bool get_m_LocalClientActive_4() const { return ___m_LocalClientActive_4; }
inline bool* get_address_of_m_LocalClientActive_4() { return &___m_LocalClientActive_4; }
inline void set_m_LocalClientActive_4(bool value)
{
___m_LocalClientActive_4 = value;
}
inline static int32_t get_offset_of_m_LocalConnectionsFakeList_5() { return static_cast<int32_t>(offsetof(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1, ___m_LocalConnectionsFakeList_5)); }
inline List_1_t7A006745EA41BB1EE354777CCAE13C252BF8240D * get_m_LocalConnectionsFakeList_5() const { return ___m_LocalConnectionsFakeList_5; }
inline List_1_t7A006745EA41BB1EE354777CCAE13C252BF8240D ** get_address_of_m_LocalConnectionsFakeList_5() { return &___m_LocalConnectionsFakeList_5; }
inline void set_m_LocalConnectionsFakeList_5(List_1_t7A006745EA41BB1EE354777CCAE13C252BF8240D * value)
{
___m_LocalConnectionsFakeList_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LocalConnectionsFakeList_5), (void*)value);
}
inline static int32_t get_offset_of_m_LocalConnection_6() { return static_cast<int32_t>(offsetof(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1, ___m_LocalConnection_6)); }
inline ULocalConnectionToClient_t7AF7EBF2BEC3714F75EF894035BFAE9E6F9561A8 * get_m_LocalConnection_6() const { return ___m_LocalConnection_6; }
inline ULocalConnectionToClient_t7AF7EBF2BEC3714F75EF894035BFAE9E6F9561A8 ** get_address_of_m_LocalConnection_6() { return &___m_LocalConnection_6; }
inline void set_m_LocalConnection_6(ULocalConnectionToClient_t7AF7EBF2BEC3714F75EF894035BFAE9E6F9561A8 * value)
{
___m_LocalConnection_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LocalConnection_6), (void*)value);
}
inline static int32_t get_offset_of_m_NetworkScene_7() { return static_cast<int32_t>(offsetof(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1, ___m_NetworkScene_7)); }
inline NetworkScene_t67A8AC9779C203B146A8723FA561736890CA9A40 * get_m_NetworkScene_7() const { return ___m_NetworkScene_7; }
inline NetworkScene_t67A8AC9779C203B146A8723FA561736890CA9A40 ** get_address_of_m_NetworkScene_7() { return &___m_NetworkScene_7; }
inline void set_m_NetworkScene_7(NetworkScene_t67A8AC9779C203B146A8723FA561736890CA9A40 * value)
{
___m_NetworkScene_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_NetworkScene_7), (void*)value);
}
inline static int32_t get_offset_of_m_ExternalConnections_8() { return static_cast<int32_t>(offsetof(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1, ___m_ExternalConnections_8)); }
inline HashSet_1_tD16423F193A61077DD5FE7C8517877716AAFF11E * get_m_ExternalConnections_8() const { return ___m_ExternalConnections_8; }
inline HashSet_1_tD16423F193A61077DD5FE7C8517877716AAFF11E ** get_address_of_m_ExternalConnections_8() { return &___m_ExternalConnections_8; }
inline void set_m_ExternalConnections_8(HashSet_1_tD16423F193A61077DD5FE7C8517877716AAFF11E * value)
{
___m_ExternalConnections_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ExternalConnections_8), (void*)value);
}
inline static int32_t get_offset_of_m_SimpleServerSimple_9() { return static_cast<int32_t>(offsetof(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1, ___m_SimpleServerSimple_9)); }
inline ServerSimpleWrapper_t1ECF42A66748FA970402440F00E743DB5E2AAA32 * get_m_SimpleServerSimple_9() const { return ___m_SimpleServerSimple_9; }
inline ServerSimpleWrapper_t1ECF42A66748FA970402440F00E743DB5E2AAA32 ** get_address_of_m_SimpleServerSimple_9() { return &___m_SimpleServerSimple_9; }
inline void set_m_SimpleServerSimple_9(ServerSimpleWrapper_t1ECF42A66748FA970402440F00E743DB5E2AAA32 * value)
{
___m_SimpleServerSimple_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SimpleServerSimple_9), (void*)value);
}
inline static int32_t get_offset_of_m_MaxDelay_10() { return static_cast<int32_t>(offsetof(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1, ___m_MaxDelay_10)); }
inline float get_m_MaxDelay_10() const { return ___m_MaxDelay_10; }
inline float* get_address_of_m_MaxDelay_10() { return &___m_MaxDelay_10; }
inline void set_m_MaxDelay_10(float value)
{
___m_MaxDelay_10 = value;
}
inline static int32_t get_offset_of_m_RemoveList_11() { return static_cast<int32_t>(offsetof(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1, ___m_RemoveList_11)); }
inline HashSet_1_t04AFB5FB47684F4B89636F9B0A465D7E869FFA50 * get_m_RemoveList_11() const { return ___m_RemoveList_11; }
inline HashSet_1_t04AFB5FB47684F4B89636F9B0A465D7E869FFA50 ** get_address_of_m_RemoveList_11() { return &___m_RemoveList_11; }
inline void set_m_RemoveList_11(HashSet_1_t04AFB5FB47684F4B89636F9B0A465D7E869FFA50 * value)
{
___m_RemoveList_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RemoveList_11), (void*)value);
}
inline static int32_t get_offset_of_m_RemoveListCount_12() { return static_cast<int32_t>(offsetof(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1, ___m_RemoveListCount_12)); }
inline int32_t get_m_RemoveListCount_12() const { return ___m_RemoveListCount_12; }
inline int32_t* get_address_of_m_RemoveListCount_12() { return &___m_RemoveListCount_12; }
inline void set_m_RemoveListCount_12(int32_t value)
{
___m_RemoveListCount_12 = value;
}
};
struct NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1_StaticFields
{
public:
// System.Boolean UnityEngine.Networking.NetworkServer::s_Active
bool ___s_Active_0;
// UnityEngine.Networking.NetworkServer modreq(System.Runtime.CompilerServices.IsVolatile) UnityEngine.Networking.NetworkServer::s_Instance
NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1 * ___s_Instance_1;
// System.Object UnityEngine.Networking.NetworkServer::s_Sync
RuntimeObject * ___s_Sync_2;
// System.Boolean UnityEngine.Networking.NetworkServer::m_DontListen
bool ___m_DontListen_3;
// System.UInt16 UnityEngine.Networking.NetworkServer::maxPacketSize
uint16_t ___maxPacketSize_14;
// UnityEngine.Networking.NetworkSystem.RemovePlayerMessage UnityEngine.Networking.NetworkServer::s_RemovePlayerMessage
RemovePlayerMessage_t51B0D9BCA3C2B4FD772A2972588CC0915FD4CEBF * ___s_RemovePlayerMessage_15;
public:
inline static int32_t get_offset_of_s_Active_0() { return static_cast<int32_t>(offsetof(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1_StaticFields, ___s_Active_0)); }
inline bool get_s_Active_0() const { return ___s_Active_0; }
inline bool* get_address_of_s_Active_0() { return &___s_Active_0; }
inline void set_s_Active_0(bool value)
{
___s_Active_0 = value;
}
inline static int32_t get_offset_of_s_Instance_1() { return static_cast<int32_t>(offsetof(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1_StaticFields, ___s_Instance_1)); }
inline NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1 * get_s_Instance_1() const { return ___s_Instance_1; }
inline NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1 ** get_address_of_s_Instance_1() { return &___s_Instance_1; }
inline void set_s_Instance_1(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1 * value)
{
___s_Instance_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Instance_1), (void*)value);
}
inline static int32_t get_offset_of_s_Sync_2() { return static_cast<int32_t>(offsetof(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1_StaticFields, ___s_Sync_2)); }
inline RuntimeObject * get_s_Sync_2() const { return ___s_Sync_2; }
inline RuntimeObject ** get_address_of_s_Sync_2() { return &___s_Sync_2; }
inline void set_s_Sync_2(RuntimeObject * value)
{
___s_Sync_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Sync_2), (void*)value);
}
inline static int32_t get_offset_of_m_DontListen_3() { return static_cast<int32_t>(offsetof(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1_StaticFields, ___m_DontListen_3)); }
inline bool get_m_DontListen_3() const { return ___m_DontListen_3; }
inline bool* get_address_of_m_DontListen_3() { return &___m_DontListen_3; }
inline void set_m_DontListen_3(bool value)
{
___m_DontListen_3 = value;
}
inline static int32_t get_offset_of_maxPacketSize_14() { return static_cast<int32_t>(offsetof(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1_StaticFields, ___maxPacketSize_14)); }
inline uint16_t get_maxPacketSize_14() const { return ___maxPacketSize_14; }
inline uint16_t* get_address_of_maxPacketSize_14() { return &___maxPacketSize_14; }
inline void set_maxPacketSize_14(uint16_t value)
{
___maxPacketSize_14 = value;
}
inline static int32_t get_offset_of_s_RemovePlayerMessage_15() { return static_cast<int32_t>(offsetof(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1_StaticFields, ___s_RemovePlayerMessage_15)); }
inline RemovePlayerMessage_t51B0D9BCA3C2B4FD772A2972588CC0915FD4CEBF * get_s_RemovePlayerMessage_15() const { return ___s_RemovePlayerMessage_15; }
inline RemovePlayerMessage_t51B0D9BCA3C2B4FD772A2972588CC0915FD4CEBF ** get_address_of_s_RemovePlayerMessage_15() { return &___s_RemovePlayerMessage_15; }
inline void set_s_RemovePlayerMessage_15(RemovePlayerMessage_t51B0D9BCA3C2B4FD772A2972588CC0915FD4CEBF * value)
{
___s_RemovePlayerMessage_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_RemovePlayerMessage_15), (void*)value);
}
};
// UnityEngine.Networking.NetworkServerSimple
struct NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.Networking.NetworkServerSimple::m_Initialized
bool ___m_Initialized_0;
// System.Int32 UnityEngine.Networking.NetworkServerSimple::m_ListenPort
int32_t ___m_ListenPort_1;
// System.Int32 UnityEngine.Networking.NetworkServerSimple::m_ServerHostId
int32_t ___m_ServerHostId_2;
// System.Int32 UnityEngine.Networking.NetworkServerSimple::m_RelaySlotId
int32_t ___m_RelaySlotId_3;
// System.Boolean UnityEngine.Networking.NetworkServerSimple::m_UseWebSockets
bool ___m_UseWebSockets_4;
// System.Byte[] UnityEngine.Networking.NetworkServerSimple::m_MsgBuffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_MsgBuffer_5;
// UnityEngine.Networking.NetworkReader UnityEngine.Networking.NetworkServerSimple::m_MsgReader
NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 * ___m_MsgReader_6;
// System.Type UnityEngine.Networking.NetworkServerSimple::m_NetworkConnectionClass
Type_t * ___m_NetworkConnectionClass_7;
// UnityEngine.Networking.HostTopology UnityEngine.Networking.NetworkServerSimple::m_HostTopology
HostTopology_tD01D253330A0DAA736EDFC67EE9585C363FA9B0E * ___m_HostTopology_8;
// System.Collections.Generic.List`1<UnityEngine.Networking.NetworkConnection> UnityEngine.Networking.NetworkServerSimple::m_Connections
List_1_t7A006745EA41BB1EE354777CCAE13C252BF8240D * ___m_Connections_9;
// System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Networking.NetworkConnection> UnityEngine.Networking.NetworkServerSimple::m_ConnectionsReadOnly
ReadOnlyCollection_1_t75152D706F94D4BEAEEBB803A10EE0E71B324B91 * ___m_ConnectionsReadOnly_10;
// UnityEngine.Networking.NetworkMessageHandlers UnityEngine.Networking.NetworkServerSimple::m_MessageHandlers
NetworkMessageHandlers_tA7BB2E51BDBD8ECE976AD44F1B634F40EA9807D4 * ___m_MessageHandlers_11;
public:
inline static int32_t get_offset_of_m_Initialized_0() { return static_cast<int32_t>(offsetof(NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648, ___m_Initialized_0)); }
inline bool get_m_Initialized_0() const { return ___m_Initialized_0; }
inline bool* get_address_of_m_Initialized_0() { return &___m_Initialized_0; }
inline void set_m_Initialized_0(bool value)
{
___m_Initialized_0 = value;
}
inline static int32_t get_offset_of_m_ListenPort_1() { return static_cast<int32_t>(offsetof(NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648, ___m_ListenPort_1)); }
inline int32_t get_m_ListenPort_1() const { return ___m_ListenPort_1; }
inline int32_t* get_address_of_m_ListenPort_1() { return &___m_ListenPort_1; }
inline void set_m_ListenPort_1(int32_t value)
{
___m_ListenPort_1 = value;
}
inline static int32_t get_offset_of_m_ServerHostId_2() { return static_cast<int32_t>(offsetof(NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648, ___m_ServerHostId_2)); }
inline int32_t get_m_ServerHostId_2() const { return ___m_ServerHostId_2; }
inline int32_t* get_address_of_m_ServerHostId_2() { return &___m_ServerHostId_2; }
inline void set_m_ServerHostId_2(int32_t value)
{
___m_ServerHostId_2 = value;
}
inline static int32_t get_offset_of_m_RelaySlotId_3() { return static_cast<int32_t>(offsetof(NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648, ___m_RelaySlotId_3)); }
inline int32_t get_m_RelaySlotId_3() const { return ___m_RelaySlotId_3; }
inline int32_t* get_address_of_m_RelaySlotId_3() { return &___m_RelaySlotId_3; }
inline void set_m_RelaySlotId_3(int32_t value)
{
___m_RelaySlotId_3 = value;
}
inline static int32_t get_offset_of_m_UseWebSockets_4() { return static_cast<int32_t>(offsetof(NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648, ___m_UseWebSockets_4)); }
inline bool get_m_UseWebSockets_4() const { return ___m_UseWebSockets_4; }
inline bool* get_address_of_m_UseWebSockets_4() { return &___m_UseWebSockets_4; }
inline void set_m_UseWebSockets_4(bool value)
{
___m_UseWebSockets_4 = value;
}
inline static int32_t get_offset_of_m_MsgBuffer_5() { return static_cast<int32_t>(offsetof(NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648, ___m_MsgBuffer_5)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_MsgBuffer_5() const { return ___m_MsgBuffer_5; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_MsgBuffer_5() { return &___m_MsgBuffer_5; }
inline void set_m_MsgBuffer_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___m_MsgBuffer_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MsgBuffer_5), (void*)value);
}
inline static int32_t get_offset_of_m_MsgReader_6() { return static_cast<int32_t>(offsetof(NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648, ___m_MsgReader_6)); }
inline NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 * get_m_MsgReader_6() const { return ___m_MsgReader_6; }
inline NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 ** get_address_of_m_MsgReader_6() { return &___m_MsgReader_6; }
inline void set_m_MsgReader_6(NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 * value)
{
___m_MsgReader_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MsgReader_6), (void*)value);
}
inline static int32_t get_offset_of_m_NetworkConnectionClass_7() { return static_cast<int32_t>(offsetof(NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648, ___m_NetworkConnectionClass_7)); }
inline Type_t * get_m_NetworkConnectionClass_7() const { return ___m_NetworkConnectionClass_7; }
inline Type_t ** get_address_of_m_NetworkConnectionClass_7() { return &___m_NetworkConnectionClass_7; }
inline void set_m_NetworkConnectionClass_7(Type_t * value)
{
___m_NetworkConnectionClass_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_NetworkConnectionClass_7), (void*)value);
}
inline static int32_t get_offset_of_m_HostTopology_8() { return static_cast<int32_t>(offsetof(NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648, ___m_HostTopology_8)); }
inline HostTopology_tD01D253330A0DAA736EDFC67EE9585C363FA9B0E * get_m_HostTopology_8() const { return ___m_HostTopology_8; }
inline HostTopology_tD01D253330A0DAA736EDFC67EE9585C363FA9B0E ** get_address_of_m_HostTopology_8() { return &___m_HostTopology_8; }
inline void set_m_HostTopology_8(HostTopology_tD01D253330A0DAA736EDFC67EE9585C363FA9B0E * value)
{
___m_HostTopology_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HostTopology_8), (void*)value);
}
inline static int32_t get_offset_of_m_Connections_9() { return static_cast<int32_t>(offsetof(NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648, ___m_Connections_9)); }
inline List_1_t7A006745EA41BB1EE354777CCAE13C252BF8240D * get_m_Connections_9() const { return ___m_Connections_9; }
inline List_1_t7A006745EA41BB1EE354777CCAE13C252BF8240D ** get_address_of_m_Connections_9() { return &___m_Connections_9; }
inline void set_m_Connections_9(List_1_t7A006745EA41BB1EE354777CCAE13C252BF8240D * value)
{
___m_Connections_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Connections_9), (void*)value);
}
inline static int32_t get_offset_of_m_ConnectionsReadOnly_10() { return static_cast<int32_t>(offsetof(NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648, ___m_ConnectionsReadOnly_10)); }
inline ReadOnlyCollection_1_t75152D706F94D4BEAEEBB803A10EE0E71B324B91 * get_m_ConnectionsReadOnly_10() const { return ___m_ConnectionsReadOnly_10; }
inline ReadOnlyCollection_1_t75152D706F94D4BEAEEBB803A10EE0E71B324B91 ** get_address_of_m_ConnectionsReadOnly_10() { return &___m_ConnectionsReadOnly_10; }
inline void set_m_ConnectionsReadOnly_10(ReadOnlyCollection_1_t75152D706F94D4BEAEEBB803A10EE0E71B324B91 * value)
{
___m_ConnectionsReadOnly_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ConnectionsReadOnly_10), (void*)value);
}
inline static int32_t get_offset_of_m_MessageHandlers_11() { return static_cast<int32_t>(offsetof(NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648, ___m_MessageHandlers_11)); }
inline NetworkMessageHandlers_tA7BB2E51BDBD8ECE976AD44F1B634F40EA9807D4 * get_m_MessageHandlers_11() const { return ___m_MessageHandlers_11; }
inline NetworkMessageHandlers_tA7BB2E51BDBD8ECE976AD44F1B634F40EA9807D4 ** get_address_of_m_MessageHandlers_11() { return &___m_MessageHandlers_11; }
inline void set_m_MessageHandlers_11(NetworkMessageHandlers_tA7BB2E51BDBD8ECE976AD44F1B634F40EA9807D4 * value)
{
___m_MessageHandlers_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MessageHandlers_11), (void*)value);
}
};
// UnityEngine.Resources
struct Resources_t516CB639AA1F373695D285E3F9274C65A70D3935 : public RuntimeObject
{
public:
public:
};
// 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;
}
};
// System.ArraySegment`1<System.Byte>
struct ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA
{
public:
// T[] System.ArraySegment`1::_array
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____array_0;
// System.Int32 System.ArraySegment`1::_offset
int32_t ____offset_1;
// System.Int32 System.ArraySegment`1::_count
int32_t ____count_2;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA, ____array_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__array_0() const { return ____array_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
}
inline static int32_t get_offset_of__offset_1() { return static_cast<int32_t>(offsetof(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA, ____offset_1)); }
inline int32_t get__offset_1() const { return ____offset_1; }
inline int32_t* get_address_of__offset_1() { return &____offset_1; }
inline void set__offset_1(int32_t value)
{
____offset_1 = value;
}
inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA, ____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;
}
};
// 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.Int16,System.Object>
struct Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3
{
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
int16_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_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3, ___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_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3, ___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_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3, ___key_2)); }
inline int16_t get_key_2() const { return ___key_2; }
inline int16_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int16_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3, ___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.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.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.Int64>
struct Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41
{
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
int64_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___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_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___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_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___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_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___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.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.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.Int32>
struct Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7
{
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
int32_t ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7, ___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_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7, ___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_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7, ___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.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.Int16,System.Object>
struct KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int16_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_t6DE163165C8ABD301B1807D046BC699380D9BD03, ___key_0)); }
inline int16_t get_key_0() const { return ___key_0; }
inline int16_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int16_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03, ___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.Object>
struct KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367
{
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_tB49DA8C7F6817D87925F65955E8E1190BE76D367, ___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_tB49DA8C7F6817D87925F65955E8E1190BE76D367, ___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.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.Int64>
struct KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___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_t169DC5A905B6A5878CDBE24B2E799E0C996673C2, ___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_t169DC5A905B6A5878CDBE24B2E799E0C996673C2, ___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.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.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.Collections.Hashtable_bucket
struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083
{
public:
// System.Object System.Collections.Hashtable_bucket::key
RuntimeObject * ___key_0;
// System.Object System.Collections.Hashtable_bucket::val
RuntimeObject * ___val_1;
// System.Int32 System.Collections.Hashtable_bucket::hash_coll
int32_t ___hash_coll_2;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___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_val_1() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___val_1)); }
inline RuntimeObject * get_val_1() const { return ___val_1; }
inline RuntimeObject ** get_address_of_val_1() { return &___val_1; }
inline void set_val_1(RuntimeObject * value)
{
___val_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___val_1), (void*)value);
}
inline static int32_t get_offset_of_hash_coll_2() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___hash_coll_2)); }
inline int32_t get_hash_coll_2() const { return ___hash_coll_2; }
inline int32_t* get_address_of_hash_coll_2() { return &___hash_coll_2; }
inline void set_hash_coll_2(int32_t value)
{
___hash_coll_2 = value;
}
};
// Native definition for P/Invoke marshalling of System.Collections.Hashtable/bucket
struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_pinvoke
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___val_1;
int32_t ___hash_coll_2;
};
// Native definition for COM marshalling of System.Collections.Hashtable/bucket
struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_com
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___val_1;
int32_t ___hash_coll_2;
};
// 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.Decimal
struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8
{
public:
// System.Int32 System.Decimal::flags
int32_t ___flags_14;
// System.Int32 System.Decimal::hi
int32_t ___hi_15;
// System.Int32 System.Decimal::lo
int32_t ___lo_16;
// System.Int32 System.Decimal::mid
int32_t ___mid_17;
public:
inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); }
inline int32_t get_flags_14() const { return ___flags_14; }
inline int32_t* get_address_of_flags_14() { return &___flags_14; }
inline void set_flags_14(int32_t value)
{
___flags_14 = value;
}
inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); }
inline int32_t get_hi_15() const { return ___hi_15; }
inline int32_t* get_address_of_hi_15() { return &___hi_15; }
inline void set_hi_15(int32_t value)
{
___hi_15 = value;
}
inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); }
inline int32_t get_lo_16() const { return ___lo_16; }
inline int32_t* get_address_of_lo_16() { return &___lo_16; }
inline void set_lo_16(int32_t value)
{
___lo_16 = value;
}
inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); }
inline int32_t get_mid_17() const { return ___mid_17; }
inline int32_t* get_address_of_mid_17() { return &___mid_17; }
inline void set_mid_17(int32_t value)
{
___mid_17 = value;
}
};
struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields
{
public:
// System.UInt32[] System.Decimal::Powers10
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6;
// System.Decimal System.Decimal::Zero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7;
// System.Decimal System.Decimal::One
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8;
// System.Decimal System.Decimal::MinusOne
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9;
// System.Decimal System.Decimal::MaxValue
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10;
// System.Decimal System.Decimal::MinValue
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11;
// System.Decimal System.Decimal::NearNegativeZero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12;
// System.Decimal System.Decimal::NearPositiveZero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13;
public:
inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; }
inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value)
{
___Powers10_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value);
}
inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; }
inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___Zero_7 = value;
}
inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; }
inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___One_8 = value;
}
inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; }
inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MinusOne_9 = value;
}
inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; }
inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MaxValue_10 = value;
}
inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; }
inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MinValue_11 = value;
}
inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; }
inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___NearNegativeZero_12 = value;
}
inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; }
inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___NearPositiveZero_13 = value;
}
};
// System.Diagnostics.Tracing.EmptyStruct
struct EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082
{
public:
union
{
struct
{
};
uint8_t EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082__padding[1];
};
public:
};
// System.Diagnostics.Tracing.EventDescriptor
struct EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 System.Diagnostics.Tracing.EventDescriptor::m_traceloggingId
int32_t ___m_traceloggingId_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___m_traceloggingId_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.UInt16 System.Diagnostics.Tracing.EventDescriptor::m_id
uint16_t ___m_id_1;
};
#pragma pack(pop, tp)
struct
{
uint16_t ___m_id_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_version_2_OffsetPadding[2];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_version
uint8_t ___m_version_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_version_2_OffsetPadding_forAlignmentOnly[2];
uint8_t ___m_version_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_channel_3_OffsetPadding[3];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_channel
uint8_t ___m_channel_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_channel_3_OffsetPadding_forAlignmentOnly[3];
uint8_t ___m_channel_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_level_4_OffsetPadding[4];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_level
uint8_t ___m_level_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_level_4_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_level_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_opcode_5_OffsetPadding[5];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_opcode
uint8_t ___m_opcode_5;
};
#pragma pack(pop, tp)
struct
{
char ___m_opcode_5_OffsetPadding_forAlignmentOnly[5];
uint8_t ___m_opcode_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_task_6_OffsetPadding[6];
// System.UInt16 System.Diagnostics.Tracing.EventDescriptor::m_task
uint16_t ___m_task_6;
};
#pragma pack(pop, tp)
struct
{
char ___m_task_6_OffsetPadding_forAlignmentOnly[6];
uint16_t ___m_task_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_keywords_7_OffsetPadding[8];
// System.Int64 System.Diagnostics.Tracing.EventDescriptor::m_keywords
int64_t ___m_keywords_7;
};
#pragma pack(pop, tp)
struct
{
char ___m_keywords_7_OffsetPadding_forAlignmentOnly[8];
int64_t ___m_keywords_7_forAlignmentOnly;
};
};
};
uint8_t EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E__padding[16];
};
public:
inline static int32_t get_offset_of_m_traceloggingId_0() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_traceloggingId_0)); }
inline int32_t get_m_traceloggingId_0() const { return ___m_traceloggingId_0; }
inline int32_t* get_address_of_m_traceloggingId_0() { return &___m_traceloggingId_0; }
inline void set_m_traceloggingId_0(int32_t value)
{
___m_traceloggingId_0 = value;
}
inline static int32_t get_offset_of_m_id_1() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_id_1)); }
inline uint16_t get_m_id_1() const { return ___m_id_1; }
inline uint16_t* get_address_of_m_id_1() { return &___m_id_1; }
inline void set_m_id_1(uint16_t value)
{
___m_id_1 = value;
}
inline static int32_t get_offset_of_m_version_2() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_version_2)); }
inline uint8_t get_m_version_2() const { return ___m_version_2; }
inline uint8_t* get_address_of_m_version_2() { return &___m_version_2; }
inline void set_m_version_2(uint8_t value)
{
___m_version_2 = value;
}
inline static int32_t get_offset_of_m_channel_3() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_channel_3)); }
inline uint8_t get_m_channel_3() const { return ___m_channel_3; }
inline uint8_t* get_address_of_m_channel_3() { return &___m_channel_3; }
inline void set_m_channel_3(uint8_t value)
{
___m_channel_3 = value;
}
inline static int32_t get_offset_of_m_level_4() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_level_4)); }
inline uint8_t get_m_level_4() const { return ___m_level_4; }
inline uint8_t* get_address_of_m_level_4() { return &___m_level_4; }
inline void set_m_level_4(uint8_t value)
{
___m_level_4 = value;
}
inline static int32_t get_offset_of_m_opcode_5() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_opcode_5)); }
inline uint8_t get_m_opcode_5() const { return ___m_opcode_5; }
inline uint8_t* get_address_of_m_opcode_5() { return &___m_opcode_5; }
inline void set_m_opcode_5(uint8_t value)
{
___m_opcode_5 = value;
}
inline static int32_t get_offset_of_m_task_6() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_task_6)); }
inline uint16_t get_m_task_6() const { return ___m_task_6; }
inline uint16_t* get_address_of_m_task_6() { return &___m_task_6; }
inline void set_m_task_6(uint16_t value)
{
___m_task_6 = value;
}
inline static int32_t get_offset_of_m_keywords_7() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_keywords_7)); }
inline int64_t get_m_keywords_7() const { return ___m_keywords_7; }
inline int64_t* get_address_of_m_keywords_7() { return &___m_keywords_7; }
inline void set_m_keywords_7(int64_t value)
{
___m_keywords_7 = 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.Double
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409
{
public:
// System.Double System.Double::m_value
double ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); }
inline double get_m_value_0() const { return ___m_value_0; }
inline double* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(double value)
{
___m_value_0 = value;
}
};
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields
{
public:
// System.Double System.Double::NegativeZero
double ___NegativeZero_7;
public:
inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); }
inline double get_NegativeZero_7() const { return ___NegativeZero_7; }
inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; }
inline void set_NegativeZero_7(double value)
{
___NegativeZero_7 = 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.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4
{
public:
// System.UInt16 System.Globalization.InternalCodePageDataItem::codePage
uint16_t ___codePage_0;
// System.UInt16 System.Globalization.InternalCodePageDataItem::uiFamilyCodePage
uint16_t ___uiFamilyCodePage_1;
// System.UInt32 System.Globalization.InternalCodePageDataItem::flags
uint32_t ___flags_2;
// System.String System.Globalization.InternalCodePageDataItem::Names
String_t* ___Names_3;
public:
inline static int32_t get_offset_of_codePage_0() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___codePage_0)); }
inline uint16_t get_codePage_0() const { return ___codePage_0; }
inline uint16_t* get_address_of_codePage_0() { return &___codePage_0; }
inline void set_codePage_0(uint16_t value)
{
___codePage_0 = value;
}
inline static int32_t get_offset_of_uiFamilyCodePage_1() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___uiFamilyCodePage_1)); }
inline uint16_t get_uiFamilyCodePage_1() const { return ___uiFamilyCodePage_1; }
inline uint16_t* get_address_of_uiFamilyCodePage_1() { return &___uiFamilyCodePage_1; }
inline void set_uiFamilyCodePage_1(uint16_t value)
{
___uiFamilyCodePage_1 = value;
}
inline static int32_t get_offset_of_flags_2() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___flags_2)); }
inline uint32_t get_flags_2() const { return ___flags_2; }
inline uint32_t* get_address_of_flags_2() { return &___flags_2; }
inline void set_flags_2(uint32_t value)
{
___flags_2 = value;
}
inline static int32_t get_offset_of_Names_3() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___Names_3)); }
inline String_t* get_Names_3() const { return ___Names_3; }
inline String_t** get_address_of_Names_3() { return &___Names_3; }
inline void set_Names_3(String_t* value)
{
___Names_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Names_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_pinvoke
{
uint16_t ___codePage_0;
uint16_t ___uiFamilyCodePage_1;
uint32_t ___flags_2;
char* ___Names_3;
};
// Native definition for COM marshalling of System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_com
{
uint16_t ___codePage_0;
uint16_t ___uiFamilyCodePage_1;
uint32_t ___flags_2;
Il2CppChar* ___Names_3;
};
// System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211
{
public:
// System.String System.Globalization.InternalEncodingDataItem::webName
String_t* ___webName_0;
// System.UInt16 System.Globalization.InternalEncodingDataItem::codePage
uint16_t ___codePage_1;
public:
inline static int32_t get_offset_of_webName_0() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, ___webName_0)); }
inline String_t* get_webName_0() const { return ___webName_0; }
inline String_t** get_address_of_webName_0() { return &___webName_0; }
inline void set_webName_0(String_t* value)
{
___webName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___webName_0), (void*)value);
}
inline static int32_t get_offset_of_codePage_1() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, ___codePage_1)); }
inline uint16_t get_codePage_1() const { return ___codePage_1; }
inline uint16_t* get_address_of_codePage_1() { return &___codePage_1; }
inline void set_codePage_1(uint16_t value)
{
___codePage_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_marshaled_pinvoke
{
char* ___webName_0;
uint16_t ___codePage_1;
};
// Native definition for COM marshalling of System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_marshaled_com
{
Il2CppChar* ___webName_0;
uint16_t ___codePage_1;
};
// 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;
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);
}
};
// System.Int16
struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D
{
public:
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); }
inline int16_t get_m_value_0() const { return ___m_value_0; }
inline int16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int16_t value)
{
___m_value_0 = 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.Int64
struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436
{
public:
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); }
inline int64_t get_m_value_0() const { return ___m_value_0; }
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int64_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.ParameterizedStrings_FormatParam
struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800
{
public:
// System.Int32 System.ParameterizedStrings_FormatParam::_int32
int32_t ____int32_0;
// System.String System.ParameterizedStrings_FormatParam::_string
String_t* ____string_1;
public:
inline static int32_t get_offset_of__int32_0() { return static_cast<int32_t>(offsetof(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, ____int32_0)); }
inline int32_t get__int32_0() const { return ____int32_0; }
inline int32_t* get_address_of__int32_0() { return &____int32_0; }
inline void set__int32_0(int32_t value)
{
____int32_0 = value;
}
inline static int32_t get_offset_of__string_1() { return static_cast<int32_t>(offsetof(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, ____string_1)); }
inline String_t* get__string_1() const { return ____string_1; }
inline String_t** get_address_of__string_1() { return &____string_1; }
inline void set__string_1(String_t* value)
{
____string_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____string_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.ParameterizedStrings/FormatParam
struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_marshaled_pinvoke
{
int32_t ____int32_0;
char* ____string_1;
};
// Native definition for COM marshalling of System.ParameterizedStrings/FormatParam
struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_marshaled_com
{
int32_t ____int32_0;
Il2CppChar* ____string_1;
};
// System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8
{
public:
// System.Type System.Reflection.CustomAttributeTypedArgument::argumentType
Type_t * ___argumentType_0;
// System.Object System.Reflection.CustomAttributeTypedArgument::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_argumentType_0() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, ___argumentType_0)); }
inline Type_t * get_argumentType_0() const { return ___argumentType_0; }
inline Type_t ** get_address_of_argumentType_0() { return &___argumentType_0; }
inline void set_argumentType_0(Type_t * value)
{
___argumentType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___argumentType_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, ___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.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_pinvoke
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_com
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E
{
public:
// System.Boolean[] System.Reflection.ParameterModifier::_byRef
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ____byRef_0;
public:
inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, ____byRef_0)); }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get__byRef_0() const { return ____byRef_0; }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of__byRef_0() { return &____byRef_0; }
inline void set__byRef_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
{
____byRef_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_pinvoke
{
int32_t* ____byRef_0;
};
// Native definition for COM marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_com
{
int32_t* ____byRef_0;
};
// 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.Ephemeron
struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA
{
public:
// System.Object System.Runtime.CompilerServices.Ephemeron::key
RuntimeObject * ___key_0;
// System.Object System.Runtime.CompilerServices.Ephemeron::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___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(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___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.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_pinvoke
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_com
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
// System.Runtime.InteropServices.GCHandle
struct GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3
{
public:
// System.Int32 System.Runtime.InteropServices.GCHandle::handle
int32_t ___handle_0;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3, ___handle_0)); }
inline int32_t get_handle_0() const { return ___handle_0; }
inline int32_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(int32_t value)
{
___handle_0 = value;
}
};
// System.SByte
struct SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF
{
public:
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, ___m_value_0)); }
inline int8_t get_m_value_0() const { return ___m_value_0; }
inline int8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int8_t value)
{
___m_value_0 = value;
}
};
// 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.Text.RegularExpressions.RegexCharClass_LowerCaseMapping
struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B
{
public:
// System.Char System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_chMin
Il2CppChar ____chMin_0;
// System.Char System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_chMax
Il2CppChar ____chMax_1;
// System.Int32 System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_lcOp
int32_t ____lcOp_2;
// System.Int32 System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_data
int32_t ____data_3;
public:
inline static int32_t get_offset_of__chMin_0() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____chMin_0)); }
inline Il2CppChar get__chMin_0() const { return ____chMin_0; }
inline Il2CppChar* get_address_of__chMin_0() { return &____chMin_0; }
inline void set__chMin_0(Il2CppChar value)
{
____chMin_0 = value;
}
inline static int32_t get_offset_of__chMax_1() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____chMax_1)); }
inline Il2CppChar get__chMax_1() const { return ____chMax_1; }
inline Il2CppChar* get_address_of__chMax_1() { return &____chMax_1; }
inline void set__chMax_1(Il2CppChar value)
{
____chMax_1 = value;
}
inline static int32_t get_offset_of__lcOp_2() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____lcOp_2)); }
inline int32_t get__lcOp_2() const { return ____lcOp_2; }
inline int32_t* get_address_of__lcOp_2() { return &____lcOp_2; }
inline void set__lcOp_2(int32_t value)
{
____lcOp_2 = value;
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____data_3)); }
inline int32_t get__data_3() const { return ____data_3; }
inline int32_t* get_address_of__data_3() { return &____data_3; }
inline void set__data_3(int32_t value)
{
____data_3 = value;
}
};
// Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_marshaled_pinvoke
{
uint8_t ____chMin_0;
uint8_t ____chMax_1;
int32_t ____lcOp_2;
int32_t ____data_3;
};
// Native definition for COM marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_marshaled_com
{
uint8_t ____chMin_0;
uint8_t ____chMax_1;
int32_t ____lcOp_2;
int32_t ____data_3;
};
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE
{
public:
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source
SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * ___m_source_0;
// System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1::m_index
int32_t ___m_index_1;
public:
inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE, ___m_source_0)); }
inline SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * get_m_source_0() const { return ___m_source_0; }
inline SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value);
}
inline static int32_t get_offset_of_m_index_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE, ___m_index_1)); }
inline int32_t get_m_index_1() const { return ___m_index_1; }
inline int32_t* get_address_of_m_index_1() { return &___m_index_1; }
inline void set_m_index_1(int32_t value)
{
___m_index_1 = value;
}
};
// System.UInt16
struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E
{
public:
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); }
inline uint16_t get_m_value_0() const { return ___m_value_0; }
inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint16_t 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.UIntPtr
struct UIntPtr_t
{
public:
// System.Void* System.UIntPtr::_pointer
void* ____pointer_1;
public:
inline static int32_t get_offset_of__pointer_1() { return static_cast<int32_t>(offsetof(UIntPtr_t, ____pointer_1)); }
inline void* get__pointer_1() const { return ____pointer_1; }
inline void** get_address_of__pointer_1() { return &____pointer_1; }
inline void set__pointer_1(void* value)
{
____pointer_1 = value;
}
};
struct UIntPtr_t_StaticFields
{
public:
// System.UIntPtr System.UIntPtr::Zero
uintptr_t ___Zero_0;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(UIntPtr_t_StaticFields, ___Zero_0)); }
inline uintptr_t get_Zero_0() const { return ___Zero_0; }
inline uintptr_t* get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(uintptr_t value)
{
___Zero_0 = value;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// 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.DrivenRectTransformTracker
struct DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03
{
public:
union
{
struct
{
};
uint8_t DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03__padding[1];
};
public:
};
// UnityEngine.EventSystems.BaseEventData
struct BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 : public AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6
{
public:
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.BaseEventData::m_EventSystem
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___m_EventSystem_1;
public:
inline static int32_t get_offset_of_m_EventSystem_1() { return static_cast<int32_t>(offsetof(BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5, ___m_EventSystem_1)); }
inline EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * get_m_EventSystem_1() const { return ___m_EventSystem_1; }
inline EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 ** get_address_of_m_EventSystem_1() { return &___m_EventSystem_1; }
inline void set_m_EventSystem_1(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * value)
{
___m_EventSystem_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_EventSystem_1), (void*)value);
}
};
// UnityEngine.Experimental.GlobalIllumination.LinearColor
struct LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD
{
public:
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_red
float ___m_red_0;
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_green
float ___m_green_1;
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_blue
float ___m_blue_2;
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_intensity
float ___m_intensity_3;
public:
inline static int32_t get_offset_of_m_red_0() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_red_0)); }
inline float get_m_red_0() const { return ___m_red_0; }
inline float* get_address_of_m_red_0() { return &___m_red_0; }
inline void set_m_red_0(float value)
{
___m_red_0 = value;
}
inline static int32_t get_offset_of_m_green_1() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_green_1)); }
inline float get_m_green_1() const { return ___m_green_1; }
inline float* get_address_of_m_green_1() { return &___m_green_1; }
inline void set_m_green_1(float value)
{
___m_green_1 = value;
}
inline static int32_t get_offset_of_m_blue_2() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_blue_2)); }
inline float get_m_blue_2() const { return ___m_blue_2; }
inline float* get_address_of_m_blue_2() { return &___m_blue_2; }
inline void set_m_blue_2(float value)
{
___m_blue_2 = value;
}
inline static int32_t get_offset_of_m_intensity_3() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_intensity_3)); }
inline float get_m_intensity_3() const { return ___m_intensity_3; }
inline float* get_address_of_m_intensity_3() { return &___m_intensity_3; }
inline void set_m_intensity_3(float value)
{
___m_intensity_3 = value;
}
};
// UnityEngine.Keyframe
struct Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74
{
public:
// System.Single UnityEngine.Keyframe::m_Time
float ___m_Time_0;
// System.Single UnityEngine.Keyframe::m_Value
float ___m_Value_1;
// System.Single UnityEngine.Keyframe::m_InTangent
float ___m_InTangent_2;
// System.Single UnityEngine.Keyframe::m_OutTangent
float ___m_OutTangent_3;
// System.Int32 UnityEngine.Keyframe::m_WeightedMode
int32_t ___m_WeightedMode_4;
// System.Single UnityEngine.Keyframe::m_InWeight
float ___m_InWeight_5;
// System.Single UnityEngine.Keyframe::m_OutWeight
float ___m_OutWeight_6;
public:
inline static int32_t get_offset_of_m_Time_0() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_Time_0)); }
inline float get_m_Time_0() const { return ___m_Time_0; }
inline float* get_address_of_m_Time_0() { return &___m_Time_0; }
inline void set_m_Time_0(float value)
{
___m_Time_0 = value;
}
inline static int32_t get_offset_of_m_Value_1() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_Value_1)); }
inline float get_m_Value_1() const { return ___m_Value_1; }
inline float* get_address_of_m_Value_1() { return &___m_Value_1; }
inline void set_m_Value_1(float value)
{
___m_Value_1 = value;
}
inline static int32_t get_offset_of_m_InTangent_2() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_InTangent_2)); }
inline float get_m_InTangent_2() const { return ___m_InTangent_2; }
inline float* get_address_of_m_InTangent_2() { return &___m_InTangent_2; }
inline void set_m_InTangent_2(float value)
{
___m_InTangent_2 = value;
}
inline static int32_t get_offset_of_m_OutTangent_3() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_OutTangent_3)); }
inline float get_m_OutTangent_3() const { return ___m_OutTangent_3; }
inline float* get_address_of_m_OutTangent_3() { return &___m_OutTangent_3; }
inline void set_m_OutTangent_3(float value)
{
___m_OutTangent_3 = value;
}
inline static int32_t get_offset_of_m_WeightedMode_4() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_WeightedMode_4)); }
inline int32_t get_m_WeightedMode_4() const { return ___m_WeightedMode_4; }
inline int32_t* get_address_of_m_WeightedMode_4() { return &___m_WeightedMode_4; }
inline void set_m_WeightedMode_4(int32_t value)
{
___m_WeightedMode_4 = value;
}
inline static int32_t get_offset_of_m_InWeight_5() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_InWeight_5)); }
inline float get_m_InWeight_5() const { return ___m_InWeight_5; }
inline float* get_address_of_m_InWeight_5() { return &___m_InWeight_5; }
inline void set_m_InWeight_5(float value)
{
___m_InWeight_5 = value;
}
inline static int32_t get_offset_of_m_OutWeight_6() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_OutWeight_6)); }
inline float get_m_OutWeight_6() const { return ___m_OutWeight_6; }
inline float* get_address_of_m_OutWeight_6() { return &___m_OutWeight_6; }
inline void set_m_OutWeight_6(float value)
{
___m_OutWeight_6 = value;
}
};
// UnityEngine.Networking.ChannelPacket
struct ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D
{
public:
// System.Int32 UnityEngine.Networking.ChannelPacket::m_Position
int32_t ___m_Position_0;
// System.Byte[] UnityEngine.Networking.ChannelPacket::m_Buffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_Buffer_1;
// System.Boolean UnityEngine.Networking.ChannelPacket::m_IsReliable
bool ___m_IsReliable_2;
public:
inline static int32_t get_offset_of_m_Position_0() { return static_cast<int32_t>(offsetof(ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D, ___m_Position_0)); }
inline int32_t get_m_Position_0() const { return ___m_Position_0; }
inline int32_t* get_address_of_m_Position_0() { return &___m_Position_0; }
inline void set_m_Position_0(int32_t value)
{
___m_Position_0 = value;
}
inline static int32_t get_offset_of_m_Buffer_1() { return static_cast<int32_t>(offsetof(ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D, ___m_Buffer_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_Buffer_1() const { return ___m_Buffer_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_Buffer_1() { return &___m_Buffer_1; }
inline void set_m_Buffer_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___m_Buffer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Buffer_1), (void*)value);
}
inline static int32_t get_offset_of_m_IsReliable_2() { return static_cast<int32_t>(offsetof(ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D, ___m_IsReliable_2)); }
inline bool get_m_IsReliable_2() const { return ___m_IsReliable_2; }
inline bool* get_address_of_m_IsReliable_2() { return &___m_IsReliable_2; }
inline void set_m_IsReliable_2(bool value)
{
___m_IsReliable_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.ChannelPacket
struct ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_marshaled_pinvoke
{
int32_t ___m_Position_0;
Il2CppSafeArray/*NONE*/* ___m_Buffer_1;
int32_t ___m_IsReliable_2;
};
// Native definition for COM marshalling of UnityEngine.Networking.ChannelPacket
struct ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_marshaled_com
{
int32_t ___m_Position_0;
Il2CppSafeArray/*NONE*/* ___m_Buffer_1;
int32_t ___m_IsReliable_2;
};
// UnityEngine.Networking.LocalClient_InternalMsg
struct InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0
{
public:
// System.Byte[] UnityEngine.Networking.LocalClient_InternalMsg::buffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer_0;
// System.Int32 UnityEngine.Networking.LocalClient_InternalMsg::channelId
int32_t ___channelId_1;
public:
inline static int32_t get_offset_of_buffer_0() { return static_cast<int32_t>(offsetof(InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0, ___buffer_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buffer_0() const { return ___buffer_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buffer_0() { return &___buffer_0; }
inline void set_buffer_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___buffer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buffer_0), (void*)value);
}
inline static int32_t get_offset_of_channelId_1() { return static_cast<int32_t>(offsetof(InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0, ___channelId_1)); }
inline int32_t get_channelId_1() const { return ___channelId_1; }
inline int32_t* get_address_of_channelId_1() { return &___channelId_1; }
inline void set_channelId_1(int32_t value)
{
___channelId_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.LocalClient/InternalMsg
struct InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_marshaled_pinvoke
{
Il2CppSafeArray/*NONE*/* ___buffer_0;
int32_t ___channelId_1;
};
// Native definition for COM marshalling of UnityEngine.Networking.LocalClient/InternalMsg
struct InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_marshaled_com
{
Il2CppSafeArray/*NONE*/* ___buffer_0;
int32_t ___channelId_1;
};
// UnityEngine.Networking.NetworkBroadcastResult
struct NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6
{
public:
// System.String UnityEngine.Networking.NetworkBroadcastResult::serverAddress
String_t* ___serverAddress_0;
// System.Byte[] UnityEngine.Networking.NetworkBroadcastResult::broadcastData
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___broadcastData_1;
public:
inline static int32_t get_offset_of_serverAddress_0() { return static_cast<int32_t>(offsetof(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6, ___serverAddress_0)); }
inline String_t* get_serverAddress_0() const { return ___serverAddress_0; }
inline String_t** get_address_of_serverAddress_0() { return &___serverAddress_0; }
inline void set_serverAddress_0(String_t* value)
{
___serverAddress_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___serverAddress_0), (void*)value);
}
inline static int32_t get_offset_of_broadcastData_1() { return static_cast<int32_t>(offsetof(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6, ___broadcastData_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_broadcastData_1() const { return ___broadcastData_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_broadcastData_1() { return &___broadcastData_1; }
inline void set_broadcastData_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___broadcastData_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___broadcastData_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.NetworkBroadcastResult
struct NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_marshaled_pinvoke
{
char* ___serverAddress_0;
Il2CppSafeArray/*NONE*/* ___broadcastData_1;
};
// Native definition for COM marshalling of UnityEngine.Networking.NetworkBroadcastResult
struct NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_marshaled_com
{
Il2CppChar* ___serverAddress_0;
Il2CppSafeArray/*NONE*/* ___broadcastData_1;
};
// UnityEngine.Networking.NetworkHash128
struct NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C
{
public:
// System.Byte UnityEngine.Networking.NetworkHash128::i0
uint8_t ___i0_0;
// System.Byte UnityEngine.Networking.NetworkHash128::i1
uint8_t ___i1_1;
// System.Byte UnityEngine.Networking.NetworkHash128::i2
uint8_t ___i2_2;
// System.Byte UnityEngine.Networking.NetworkHash128::i3
uint8_t ___i3_3;
// System.Byte UnityEngine.Networking.NetworkHash128::i4
uint8_t ___i4_4;
// System.Byte UnityEngine.Networking.NetworkHash128::i5
uint8_t ___i5_5;
// System.Byte UnityEngine.Networking.NetworkHash128::i6
uint8_t ___i6_6;
// System.Byte UnityEngine.Networking.NetworkHash128::i7
uint8_t ___i7_7;
// System.Byte UnityEngine.Networking.NetworkHash128::i8
uint8_t ___i8_8;
// System.Byte UnityEngine.Networking.NetworkHash128::i9
uint8_t ___i9_9;
// System.Byte UnityEngine.Networking.NetworkHash128::i10
uint8_t ___i10_10;
// System.Byte UnityEngine.Networking.NetworkHash128::i11
uint8_t ___i11_11;
// System.Byte UnityEngine.Networking.NetworkHash128::i12
uint8_t ___i12_12;
// System.Byte UnityEngine.Networking.NetworkHash128::i13
uint8_t ___i13_13;
// System.Byte UnityEngine.Networking.NetworkHash128::i14
uint8_t ___i14_14;
// System.Byte UnityEngine.Networking.NetworkHash128::i15
uint8_t ___i15_15;
public:
inline static int32_t get_offset_of_i0_0() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i0_0)); }
inline uint8_t get_i0_0() const { return ___i0_0; }
inline uint8_t* get_address_of_i0_0() { return &___i0_0; }
inline void set_i0_0(uint8_t value)
{
___i0_0 = value;
}
inline static int32_t get_offset_of_i1_1() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i1_1)); }
inline uint8_t get_i1_1() const { return ___i1_1; }
inline uint8_t* get_address_of_i1_1() { return &___i1_1; }
inline void set_i1_1(uint8_t value)
{
___i1_1 = value;
}
inline static int32_t get_offset_of_i2_2() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i2_2)); }
inline uint8_t get_i2_2() const { return ___i2_2; }
inline uint8_t* get_address_of_i2_2() { return &___i2_2; }
inline void set_i2_2(uint8_t value)
{
___i2_2 = value;
}
inline static int32_t get_offset_of_i3_3() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i3_3)); }
inline uint8_t get_i3_3() const { return ___i3_3; }
inline uint8_t* get_address_of_i3_3() { return &___i3_3; }
inline void set_i3_3(uint8_t value)
{
___i3_3 = value;
}
inline static int32_t get_offset_of_i4_4() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i4_4)); }
inline uint8_t get_i4_4() const { return ___i4_4; }
inline uint8_t* get_address_of_i4_4() { return &___i4_4; }
inline void set_i4_4(uint8_t value)
{
___i4_4 = value;
}
inline static int32_t get_offset_of_i5_5() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i5_5)); }
inline uint8_t get_i5_5() const { return ___i5_5; }
inline uint8_t* get_address_of_i5_5() { return &___i5_5; }
inline void set_i5_5(uint8_t value)
{
___i5_5 = value;
}
inline static int32_t get_offset_of_i6_6() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i6_6)); }
inline uint8_t get_i6_6() const { return ___i6_6; }
inline uint8_t* get_address_of_i6_6() { return &___i6_6; }
inline void set_i6_6(uint8_t value)
{
___i6_6 = value;
}
inline static int32_t get_offset_of_i7_7() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i7_7)); }
inline uint8_t get_i7_7() const { return ___i7_7; }
inline uint8_t* get_address_of_i7_7() { return &___i7_7; }
inline void set_i7_7(uint8_t value)
{
___i7_7 = value;
}
inline static int32_t get_offset_of_i8_8() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i8_8)); }
inline uint8_t get_i8_8() const { return ___i8_8; }
inline uint8_t* get_address_of_i8_8() { return &___i8_8; }
inline void set_i8_8(uint8_t value)
{
___i8_8 = value;
}
inline static int32_t get_offset_of_i9_9() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i9_9)); }
inline uint8_t get_i9_9() const { return ___i9_9; }
inline uint8_t* get_address_of_i9_9() { return &___i9_9; }
inline void set_i9_9(uint8_t value)
{
___i9_9 = value;
}
inline static int32_t get_offset_of_i10_10() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i10_10)); }
inline uint8_t get_i10_10() const { return ___i10_10; }
inline uint8_t* get_address_of_i10_10() { return &___i10_10; }
inline void set_i10_10(uint8_t value)
{
___i10_10 = value;
}
inline static int32_t get_offset_of_i11_11() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i11_11)); }
inline uint8_t get_i11_11() const { return ___i11_11; }
inline uint8_t* get_address_of_i11_11() { return &___i11_11; }
inline void set_i11_11(uint8_t value)
{
___i11_11 = value;
}
inline static int32_t get_offset_of_i12_12() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i12_12)); }
inline uint8_t get_i12_12() const { return ___i12_12; }
inline uint8_t* get_address_of_i12_12() { return &___i12_12; }
inline void set_i12_12(uint8_t value)
{
___i12_12 = value;
}
inline static int32_t get_offset_of_i13_13() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i13_13)); }
inline uint8_t get_i13_13() const { return ___i13_13; }
inline uint8_t* get_address_of_i13_13() { return &___i13_13; }
inline void set_i13_13(uint8_t value)
{
___i13_13 = value;
}
inline static int32_t get_offset_of_i14_14() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i14_14)); }
inline uint8_t get_i14_14() const { return ___i14_14; }
inline uint8_t* get_address_of_i14_14() { return &___i14_14; }
inline void set_i14_14(uint8_t value)
{
___i14_14 = value;
}
inline static int32_t get_offset_of_i15_15() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i15_15)); }
inline uint8_t get_i15_15() const { return ___i15_15; }
inline uint8_t* get_address_of_i15_15() { return &___i15_15; }
inline void set_i15_15(uint8_t value)
{
___i15_15 = value;
}
};
// UnityEngine.Networking.NetworkInstanceId
struct NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615
{
public:
// System.UInt32 UnityEngine.Networking.NetworkInstanceId::m_Value
uint32_t ___m_Value_0;
public:
inline static int32_t get_offset_of_m_Value_0() { return static_cast<int32_t>(offsetof(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615, ___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;
}
};
struct NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_StaticFields
{
public:
// UnityEngine.Networking.NetworkInstanceId UnityEngine.Networking.NetworkInstanceId::Invalid
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___Invalid_1;
// UnityEngine.Networking.NetworkInstanceId UnityEngine.Networking.NetworkInstanceId::Zero
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___Zero_2;
public:
inline static int32_t get_offset_of_Invalid_1() { return static_cast<int32_t>(offsetof(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_StaticFields, ___Invalid_1)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_Invalid_1() const { return ___Invalid_1; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_Invalid_1() { return &___Invalid_1; }
inline void set_Invalid_1(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___Invalid_1 = value;
}
inline static int32_t get_offset_of_Zero_2() { return static_cast<int32_t>(offsetof(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_StaticFields, ___Zero_2)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_Zero_2() const { return ___Zero_2; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_Zero_2() { return &___Zero_2; }
inline void set_Zero_2(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___Zero_2 = value;
}
};
// UnityEngine.Networking.NetworkLobbyManager_PendingPlayer
struct PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090
{
public:
// UnityEngine.Networking.NetworkConnection UnityEngine.Networking.NetworkLobbyManager_PendingPlayer::conn
NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * ___conn_0;
// UnityEngine.GameObject UnityEngine.Networking.NetworkLobbyManager_PendingPlayer::lobbyPlayer
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___lobbyPlayer_1;
public:
inline static int32_t get_offset_of_conn_0() { return static_cast<int32_t>(offsetof(PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090, ___conn_0)); }
inline NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * get_conn_0() const { return ___conn_0; }
inline NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA ** get_address_of_conn_0() { return &___conn_0; }
inline void set_conn_0(NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * value)
{
___conn_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___conn_0), (void*)value);
}
inline static int32_t get_offset_of_lobbyPlayer_1() { return static_cast<int32_t>(offsetof(PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090, ___lobbyPlayer_1)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_lobbyPlayer_1() const { return ___lobbyPlayer_1; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_lobbyPlayer_1() { return &___lobbyPlayer_1; }
inline void set_lobbyPlayer_1(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___lobbyPlayer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lobbyPlayer_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.NetworkLobbyManager/PendingPlayer
struct PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_marshaled_pinvoke
{
NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * ___conn_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___lobbyPlayer_1;
};
// Native definition for COM marshalling of UnityEngine.Networking.NetworkLobbyManager/PendingPlayer
struct PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_marshaled_com
{
NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * ___conn_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___lobbyPlayer_1;
};
// UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers
struct ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9
{
public:
// System.Collections.Generic.List`1<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo> UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers::players
List_1_t87345ABE62C753FC4A3E06A0820A8CAF6DC8ACA8 * ___players_0;
public:
inline static int32_t get_offset_of_players_0() { return static_cast<int32_t>(offsetof(ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9, ___players_0)); }
inline List_1_t87345ABE62C753FC4A3E06A0820A8CAF6DC8ACA8 * get_players_0() const { return ___players_0; }
inline List_1_t87345ABE62C753FC4A3E06A0820A8CAF6DC8ACA8 ** get_address_of_players_0() { return &___players_0; }
inline void set_players_0(List_1_t87345ABE62C753FC4A3E06A0820A8CAF6DC8ACA8 * value)
{
___players_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___players_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers
struct ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9_marshaled_pinvoke
{
List_1_t87345ABE62C753FC4A3E06A0820A8CAF6DC8ACA8 * ___players_0;
};
// Native definition for COM marshalling of UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers
struct ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9_marshaled_com
{
List_1_t87345ABE62C753FC4A3E06A0820A8CAF6DC8ACA8 * ___players_0;
};
// UnityEngine.Networking.NetworkSceneId
struct NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340
{
public:
// System.UInt32 UnityEngine.Networking.NetworkSceneId::m_Value
uint32_t ___m_Value_0;
public:
inline static int32_t get_offset_of_m_Value_0() { return static_cast<int32_t>(offsetof(NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340, ___m_Value_0)); }
inline uint32_t get_m_Value_0() const { return ___m_Value_0; }
inline uint32_t* get_address_of_m_Value_0() { return &___m_Value_0; }
inline void set_m_Value_0(uint32_t value)
{
___m_Value_0 = value;
}
};
// UnityEngine.Networking.NetworkServer_ServerSimpleWrapper
struct ServerSimpleWrapper_t1ECF42A66748FA970402440F00E743DB5E2AAA32 : public NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648
{
public:
// UnityEngine.Networking.NetworkServer UnityEngine.Networking.NetworkServer_ServerSimpleWrapper::m_Server
NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1 * ___m_Server_12;
public:
inline static int32_t get_offset_of_m_Server_12() { return static_cast<int32_t>(offsetof(ServerSimpleWrapper_t1ECF42A66748FA970402440F00E743DB5E2AAA32, ___m_Server_12)); }
inline NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1 * get_m_Server_12() const { return ___m_Server_12; }
inline NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1 ** get_address_of_m_Server_12() { return &___m_Server_12; }
inline void set_m_Server_12(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1 * value)
{
___m_Server_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Server_12), (void*)value);
}
};
// UnityEngine.Networking.NetworkSystem.CRCMessageEntry
struct CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118
{
public:
// System.String UnityEngine.Networking.NetworkSystem.CRCMessageEntry::name
String_t* ___name_0;
// System.Byte UnityEngine.Networking.NetworkSystem.CRCMessageEntry::channel
uint8_t ___channel_1;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118, ___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_channel_1() { return static_cast<int32_t>(offsetof(CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118, ___channel_1)); }
inline uint8_t get_channel_1() const { return ___channel_1; }
inline uint8_t* get_address_of_channel_1() { return &___channel_1; }
inline void set_channel_1(uint8_t value)
{
___channel_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.NetworkSystem.CRCMessageEntry
struct CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_marshaled_pinvoke
{
char* ___name_0;
uint8_t ___channel_1;
};
// Native definition for COM marshalling of UnityEngine.Networking.NetworkSystem.CRCMessageEntry
struct CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_marshaled_com
{
Il2CppChar* ___name_0;
uint8_t ___channel_1;
};
// 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.Rendering.BatchVisibility
struct BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062
{
public:
// System.Int32 UnityEngine.Rendering.BatchVisibility::offset
int32_t ___offset_0;
// System.Int32 UnityEngine.Rendering.BatchVisibility::instancesCount
int32_t ___instancesCount_1;
// System.Int32 UnityEngine.Rendering.BatchVisibility::visibleCount
int32_t ___visibleCount_2;
public:
inline static int32_t get_offset_of_offset_0() { return static_cast<int32_t>(offsetof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, ___offset_0)); }
inline int32_t get_offset_0() const { return ___offset_0; }
inline int32_t* get_address_of_offset_0() { return &___offset_0; }
inline void set_offset_0(int32_t value)
{
___offset_0 = value;
}
inline static int32_t get_offset_of_instancesCount_1() { return static_cast<int32_t>(offsetof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, ___instancesCount_1)); }
inline int32_t get_instancesCount_1() const { return ___instancesCount_1; }
inline int32_t* get_address_of_instancesCount_1() { return &___instancesCount_1; }
inline void set_instancesCount_1(int32_t value)
{
___instancesCount_1 = value;
}
inline static int32_t get_offset_of_visibleCount_2() { return static_cast<int32_t>(offsetof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, ___visibleCount_2)); }
inline int32_t get_visibleCount_2() const { return ___visibleCount_2; }
inline int32_t* get_address_of_visibleCount_2() { return &___visibleCount_2; }
inline void set_visibleCount_2(int32_t value)
{
___visibleCount_2 = value;
}
};
// UnityEngine.SendMouseEvents_HitInfo
struct HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746
{
public:
// UnityEngine.GameObject UnityEngine.SendMouseEvents_HitInfo::target
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0;
// UnityEngine.Camera UnityEngine.SendMouseEvents_HitInfo::camera
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1;
public:
inline static int32_t get_offset_of_target_0() { return static_cast<int32_t>(offsetof(HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746, ___target_0)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_target_0() const { return ___target_0; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_target_0() { return &___target_0; }
inline void set_target_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___target_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___target_0), (void*)value);
}
inline static int32_t get_offset_of_camera_1() { return static_cast<int32_t>(offsetof(HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746, ___camera_1)); }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_camera_1() const { return ___camera_1; }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_camera_1() { return &___camera_1; }
inline void set_camera_1(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
___camera_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___camera_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_marshaled_pinvoke
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1;
};
// Native definition for COM marshalling of UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_marshaled_com
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1;
};
// UnityEngine.SocialPlatforms.GameCenter.GcAchievementData
struct GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55
{
public:
// System.String UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Identifier
String_t* ___m_Identifier_0;
// System.Double UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_PercentCompleted
double ___m_PercentCompleted_1;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Completed
int32_t ___m_Completed_2;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Hidden
int32_t ___m_Hidden_3;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_LastReportedDate
int32_t ___m_LastReportedDate_4;
public:
inline static int32_t get_offset_of_m_Identifier_0() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_Identifier_0)); }
inline String_t* get_m_Identifier_0() const { return ___m_Identifier_0; }
inline String_t** get_address_of_m_Identifier_0() { return &___m_Identifier_0; }
inline void set_m_Identifier_0(String_t* value)
{
___m_Identifier_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Identifier_0), (void*)value);
}
inline static int32_t get_offset_of_m_PercentCompleted_1() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_PercentCompleted_1)); }
inline double get_m_PercentCompleted_1() const { return ___m_PercentCompleted_1; }
inline double* get_address_of_m_PercentCompleted_1() { return &___m_PercentCompleted_1; }
inline void set_m_PercentCompleted_1(double value)
{
___m_PercentCompleted_1 = value;
}
inline static int32_t get_offset_of_m_Completed_2() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_Completed_2)); }
inline int32_t get_m_Completed_2() const { return ___m_Completed_2; }
inline int32_t* get_address_of_m_Completed_2() { return &___m_Completed_2; }
inline void set_m_Completed_2(int32_t value)
{
___m_Completed_2 = value;
}
inline static int32_t get_offset_of_m_Hidden_3() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_Hidden_3)); }
inline int32_t get_m_Hidden_3() const { return ___m_Hidden_3; }
inline int32_t* get_address_of_m_Hidden_3() { return &___m_Hidden_3; }
inline void set_m_Hidden_3(int32_t value)
{
___m_Hidden_3 = value;
}
inline static int32_t get_offset_of_m_LastReportedDate_4() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_LastReportedDate_4)); }
inline int32_t get_m_LastReportedDate_4() const { return ___m_LastReportedDate_4; }
inline int32_t* get_address_of_m_LastReportedDate_4() { return &___m_LastReportedDate_4; }
inline void set_m_LastReportedDate_4(int32_t value)
{
___m_LastReportedDate_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementData
struct GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_marshaled_pinvoke
{
char* ___m_Identifier_0;
double ___m_PercentCompleted_1;
int32_t ___m_Completed_2;
int32_t ___m_Hidden_3;
int32_t ___m_LastReportedDate_4;
};
// Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementData
struct GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_marshaled_com
{
Il2CppChar* ___m_Identifier_0;
double ___m_PercentCompleted_1;
int32_t ___m_Completed_2;
int32_t ___m_Hidden_3;
int32_t ___m_LastReportedDate_4;
};
// UnityEngine.SocialPlatforms.GameCenter.GcScoreData
struct GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A
{
public:
// System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Category
String_t* ___m_Category_0;
// System.UInt32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_ValueLow
uint32_t ___m_ValueLow_1;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_ValueHigh
int32_t ___m_ValueHigh_2;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Date
int32_t ___m_Date_3;
// System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_FormattedValue
String_t* ___m_FormattedValue_4;
// System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_PlayerID
String_t* ___m_PlayerID_5;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Rank
int32_t ___m_Rank_6;
public:
inline static int32_t get_offset_of_m_Category_0() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_Category_0)); }
inline String_t* get_m_Category_0() const { return ___m_Category_0; }
inline String_t** get_address_of_m_Category_0() { return &___m_Category_0; }
inline void set_m_Category_0(String_t* value)
{
___m_Category_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Category_0), (void*)value);
}
inline static int32_t get_offset_of_m_ValueLow_1() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_ValueLow_1)); }
inline uint32_t get_m_ValueLow_1() const { return ___m_ValueLow_1; }
inline uint32_t* get_address_of_m_ValueLow_1() { return &___m_ValueLow_1; }
inline void set_m_ValueLow_1(uint32_t value)
{
___m_ValueLow_1 = value;
}
inline static int32_t get_offset_of_m_ValueHigh_2() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_ValueHigh_2)); }
inline int32_t get_m_ValueHigh_2() const { return ___m_ValueHigh_2; }
inline int32_t* get_address_of_m_ValueHigh_2() { return &___m_ValueHigh_2; }
inline void set_m_ValueHigh_2(int32_t value)
{
___m_ValueHigh_2 = value;
}
inline static int32_t get_offset_of_m_Date_3() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_Date_3)); }
inline int32_t get_m_Date_3() const { return ___m_Date_3; }
inline int32_t* get_address_of_m_Date_3() { return &___m_Date_3; }
inline void set_m_Date_3(int32_t value)
{
___m_Date_3 = value;
}
inline static int32_t get_offset_of_m_FormattedValue_4() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_FormattedValue_4)); }
inline String_t* get_m_FormattedValue_4() const { return ___m_FormattedValue_4; }
inline String_t** get_address_of_m_FormattedValue_4() { return &___m_FormattedValue_4; }
inline void set_m_FormattedValue_4(String_t* value)
{
___m_FormattedValue_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FormattedValue_4), (void*)value);
}
inline static int32_t get_offset_of_m_PlayerID_5() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_PlayerID_5)); }
inline String_t* get_m_PlayerID_5() const { return ___m_PlayerID_5; }
inline String_t** get_address_of_m_PlayerID_5() { return &___m_PlayerID_5; }
inline void set_m_PlayerID_5(String_t* value)
{
___m_PlayerID_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PlayerID_5), (void*)value);
}
inline static int32_t get_offset_of_m_Rank_6() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_Rank_6)); }
inline int32_t get_m_Rank_6() const { return ___m_Rank_6; }
inline int32_t* get_address_of_m_Rank_6() { return &___m_Rank_6; }
inline void set_m_Rank_6(int32_t value)
{
___m_Rank_6 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcScoreData
struct GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_marshaled_pinvoke
{
char* ___m_Category_0;
uint32_t ___m_ValueLow_1;
int32_t ___m_ValueHigh_2;
int32_t ___m_Date_3;
char* ___m_FormattedValue_4;
char* ___m_PlayerID_5;
int32_t ___m_Rank_6;
};
// Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcScoreData
struct GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_marshaled_com
{
Il2CppChar* ___m_Category_0;
uint32_t ___m_ValueLow_1;
int32_t ___m_ValueHigh_2;
int32_t ___m_Date_3;
Il2CppChar* ___m_FormattedValue_4;
Il2CppChar* ___m_PlayerID_5;
int32_t ___m_Rank_6;
};
// UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A
{
public:
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_HighlightedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_PressedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_SelectedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_DisabledSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
public:
inline static int32_t get_offset_of_m_HighlightedSprite_0() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_HighlightedSprite_0)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_HighlightedSprite_0() const { return ___m_HighlightedSprite_0; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_HighlightedSprite_0() { return &___m_HighlightedSprite_0; }
inline void set_m_HighlightedSprite_0(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_HighlightedSprite_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HighlightedSprite_0), (void*)value);
}
inline static int32_t get_offset_of_m_PressedSprite_1() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_PressedSprite_1)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_PressedSprite_1() const { return ___m_PressedSprite_1; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_PressedSprite_1() { return &___m_PressedSprite_1; }
inline void set_m_PressedSprite_1(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_PressedSprite_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PressedSprite_1), (void*)value);
}
inline static int32_t get_offset_of_m_SelectedSprite_2() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_SelectedSprite_2)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_SelectedSprite_2() const { return ___m_SelectedSprite_2; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_SelectedSprite_2() { return &___m_SelectedSprite_2; }
inline void set_m_SelectedSprite_2(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_SelectedSprite_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectedSprite_2), (void*)value);
}
inline static int32_t get_offset_of_m_DisabledSprite_3() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_DisabledSprite_3)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_DisabledSprite_3() const { return ___m_DisabledSprite_3; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_DisabledSprite_3() { return &___m_DisabledSprite_3; }
inline void set_m_DisabledSprite_3(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_DisabledSprite_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DisabledSprite_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_marshaled_pinvoke
{
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
};
// Native definition for COM marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_marshaled_com
{
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
};
// 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;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>
struct Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA
{
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
ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA, ___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_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA, ___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_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA, ___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_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA, ___value_3)); }
inline ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 get_value_3() const { return ___value_3; }
inline ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___players_0), (void*)NULL);
}
};
// 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.Networking.NetworkBroadcastResult>
struct Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E
{
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
NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E, ___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_t199B9164AC346CAFF297C44D6DF2326A3634773E, ___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_t199B9164AC346CAFF297C44D6DF2326A3634773E, ___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_t199B9164AC346CAFF297C44D6DF2326A3634773E, ___value_3)); }
inline NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 get_value_3() const { return ___value_3; }
inline NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___serverAddress_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___broadcastData_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>
struct Entry_t8E09DFCC6D674230C233702F449DB762B53A2031
{
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
NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C ___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_t8E09DFCC6D674230C233702F449DB762B53A2031, ___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_t8E09DFCC6D674230C233702F449DB762B53A2031, ___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_t8E09DFCC6D674230C233702F449DB762B53A2031, ___key_2)); }
inline NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C get_key_2() const { return ___key_2; }
inline NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t8E09DFCC6D674230C233702F449DB762B53A2031, ___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<UnityEngine.Networking.NetworkInstanceId,System.Object>
struct Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A
{
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
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___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_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A, ___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_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A, ___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_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A, ___key_2)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_key_2() const { return ___key_2; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A, ___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<UnityEngine.Networking.NetworkSceneId,System.Object>
struct Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F
{
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
NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 ___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_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F, ___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_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F, ___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_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F, ___key_2)); }
inline NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 get_key_2() const { return ___key_2; }
inline NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F, ___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<UnityEngine.Networking.NetworkInstanceId>
struct Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE
{
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
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE, ___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_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE, ___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_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE, ___value_2)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_value_2() const { return ___value_2; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_value_2() { return &___value_2; }
inline void set_value_2(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___value_2 = 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.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>
struct KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF, ___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_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF, ___value_1)); }
inline ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 get_value_1() const { return ___value_1; }
inline ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___players_0), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>
struct KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___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_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___value_1)); }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_1() const { return ___value_1; }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->____value_0), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>
struct KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5, ___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_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5, ___value_1)); }
inline NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 get_value_1() const { return ___value_1; }
inline NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___serverAddress_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___broadcastData_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkHash128,System.Object>
struct KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C ___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_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0, ___key_0)); }
inline NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C get_key_0() const { return ___key_0; }
inline NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0, ___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<UnityEngine.Networking.NetworkInstanceId,System.Object>
struct KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___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_t69925B80A7ABE4984BCEE157E46E4EF60E47E013, ___key_0)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_key_0() const { return ___key_0; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013, ___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<UnityEngine.Networking.NetworkSceneId,System.Object>
struct KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 ___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_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8, ___key_0)); }
inline NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 get_key_0() const { return ___key_0; }
inline NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8, ___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.DateTimeOffset
struct DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85
{
public:
// System.DateTime System.DateTimeOffset::m_dateTime
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_dateTime_2;
// System.Int16 System.DateTimeOffset::m_offsetMinutes
int16_t ___m_offsetMinutes_3;
public:
inline static int32_t get_offset_of_m_dateTime_2() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85, ___m_dateTime_2)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_dateTime_2() const { return ___m_dateTime_2; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_dateTime_2() { return &___m_dateTime_2; }
inline void set_m_dateTime_2(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___m_dateTime_2 = value;
}
inline static int32_t get_offset_of_m_offsetMinutes_3() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85, ___m_offsetMinutes_3)); }
inline int16_t get_m_offsetMinutes_3() const { return ___m_offsetMinutes_3; }
inline int16_t* get_address_of_m_offsetMinutes_3() { return &___m_offsetMinutes_3; }
inline void set_m_offsetMinutes_3(int16_t value)
{
___m_offsetMinutes_3 = value;
}
};
struct DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields
{
public:
// System.DateTimeOffset System.DateTimeOffset::MinValue
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___MinValue_0;
// System.DateTimeOffset System.DateTimeOffset::MaxValue
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___MaxValue_1;
public:
inline static int32_t get_offset_of_MinValue_0() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields, ___MinValue_0)); }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 get_MinValue_0() const { return ___MinValue_0; }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * get_address_of_MinValue_0() { return &___MinValue_0; }
inline void set_MinValue_0(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value)
{
___MinValue_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields, ___MaxValue_1)); }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 get_MaxValue_1() const { return ___MaxValue_1; }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value)
{
___MaxValue_1 = 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.EventActivityOptions
struct EventActivityOptions_t929DC56692200C1AE8FD9194A2510B6149D69168
{
public:
// System.Int32 System.Diagnostics.Tracing.EventActivityOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventActivityOptions_t929DC56692200C1AE8FD9194A2510B6149D69168, ___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.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.Net.Sockets.Socket_WSABUF
struct WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE
{
public:
// System.Int32 System.Net.Sockets.Socket_WSABUF::len
int32_t ___len_0;
// System.IntPtr System.Net.Sockets.Socket_WSABUF::buf
intptr_t ___buf_1;
public:
inline static int32_t get_offset_of_len_0() { return static_cast<int32_t>(offsetof(WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE, ___len_0)); }
inline int32_t get_len_0() const { return ___len_0; }
inline int32_t* get_address_of_len_0() { return &___len_0; }
inline void set_len_0(int32_t value)
{
___len_0 = value;
}
inline static int32_t get_offset_of_buf_1() { return static_cast<int32_t>(offsetof(WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE, ___buf_1)); }
inline intptr_t get_buf_1() const { return ___buf_1; }
inline intptr_t* get_address_of_buf_1() { return &___buf_1; }
inline void set_buf_1(intptr_t value)
{
___buf_1 = value;
}
};
// System.Reflection.Assembly
struct Assembly_t : public RuntimeObject
{
public:
// System.IntPtr System.Reflection.Assembly::_mono_assembly
intptr_t ____mono_assembly_0;
// System.Reflection.Assembly_ResolveEventHolder System.Reflection.Assembly::resolve_event_holder
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
// System.Object System.Reflection.Assembly::_evidence
RuntimeObject * ____evidence_2;
// System.Object System.Reflection.Assembly::_minimum
RuntimeObject * ____minimum_3;
// System.Object System.Reflection.Assembly::_optional
RuntimeObject * ____optional_4;
// System.Object System.Reflection.Assembly::_refuse
RuntimeObject * ____refuse_5;
// System.Object System.Reflection.Assembly::_granted
RuntimeObject * ____granted_6;
// System.Object System.Reflection.Assembly::_denied
RuntimeObject * ____denied_7;
// System.Boolean System.Reflection.Assembly::fromByteArray
bool ___fromByteArray_8;
// System.String System.Reflection.Assembly::assemblyName
String_t* ___assemblyName_9;
public:
inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); }
inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; }
inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; }
inline void set__mono_assembly_0(intptr_t value)
{
____mono_assembly_0 = value;
}
inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); }
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; }
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; }
inline void set_resolve_event_holder_1(ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * value)
{
___resolve_event_holder_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___resolve_event_holder_1), (void*)value);
}
inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); }
inline RuntimeObject * get__evidence_2() const { return ____evidence_2; }
inline RuntimeObject ** get_address_of__evidence_2() { return &____evidence_2; }
inline void set__evidence_2(RuntimeObject * value)
{
____evidence_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____evidence_2), (void*)value);
}
inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); }
inline RuntimeObject * get__minimum_3() const { return ____minimum_3; }
inline RuntimeObject ** get_address_of__minimum_3() { return &____minimum_3; }
inline void set__minimum_3(RuntimeObject * value)
{
____minimum_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____minimum_3), (void*)value);
}
inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); }
inline RuntimeObject * get__optional_4() const { return ____optional_4; }
inline RuntimeObject ** get_address_of__optional_4() { return &____optional_4; }
inline void set__optional_4(RuntimeObject * value)
{
____optional_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____optional_4), (void*)value);
}
inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); }
inline RuntimeObject * get__refuse_5() const { return ____refuse_5; }
inline RuntimeObject ** get_address_of__refuse_5() { return &____refuse_5; }
inline void set__refuse_5(RuntimeObject * value)
{
____refuse_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____refuse_5), (void*)value);
}
inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); }
inline RuntimeObject * get__granted_6() const { return ____granted_6; }
inline RuntimeObject ** get_address_of__granted_6() { return &____granted_6; }
inline void set__granted_6(RuntimeObject * value)
{
____granted_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____granted_6), (void*)value);
}
inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); }
inline RuntimeObject * get__denied_7() const { return ____denied_7; }
inline RuntimeObject ** get_address_of__denied_7() { return &____denied_7; }
inline void set__denied_7(RuntimeObject * value)
{
____denied_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____denied_7), (void*)value);
}
inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); }
inline bool get_fromByteArray_8() const { return ___fromByteArray_8; }
inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; }
inline void set_fromByteArray_8(bool value)
{
___fromByteArray_8 = value;
}
inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); }
inline String_t* get_assemblyName_9() const { return ___assemblyName_9; }
inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; }
inline void set_assemblyName_9(String_t* value)
{
___assemblyName_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___assemblyName_9), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_pinvoke
{
intptr_t ____mono_assembly_0;
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
Il2CppIUnknown* ____evidence_2;
Il2CppIUnknown* ____minimum_3;
Il2CppIUnknown* ____optional_4;
Il2CppIUnknown* ____refuse_5;
Il2CppIUnknown* ____granted_6;
Il2CppIUnknown* ____denied_7;
int32_t ___fromByteArray_8;
char* ___assemblyName_9;
};
// Native definition for COM marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_com
{
intptr_t ____mono_assembly_0;
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
Il2CppIUnknown* ____evidence_2;
Il2CppIUnknown* ____minimum_3;
Il2CppIUnknown* ____optional_4;
Il2CppIUnknown* ____refuse_5;
Il2CppIUnknown* ____granted_6;
Il2CppIUnknown* ____denied_7;
int32_t ___fromByteArray_8;
Il2CppChar* ___assemblyName_9;
};
// 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.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E
{
public:
// System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::typedArgument
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ___typedArgument_0;
// System.Reflection.MemberInfo System.Reflection.CustomAttributeNamedArgument::memberInfo
MemberInfo_t * ___memberInfo_1;
public:
inline static int32_t get_offset_of_typedArgument_0() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, ___typedArgument_0)); }
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 get_typedArgument_0() const { return ___typedArgument_0; }
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * get_address_of_typedArgument_0() { return &___typedArgument_0; }
inline void set_typedArgument_0(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 value)
{
___typedArgument_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_memberInfo_1() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, ___memberInfo_1)); }
inline MemberInfo_t * get_memberInfo_1() const { return ___memberInfo_1; }
inline MemberInfo_t ** get_address_of_memberInfo_1() { return &___memberInfo_1; }
inline void set_memberInfo_1(MemberInfo_t * value)
{
___memberInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___memberInfo_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_marshaled_pinvoke
{
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_pinvoke ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_marshaled_com
{
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_com ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// 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;
}
};
// System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2
{
public:
// System.Threading.CancellationCallbackInfo System.Threading.CancellationTokenRegistration::m_callbackInfo
CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0;
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> System.Threading.CancellationTokenRegistration::m_registrationInfo
SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1;
public:
inline static int32_t get_offset_of_m_callbackInfo_0() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, ___m_callbackInfo_0)); }
inline CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * get_m_callbackInfo_0() const { return ___m_callbackInfo_0; }
inline CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 ** get_address_of_m_callbackInfo_0() { return &___m_callbackInfo_0; }
inline void set_m_callbackInfo_0(CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * value)
{
___m_callbackInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_callbackInfo_0), (void*)value);
}
inline static int32_t get_offset_of_m_registrationInfo_1() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, ___m_registrationInfo_1)); }
inline SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE get_m_registrationInfo_1() const { return ___m_registrationInfo_1; }
inline SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE * get_address_of_m_registrationInfo_1() { return &___m_registrationInfo_1; }
inline void set_m_registrationInfo_1(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE value)
{
___m_registrationInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_registrationInfo_1))->___m_source_0), (void*)NULL);
}
};
// Native definition for P/Invoke marshalling of System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_marshaled_pinvoke
{
CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1;
};
// Native definition for COM marshalling of System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_marshaled_com
{
CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1;
};
// System.Threading.StackCrawlMark
struct StackCrawlMark_t857D8DE506F124E737FD26BB7ADAAAAD13E4F943
{
public:
// System.Int32 System.Threading.StackCrawlMark::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StackCrawlMark_t857D8DE506F124E737FD26BB7ADAAAAD13E4F943, ___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.TimeSpan
struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4
{
public:
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_3;
public:
inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, ____ticks_3)); }
inline int64_t get__ticks_3() const { return ____ticks_3; }
inline int64_t* get_address_of__ticks_3() { return &____ticks_3; }
inline void set__ticks_3(int64_t value)
{
____ticks_3 = value;
}
};
struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___Zero_0;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaxValue_1;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MinValue_2;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
bool ____legacyConfigChecked_4;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
bool ____legacyMode_5;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___Zero_0)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_Zero_0() const { return ___Zero_0; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___Zero_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MaxValue_1)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaxValue_1() const { return ___MaxValue_1; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___MaxValue_1 = value;
}
inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MinValue_2)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MinValue_2() const { return ___MinValue_2; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MinValue_2() { return &___MinValue_2; }
inline void set_MinValue_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___MinValue_2 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyConfigChecked_4)); }
inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; }
inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; }
inline void set__legacyConfigChecked_4(bool value)
{
____legacyConfigChecked_4 = value;
}
inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyMode_5)); }
inline bool get__legacyMode_5() const { return ____legacyMode_5; }
inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; }
inline void set__legacyMode_5(bool value)
{
____legacyMode_5 = value;
}
};
// System.UInt64Enum
struct UInt64Enum_tEAD217F175F60689A664303784384DEF759D24C8
{
public:
// System.UInt64 System.UInt64Enum::value__
uint64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UInt64Enum_tEAD217F175F60689A664303784384DEF759D24C8, ___value___2)); }
inline uint64_t get_value___2() const { return ___value___2; }
inline uint64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint64_t value)
{
___value___2 = value;
}
};
// Unity.Collections.Allocator
struct Allocator_t62A091275262E7067EAAD565B67764FA877D58D6
{
public:
// System.Int32 Unity.Collections.Allocator::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Allocator_t62A091275262E7067EAAD565B67764FA877D58D6, ___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.CastHelper`1<System.Object>
struct CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF
{
public:
// T UnityEngine.CastHelper`1::t
RuntimeObject * ___t_0;
// System.IntPtr UnityEngine.CastHelper`1::onePointerFurtherThanT
intptr_t ___onePointerFurtherThanT_1;
public:
inline static int32_t get_offset_of_t_0() { return static_cast<int32_t>(offsetof(CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF, ___t_0)); }
inline RuntimeObject * get_t_0() const { return ___t_0; }
inline RuntimeObject ** get_address_of_t_0() { return &___t_0; }
inline void set_t_0(RuntimeObject * value)
{
___t_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___t_0), (void*)value);
}
inline static int32_t get_offset_of_onePointerFurtherThanT_1() { return static_cast<int32_t>(offsetof(CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF, ___onePointerFurtherThanT_1)); }
inline intptr_t get_onePointerFurtherThanT_1() const { return ___onePointerFurtherThanT_1; }
inline intptr_t* get_address_of_onePointerFurtherThanT_1() { return &___onePointerFurtherThanT_1; }
inline void set_onePointerFurtherThanT_1(intptr_t value)
{
___onePointerFurtherThanT_1 = value;
}
};
// UnityEngine.ContactPoint
struct ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515
{
public:
// UnityEngine.Vector3 UnityEngine.ContactPoint::m_Point
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.ContactPoint::m_Normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_1;
// System.Int32 UnityEngine.ContactPoint::m_ThisColliderInstanceID
int32_t ___m_ThisColliderInstanceID_2;
// System.Int32 UnityEngine.ContactPoint::m_OtherColliderInstanceID
int32_t ___m_OtherColliderInstanceID_3;
// System.Single UnityEngine.ContactPoint::m_Separation
float ___m_Separation_4;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_Point_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_Normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_ThisColliderInstanceID_2() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_ThisColliderInstanceID_2)); }
inline int32_t get_m_ThisColliderInstanceID_2() const { return ___m_ThisColliderInstanceID_2; }
inline int32_t* get_address_of_m_ThisColliderInstanceID_2() { return &___m_ThisColliderInstanceID_2; }
inline void set_m_ThisColliderInstanceID_2(int32_t value)
{
___m_ThisColliderInstanceID_2 = value;
}
inline static int32_t get_offset_of_m_OtherColliderInstanceID_3() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_OtherColliderInstanceID_3)); }
inline int32_t get_m_OtherColliderInstanceID_3() const { return ___m_OtherColliderInstanceID_3; }
inline int32_t* get_address_of_m_OtherColliderInstanceID_3() { return &___m_OtherColliderInstanceID_3; }
inline void set_m_OtherColliderInstanceID_3(int32_t value)
{
___m_OtherColliderInstanceID_3 = value;
}
inline static int32_t get_offset_of_m_Separation_4() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_Separation_4)); }
inline float get_m_Separation_4() const { return ___m_Separation_4; }
inline float* get_address_of_m_Separation_4() { return &___m_Separation_4; }
inline void set_m_Separation_4(float value)
{
___m_Separation_4 = value;
}
};
// UnityEngine.ContactPoint2D
struct ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0
{
public:
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_Point
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Point_0;
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_Normal
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Normal_1;
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_RelativeVelocity
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_RelativeVelocity_2;
// System.Single UnityEngine.ContactPoint2D::m_Separation
float ___m_Separation_3;
// System.Single UnityEngine.ContactPoint2D::m_NormalImpulse
float ___m_NormalImpulse_4;
// System.Single UnityEngine.ContactPoint2D::m_TangentImpulse
float ___m_TangentImpulse_5;
// System.Int32 UnityEngine.ContactPoint2D::m_Collider
int32_t ___m_Collider_6;
// System.Int32 UnityEngine.ContactPoint2D::m_OtherCollider
int32_t ___m_OtherCollider_7;
// System.Int32 UnityEngine.ContactPoint2D::m_Rigidbody
int32_t ___m_Rigidbody_8;
// System.Int32 UnityEngine.ContactPoint2D::m_OtherRigidbody
int32_t ___m_OtherRigidbody_9;
// System.Int32 UnityEngine.ContactPoint2D::m_Enabled
int32_t ___m_Enabled_10;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Point_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Point_0() const { return ___m_Point_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Normal_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_RelativeVelocity_2() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_RelativeVelocity_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_RelativeVelocity_2() const { return ___m_RelativeVelocity_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_RelativeVelocity_2() { return &___m_RelativeVelocity_2; }
inline void set_m_RelativeVelocity_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_RelativeVelocity_2 = value;
}
inline static int32_t get_offset_of_m_Separation_3() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Separation_3)); }
inline float get_m_Separation_3() const { return ___m_Separation_3; }
inline float* get_address_of_m_Separation_3() { return &___m_Separation_3; }
inline void set_m_Separation_3(float value)
{
___m_Separation_3 = value;
}
inline static int32_t get_offset_of_m_NormalImpulse_4() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_NormalImpulse_4)); }
inline float get_m_NormalImpulse_4() const { return ___m_NormalImpulse_4; }
inline float* get_address_of_m_NormalImpulse_4() { return &___m_NormalImpulse_4; }
inline void set_m_NormalImpulse_4(float value)
{
___m_NormalImpulse_4 = value;
}
inline static int32_t get_offset_of_m_TangentImpulse_5() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_TangentImpulse_5)); }
inline float get_m_TangentImpulse_5() const { return ___m_TangentImpulse_5; }
inline float* get_address_of_m_TangentImpulse_5() { return &___m_TangentImpulse_5; }
inline void set_m_TangentImpulse_5(float value)
{
___m_TangentImpulse_5 = value;
}
inline static int32_t get_offset_of_m_Collider_6() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Collider_6)); }
inline int32_t get_m_Collider_6() const { return ___m_Collider_6; }
inline int32_t* get_address_of_m_Collider_6() { return &___m_Collider_6; }
inline void set_m_Collider_6(int32_t value)
{
___m_Collider_6 = value;
}
inline static int32_t get_offset_of_m_OtherCollider_7() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_OtherCollider_7)); }
inline int32_t get_m_OtherCollider_7() const { return ___m_OtherCollider_7; }
inline int32_t* get_address_of_m_OtherCollider_7() { return &___m_OtherCollider_7; }
inline void set_m_OtherCollider_7(int32_t value)
{
___m_OtherCollider_7 = value;
}
inline static int32_t get_offset_of_m_Rigidbody_8() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Rigidbody_8)); }
inline int32_t get_m_Rigidbody_8() const { return ___m_Rigidbody_8; }
inline int32_t* get_address_of_m_Rigidbody_8() { return &___m_Rigidbody_8; }
inline void set_m_Rigidbody_8(int32_t value)
{
___m_Rigidbody_8 = value;
}
inline static int32_t get_offset_of_m_OtherRigidbody_9() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_OtherRigidbody_9)); }
inline int32_t get_m_OtherRigidbody_9() const { return ___m_OtherRigidbody_9; }
inline int32_t* get_address_of_m_OtherRigidbody_9() { return &___m_OtherRigidbody_9; }
inline void set_m_OtherRigidbody_9(int32_t value)
{
___m_OtherRigidbody_9 = value;
}
inline static int32_t get_offset_of_m_Enabled_10() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Enabled_10)); }
inline int32_t get_m_Enabled_10() const { return ___m_Enabled_10; }
inline int32_t* get_address_of_m_Enabled_10() { return &___m_Enabled_10; }
inline void set_m_Enabled_10(int32_t value)
{
___m_Enabled_10 = 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;
// System.Int32 UnityEngine.EventSystems.RaycastResult::displayIndex
int32_t ___displayIndex_10;
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;
}
inline static int32_t get_offset_of_displayIndex_10() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___displayIndex_10)); }
inline int32_t get_displayIndex_10() const { return ___displayIndex_10; }
inline int32_t* get_address_of_displayIndex_10() { return &___displayIndex_10; }
inline void set_displayIndex_10(int32_t value)
{
___displayIndex_10 = 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;
int32_t ___displayIndex_10;
};
// 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;
int32_t ___displayIndex_10;
};
// UnityEngine.Experimental.GlobalIllumination.FalloffType
struct FalloffType_t7875E80627449B25D89C044D11A2BA22AB4996E9
{
public:
// System.Byte UnityEngine.Experimental.GlobalIllumination.FalloffType::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FalloffType_t7875E80627449B25D89C044D11A2BA22AB4996E9, ___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;
}
};
// UnityEngine.Experimental.GlobalIllumination.LightMode
struct LightMode_t2EFF26B7FB14FB7D2ACF550C591375B5A95A854A
{
public:
// System.Byte UnityEngine.Experimental.GlobalIllumination.LightMode::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightMode_t2EFF26B7FB14FB7D2ACF550C591375B5A95A854A, ___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;
}
};
// UnityEngine.Experimental.GlobalIllumination.LightType
struct LightType_t684FE1E4FB26D1A27EFCDB36446F55984C414E88
{
public:
// System.Byte UnityEngine.Experimental.GlobalIllumination.LightType::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightType_t684FE1E4FB26D1A27EFCDB36446F55984C414E88, ___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;
}
};
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D
{
public:
// System.Type UnityEngine.Experimental.LowLevel.PlayerLoopSystem::type
Type_t * ___type_0;
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem[] UnityEngine.Experimental.LowLevel.PlayerLoopSystem::subSystemList
PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2* ___subSystemList_1;
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem_UpdateFunction UnityEngine.Experimental.LowLevel.PlayerLoopSystem::updateDelegate
UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 * ___updateDelegate_2;
// System.IntPtr UnityEngine.Experimental.LowLevel.PlayerLoopSystem::updateFunction
intptr_t ___updateFunction_3;
// System.IntPtr UnityEngine.Experimental.LowLevel.PlayerLoopSystem::loopConditionFunction
intptr_t ___loopConditionFunction_4;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___type_0)); }
inline Type_t * get_type_0() const { return ___type_0; }
inline Type_t ** get_address_of_type_0() { return &___type_0; }
inline void set_type_0(Type_t * value)
{
___type_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_0), (void*)value);
}
inline static int32_t get_offset_of_subSystemList_1() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___subSystemList_1)); }
inline PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2* get_subSystemList_1() const { return ___subSystemList_1; }
inline PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2** get_address_of_subSystemList_1() { return &___subSystemList_1; }
inline void set_subSystemList_1(PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2* value)
{
___subSystemList_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___subSystemList_1), (void*)value);
}
inline static int32_t get_offset_of_updateDelegate_2() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___updateDelegate_2)); }
inline UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 * get_updateDelegate_2() const { return ___updateDelegate_2; }
inline UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 ** get_address_of_updateDelegate_2() { return &___updateDelegate_2; }
inline void set_updateDelegate_2(UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 * value)
{
___updateDelegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___updateDelegate_2), (void*)value);
}
inline static int32_t get_offset_of_updateFunction_3() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___updateFunction_3)); }
inline intptr_t get_updateFunction_3() const { return ___updateFunction_3; }
inline intptr_t* get_address_of_updateFunction_3() { return &___updateFunction_3; }
inline void set_updateFunction_3(intptr_t value)
{
___updateFunction_3 = value;
}
inline static int32_t get_offset_of_loopConditionFunction_4() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___loopConditionFunction_4)); }
inline intptr_t get_loopConditionFunction_4() const { return ___loopConditionFunction_4; }
inline intptr_t* get_address_of_loopConditionFunction_4() { return &___loopConditionFunction_4; }
inline void set_loopConditionFunction_4(intptr_t value)
{
___loopConditionFunction_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_pinvoke
{
Type_t * ___type_0;
PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_pinvoke* ___subSystemList_1;
Il2CppMethodPointer ___updateDelegate_2;
intptr_t ___updateFunction_3;
intptr_t ___loopConditionFunction_4;
};
// Native definition for COM marshalling of UnityEngine.Experimental.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_com
{
Type_t * ___type_0;
PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_com* ___subSystemList_1;
Il2CppMethodPointer ___updateDelegate_2;
intptr_t ___updateFunction_3;
intptr_t ___loopConditionFunction_4;
};
// UnityEngine.Mesh_InternalVertexChannelType
struct InternalVertexChannelType_t6E7BF24C2E6B97B01F96625DBAF6A2CF402CFF9D
{
public:
// System.Int32 UnityEngine.Mesh_InternalVertexChannelType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InternalVertexChannelType_t6E7BF24C2E6B97B01F96625DBAF6A2CF402CFF9D, ___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.Networking.ClientScene_PendingOwner
struct PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369
{
public:
// UnityEngine.Networking.NetworkInstanceId UnityEngine.Networking.ClientScene_PendingOwner::netId
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___netId_0;
// System.Int16 UnityEngine.Networking.ClientScene_PendingOwner::playerControllerId
int16_t ___playerControllerId_1;
public:
inline static int32_t get_offset_of_netId_0() { return static_cast<int32_t>(offsetof(PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369, ___netId_0)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_netId_0() const { return ___netId_0; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_netId_0() { return &___netId_0; }
inline void set_netId_0(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___netId_0 = value;
}
inline static int32_t get_offset_of_playerControllerId_1() { return static_cast<int32_t>(offsetof(PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369, ___playerControllerId_1)); }
inline int16_t get_playerControllerId_1() const { return ___playerControllerId_1; }
inline int16_t* get_address_of_playerControllerId_1() { return &___playerControllerId_1; }
inline void set_playerControllerId_1(int16_t value)
{
___playerControllerId_1 = value;
}
};
// UnityEngine.Networking.NetworkClient_ConnectState
struct ConnectState_t36DA0E4226FF2170489050E79863831D4DBCB31A
{
public:
// System.Int32 UnityEngine.Networking.NetworkClient_ConnectState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConnectState_t36DA0E4226FF2170489050E79863831D4DBCB31A, ___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.Networking.NetworkMigrationManager_PendingPlayerInfo
struct PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC
{
public:
// UnityEngine.Networking.NetworkInstanceId UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo::netId
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___netId_0;
// System.Int16 UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo::playerControllerId
int16_t ___playerControllerId_1;
// UnityEngine.GameObject UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo::obj
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___obj_2;
public:
inline static int32_t get_offset_of_netId_0() { return static_cast<int32_t>(offsetof(PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC, ___netId_0)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_netId_0() const { return ___netId_0; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_netId_0() { return &___netId_0; }
inline void set_netId_0(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___netId_0 = value;
}
inline static int32_t get_offset_of_playerControllerId_1() { return static_cast<int32_t>(offsetof(PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC, ___playerControllerId_1)); }
inline int16_t get_playerControllerId_1() const { return ___playerControllerId_1; }
inline int16_t* get_address_of_playerControllerId_1() { return &___playerControllerId_1; }
inline void set_playerControllerId_1(int16_t value)
{
___playerControllerId_1 = value;
}
inline static int32_t get_offset_of_obj_2() { return static_cast<int32_t>(offsetof(PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC, ___obj_2)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_obj_2() const { return ___obj_2; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_obj_2() { return &___obj_2; }
inline void set_obj_2(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___obj_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.NetworkMigrationManager/PendingPlayerInfo
struct PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_marshaled_pinvoke
{
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___netId_0;
int16_t ___playerControllerId_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___obj_2;
};
// Native definition for COM marshalling of UnityEngine.Networking.NetworkMigrationManager/PendingPlayerInfo
struct PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_marshaled_com
{
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___netId_0;
int16_t ___playerControllerId_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___obj_2;
};
// UnityEngine.Networking.NetworkSystem.PeerInfoPlayer
struct PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B
{
public:
// UnityEngine.Networking.NetworkInstanceId UnityEngine.Networking.NetworkSystem.PeerInfoPlayer::netId
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___netId_0;
// System.Int16 UnityEngine.Networking.NetworkSystem.PeerInfoPlayer::playerControllerId
int16_t ___playerControllerId_1;
public:
inline static int32_t get_offset_of_netId_0() { return static_cast<int32_t>(offsetof(PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B, ___netId_0)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_netId_0() const { return ___netId_0; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_netId_0() { return &___netId_0; }
inline void set_netId_0(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___netId_0 = value;
}
inline static int32_t get_offset_of_playerControllerId_1() { return static_cast<int32_t>(offsetof(PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B, ___playerControllerId_1)); }
inline int16_t get_playerControllerId_1() const { return ___playerControllerId_1; }
inline int16_t* get_address_of_playerControllerId_1() { return &___playerControllerId_1; }
inline void set_playerControllerId_1(int16_t value)
{
___playerControllerId_1 = 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.Plane
struct Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED
{
public:
// UnityEngine.Vector3 UnityEngine.Plane::m_Normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_0;
// System.Single UnityEngine.Plane::m_Distance
float ___m_Distance_1;
public:
inline static int32_t get_offset_of_m_Normal_0() { return static_cast<int32_t>(offsetof(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED, ___m_Normal_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_0() const { return ___m_Normal_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_0() { return &___m_Normal_0; }
inline void set_m_Normal_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Normal_0 = value;
}
inline static int32_t get_offset_of_m_Distance_1() { return static_cast<int32_t>(offsetof(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED, ___m_Distance_1)); }
inline float get_m_Distance_1() const { return ___m_Distance_1; }
inline float* get_address_of_m_Distance_1() { return &___m_Distance_1; }
inline void set_m_Distance_1(float value)
{
___m_Distance_1 = value;
}
};
// UnityEngine.RaycastHit
struct RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3
{
public:
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_1;
// System.UInt32 UnityEngine.RaycastHit::m_FaceID
uint32_t ___m_FaceID_2;
// System.Single UnityEngine.RaycastHit::m_Distance
float ___m_Distance_3;
// UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_UV_4;
// System.Int32 UnityEngine.RaycastHit::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Point_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_FaceID_2() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_FaceID_2)); }
inline uint32_t get_m_FaceID_2() const { return ___m_FaceID_2; }
inline uint32_t* get_address_of_m_FaceID_2() { return &___m_FaceID_2; }
inline void set_m_FaceID_2(uint32_t value)
{
___m_FaceID_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___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_UV_4() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_UV_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_UV_4() const { return ___m_UV_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_UV_4() { return &___m_UV_4; }
inline void set_m_UV_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_UV_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___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.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.Rendering.VertexAttribute
struct VertexAttribute_t2D79DF64001C55DA72AC86CE8946098970E8194D
{
public:
// System.Int32 UnityEngine.Rendering.VertexAttribute::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VertexAttribute_t2D79DF64001C55DA72AC86CE8946098970E8194D, ___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.TextAnchor
struct TextAnchor_tEC19034D476659A5E05366C63564F34DD30E7C57
{
public:
// System.Int32 UnityEngine.TextAnchor::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextAnchor_tEC19034D476659A5E05366C63564F34DD30E7C57, ___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.TouchPhase
struct TouchPhase_t7E9CEC3DD059E32F847242513BD6CE30866AB2A6
{
public:
// System.Int32 UnityEngine.TouchPhase::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TouchPhase_t7E9CEC3DD059E32F847242513BD6CE30866AB2A6, ___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.TouchType
struct TouchType_tBBD83025576FC017B10484014B5C396613A02B8E
{
public:
// System.Int32 UnityEngine.TouchType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TouchType_tBBD83025576FC017B10484014B5C396613A02B8E, ___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.UI.ColorBlock
struct ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA
{
public:
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_NormalColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_NormalColor_0;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_HighlightedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_HighlightedColor_1;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_PressedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_PressedColor_2;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_SelectedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_SelectedColor_3;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_DisabledColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_DisabledColor_4;
// System.Single UnityEngine.UI.ColorBlock::m_ColorMultiplier
float ___m_ColorMultiplier_5;
// System.Single UnityEngine.UI.ColorBlock::m_FadeDuration
float ___m_FadeDuration_6;
public:
inline static int32_t get_offset_of_m_NormalColor_0() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_NormalColor_0)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_NormalColor_0() const { return ___m_NormalColor_0; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_NormalColor_0() { return &___m_NormalColor_0; }
inline void set_m_NormalColor_0(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_NormalColor_0 = value;
}
inline static int32_t get_offset_of_m_HighlightedColor_1() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_HighlightedColor_1)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_HighlightedColor_1() const { return ___m_HighlightedColor_1; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_HighlightedColor_1() { return &___m_HighlightedColor_1; }
inline void set_m_HighlightedColor_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_HighlightedColor_1 = value;
}
inline static int32_t get_offset_of_m_PressedColor_2() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_PressedColor_2)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_PressedColor_2() const { return ___m_PressedColor_2; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_PressedColor_2() { return &___m_PressedColor_2; }
inline void set_m_PressedColor_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_PressedColor_2 = value;
}
inline static int32_t get_offset_of_m_SelectedColor_3() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_SelectedColor_3)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_SelectedColor_3() const { return ___m_SelectedColor_3; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_SelectedColor_3() { return &___m_SelectedColor_3; }
inline void set_m_SelectedColor_3(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_SelectedColor_3 = value;
}
inline static int32_t get_offset_of_m_DisabledColor_4() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_DisabledColor_4)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_DisabledColor_4() const { return ___m_DisabledColor_4; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_DisabledColor_4() { return &___m_DisabledColor_4; }
inline void set_m_DisabledColor_4(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_DisabledColor_4 = value;
}
inline static int32_t get_offset_of_m_ColorMultiplier_5() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_ColorMultiplier_5)); }
inline float get_m_ColorMultiplier_5() const { return ___m_ColorMultiplier_5; }
inline float* get_address_of_m_ColorMultiplier_5() { return &___m_ColorMultiplier_5; }
inline void set_m_ColorMultiplier_5(float value)
{
___m_ColorMultiplier_5 = value;
}
inline static int32_t get_offset_of_m_FadeDuration_6() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_FadeDuration_6)); }
inline float get_m_FadeDuration_6() const { return ___m_FadeDuration_6; }
inline float* get_address_of_m_FadeDuration_6() { return &___m_FadeDuration_6; }
inline void set_m_FadeDuration_6(float value)
{
___m_FadeDuration_6 = value;
}
};
// UnityEngine.UI.Navigation_Mode
struct Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26
{
public:
// System.Int32 UnityEngine.UI.Navigation_Mode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26, ___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.UI.Selectable_Transition
struct Transition_tA9261C608B54C52324084A0B080E7A3E0548A181
{
public:
// System.Int32 UnityEngine.UI.Selectable_Transition::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Transition_tA9261C608B54C52324084A0B080E7A3E0548A181, ___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.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;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>
struct Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0
{
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_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___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_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___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_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___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_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___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.UInt64Enum,System.Object>
struct Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91
{
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_tB17A20FF297E1D4E33181E36238F550A443DFD91, ___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_tB17A20FF297E1D4E33181E36238F550A443DFD91, ___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_tB17A20FF297E1D4E33181E36238F550A443DFD91, ___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_tB17A20FF297E1D4E33181E36238F550A443DFD91, ___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.Object,System.Int32Enum>
struct KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5
{
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_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5, ___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_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5, ___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.UInt64Enum,System.Object>
struct KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA
{
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_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA, ___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_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA, ___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.Diagnostics.Tracing.EventSource_EventMetadata
struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B
{
public:
// System.Diagnostics.Tracing.EventDescriptor System.Diagnostics.Tracing.EventSource_EventMetadata::Descriptor
EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0;
// System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventSource_EventMetadata::Tags
int32_t ___Tags_1;
// System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::EnabledForAnyListener
bool ___EnabledForAnyListener_2;
// System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::EnabledForETW
bool ___EnabledForETW_3;
// System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::HasRelatedActivityID
bool ___HasRelatedActivityID_4;
// System.Byte System.Diagnostics.Tracing.EventSource_EventMetadata::TriggersActivityTracking
uint8_t ___TriggersActivityTracking_5;
// System.String System.Diagnostics.Tracing.EventSource_EventMetadata::Name
String_t* ___Name_6;
// System.String System.Diagnostics.Tracing.EventSource_EventMetadata::Message
String_t* ___Message_7;
// System.Reflection.ParameterInfo[] System.Diagnostics.Tracing.EventSource_EventMetadata::Parameters
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* ___Parameters_8;
// System.Diagnostics.Tracing.TraceLoggingEventTypes System.Diagnostics.Tracing.EventSource_EventMetadata::TraceLoggingEventTypes
TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9;
// System.Diagnostics.Tracing.EventActivityOptions System.Diagnostics.Tracing.EventSource_EventMetadata::ActivityOptions
int32_t ___ActivityOptions_10;
public:
inline static int32_t get_offset_of_Descriptor_0() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Descriptor_0)); }
inline EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E get_Descriptor_0() const { return ___Descriptor_0; }
inline EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E * get_address_of_Descriptor_0() { return &___Descriptor_0; }
inline void set_Descriptor_0(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E value)
{
___Descriptor_0 = value;
}
inline static int32_t get_offset_of_Tags_1() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Tags_1)); }
inline int32_t get_Tags_1() const { return ___Tags_1; }
inline int32_t* get_address_of_Tags_1() { return &___Tags_1; }
inline void set_Tags_1(int32_t value)
{
___Tags_1 = value;
}
inline static int32_t get_offset_of_EnabledForAnyListener_2() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___EnabledForAnyListener_2)); }
inline bool get_EnabledForAnyListener_2() const { return ___EnabledForAnyListener_2; }
inline bool* get_address_of_EnabledForAnyListener_2() { return &___EnabledForAnyListener_2; }
inline void set_EnabledForAnyListener_2(bool value)
{
___EnabledForAnyListener_2 = value;
}
inline static int32_t get_offset_of_EnabledForETW_3() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___EnabledForETW_3)); }
inline bool get_EnabledForETW_3() const { return ___EnabledForETW_3; }
inline bool* get_address_of_EnabledForETW_3() { return &___EnabledForETW_3; }
inline void set_EnabledForETW_3(bool value)
{
___EnabledForETW_3 = value;
}
inline static int32_t get_offset_of_HasRelatedActivityID_4() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___HasRelatedActivityID_4)); }
inline bool get_HasRelatedActivityID_4() const { return ___HasRelatedActivityID_4; }
inline bool* get_address_of_HasRelatedActivityID_4() { return &___HasRelatedActivityID_4; }
inline void set_HasRelatedActivityID_4(bool value)
{
___HasRelatedActivityID_4 = value;
}
inline static int32_t get_offset_of_TriggersActivityTracking_5() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___TriggersActivityTracking_5)); }
inline uint8_t get_TriggersActivityTracking_5() const { return ___TriggersActivityTracking_5; }
inline uint8_t* get_address_of_TriggersActivityTracking_5() { return &___TriggersActivityTracking_5; }
inline void set_TriggersActivityTracking_5(uint8_t value)
{
___TriggersActivityTracking_5 = value;
}
inline static int32_t get_offset_of_Name_6() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Name_6)); }
inline String_t* get_Name_6() const { return ___Name_6; }
inline String_t** get_address_of_Name_6() { return &___Name_6; }
inline void set_Name_6(String_t* value)
{
___Name_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Name_6), (void*)value);
}
inline static int32_t get_offset_of_Message_7() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Message_7)); }
inline String_t* get_Message_7() const { return ___Message_7; }
inline String_t** get_address_of_Message_7() { return &___Message_7; }
inline void set_Message_7(String_t* value)
{
___Message_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Message_7), (void*)value);
}
inline static int32_t get_offset_of_Parameters_8() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Parameters_8)); }
inline ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* get_Parameters_8() const { return ___Parameters_8; }
inline ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694** get_address_of_Parameters_8() { return &___Parameters_8; }
inline void set_Parameters_8(ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* value)
{
___Parameters_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Parameters_8), (void*)value);
}
inline static int32_t get_offset_of_TraceLoggingEventTypes_9() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___TraceLoggingEventTypes_9)); }
inline TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * get_TraceLoggingEventTypes_9() const { return ___TraceLoggingEventTypes_9; }
inline TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 ** get_address_of_TraceLoggingEventTypes_9() { return &___TraceLoggingEventTypes_9; }
inline void set_TraceLoggingEventTypes_9(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * value)
{
___TraceLoggingEventTypes_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TraceLoggingEventTypes_9), (void*)value);
}
inline static int32_t get_offset_of_ActivityOptions_10() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___ActivityOptions_10)); }
inline int32_t get_ActivityOptions_10() const { return ___ActivityOptions_10; }
inline int32_t* get_address_of_ActivityOptions_10() { return &___ActivityOptions_10; }
inline void set_ActivityOptions_10(int32_t value)
{
___ActivityOptions_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Diagnostics.Tracing.EventSource/EventMetadata
struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_pinvoke
{
EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0;
int32_t ___Tags_1;
int32_t ___EnabledForAnyListener_2;
int32_t ___EnabledForETW_3;
int32_t ___HasRelatedActivityID_4;
uint8_t ___TriggersActivityTracking_5;
char* ___Name_6;
char* ___Message_7;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke** ___Parameters_8;
TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9;
int32_t ___ActivityOptions_10;
};
// Native definition for COM marshalling of System.Diagnostics.Tracing.EventSource/EventMetadata
struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_com
{
EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0;
int32_t ___Tags_1;
int32_t ___EnabledForAnyListener_2;
int32_t ___EnabledForETW_3;
int32_t ___HasRelatedActivityID_4;
uint8_t ___TriggersActivityTracking_5;
Il2CppChar* ___Name_6;
Il2CppChar* ___Message_7;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com** ___Parameters_8;
TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9;
int32_t ___ActivityOptions_10;
};
// 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);
}
};
// Unity.Collections.NativeArray`1<System.Int32>
struct NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>
struct NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.Plane>
struct NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility>
struct NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// UnityEngine.Component
struct Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.Experimental.GlobalIllumination.LightDataGI
struct LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2
{
public:
// System.Int32 UnityEngine.Experimental.GlobalIllumination.LightDataGI::instanceID
int32_t ___instanceID_0;
// UnityEngine.Experimental.GlobalIllumination.LinearColor UnityEngine.Experimental.GlobalIllumination.LightDataGI::color
LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD ___color_1;
// UnityEngine.Experimental.GlobalIllumination.LinearColor UnityEngine.Experimental.GlobalIllumination.LightDataGI::indirectColor
LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD ___indirectColor_2;
// UnityEngine.Quaternion UnityEngine.Experimental.GlobalIllumination.LightDataGI::orientation
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___orientation_3;
// UnityEngine.Vector3 UnityEngine.Experimental.GlobalIllumination.LightDataGI::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_4;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::range
float ___range_5;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::coneAngle
float ___coneAngle_6;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::innerConeAngle
float ___innerConeAngle_7;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::shape0
float ___shape0_8;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::shape1
float ___shape1_9;
// UnityEngine.Experimental.GlobalIllumination.LightType UnityEngine.Experimental.GlobalIllumination.LightDataGI::type
uint8_t ___type_10;
// UnityEngine.Experimental.GlobalIllumination.LightMode UnityEngine.Experimental.GlobalIllumination.LightDataGI::mode
uint8_t ___mode_11;
// System.Byte UnityEngine.Experimental.GlobalIllumination.LightDataGI::shadow
uint8_t ___shadow_12;
// UnityEngine.Experimental.GlobalIllumination.FalloffType UnityEngine.Experimental.GlobalIllumination.LightDataGI::falloff
uint8_t ___falloff_13;
public:
inline static int32_t get_offset_of_instanceID_0() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___instanceID_0)); }
inline int32_t get_instanceID_0() const { return ___instanceID_0; }
inline int32_t* get_address_of_instanceID_0() { return &___instanceID_0; }
inline void set_instanceID_0(int32_t value)
{
___instanceID_0 = value;
}
inline static int32_t get_offset_of_color_1() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___color_1)); }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD get_color_1() const { return ___color_1; }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD * get_address_of_color_1() { return &___color_1; }
inline void set_color_1(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD value)
{
___color_1 = value;
}
inline static int32_t get_offset_of_indirectColor_2() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___indirectColor_2)); }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD get_indirectColor_2() const { return ___indirectColor_2; }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD * get_address_of_indirectColor_2() { return &___indirectColor_2; }
inline void set_indirectColor_2(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD value)
{
___indirectColor_2 = value;
}
inline static int32_t get_offset_of_orientation_3() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___orientation_3)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_orientation_3() const { return ___orientation_3; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_orientation_3() { return &___orientation_3; }
inline void set_orientation_3(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___orientation_3 = value;
}
inline static int32_t get_offset_of_position_4() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___position_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_4() const { return ___position_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_4() { return &___position_4; }
inline void set_position_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_4 = value;
}
inline static int32_t get_offset_of_range_5() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___range_5)); }
inline float get_range_5() const { return ___range_5; }
inline float* get_address_of_range_5() { return &___range_5; }
inline void set_range_5(float value)
{
___range_5 = value;
}
inline static int32_t get_offset_of_coneAngle_6() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___coneAngle_6)); }
inline float get_coneAngle_6() const { return ___coneAngle_6; }
inline float* get_address_of_coneAngle_6() { return &___coneAngle_6; }
inline void set_coneAngle_6(float value)
{
___coneAngle_6 = value;
}
inline static int32_t get_offset_of_innerConeAngle_7() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___innerConeAngle_7)); }
inline float get_innerConeAngle_7() const { return ___innerConeAngle_7; }
inline float* get_address_of_innerConeAngle_7() { return &___innerConeAngle_7; }
inline void set_innerConeAngle_7(float value)
{
___innerConeAngle_7 = value;
}
inline static int32_t get_offset_of_shape0_8() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___shape0_8)); }
inline float get_shape0_8() const { return ___shape0_8; }
inline float* get_address_of_shape0_8() { return &___shape0_8; }
inline void set_shape0_8(float value)
{
___shape0_8 = value;
}
inline static int32_t get_offset_of_shape1_9() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___shape1_9)); }
inline float get_shape1_9() const { return ___shape1_9; }
inline float* get_address_of_shape1_9() { return &___shape1_9; }
inline void set_shape1_9(float value)
{
___shape1_9 = value;
}
inline static int32_t get_offset_of_type_10() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___type_10)); }
inline uint8_t get_type_10() const { return ___type_10; }
inline uint8_t* get_address_of_type_10() { return &___type_10; }
inline void set_type_10(uint8_t value)
{
___type_10 = value;
}
inline static int32_t get_offset_of_mode_11() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___mode_11)); }
inline uint8_t get_mode_11() const { return ___mode_11; }
inline uint8_t* get_address_of_mode_11() { return &___mode_11; }
inline void set_mode_11(uint8_t value)
{
___mode_11 = value;
}
inline static int32_t get_offset_of_shadow_12() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___shadow_12)); }
inline uint8_t get_shadow_12() const { return ___shadow_12; }
inline uint8_t* get_address_of_shadow_12() { return &___shadow_12; }
inline void set_shadow_12(uint8_t value)
{
___shadow_12 = value;
}
inline static int32_t get_offset_of_falloff_13() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___falloff_13)); }
inline uint8_t get_falloff_13() const { return ___falloff_13; }
inline uint8_t* get_address_of_falloff_13() { return &___falloff_13; }
inline void set_falloff_13(uint8_t value)
{
___falloff_13 = value;
}
};
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.Mesh
struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.Networking.NetworkClient
struct NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F : public RuntimeObject
{
public:
// System.Type UnityEngine.Networking.NetworkClient::m_NetworkConnectionClass
Type_t * ___m_NetworkConnectionClass_0;
// UnityEngine.Networking.HostTopology UnityEngine.Networking.NetworkClient::m_HostTopology
HostTopology_tD01D253330A0DAA736EDFC67EE9585C363FA9B0E * ___m_HostTopology_4;
// System.Int32 UnityEngine.Networking.NetworkClient::m_HostPort
int32_t ___m_HostPort_5;
// System.Boolean UnityEngine.Networking.NetworkClient::m_UseSimulator
bool ___m_UseSimulator_6;
// System.Int32 UnityEngine.Networking.NetworkClient::m_SimulatedLatency
int32_t ___m_SimulatedLatency_7;
// System.Single UnityEngine.Networking.NetworkClient::m_PacketLoss
float ___m_PacketLoss_8;
// System.String UnityEngine.Networking.NetworkClient::m_ServerIp
String_t* ___m_ServerIp_9;
// System.Int32 UnityEngine.Networking.NetworkClient::m_ServerPort
int32_t ___m_ServerPort_10;
// System.Int32 UnityEngine.Networking.NetworkClient::m_ClientId
int32_t ___m_ClientId_11;
// System.Int32 UnityEngine.Networking.NetworkClient::m_ClientConnectionId
int32_t ___m_ClientConnectionId_12;
// System.Int32 UnityEngine.Networking.NetworkClient::m_StatResetTime
int32_t ___m_StatResetTime_13;
// System.Net.EndPoint UnityEngine.Networking.NetworkClient::m_RemoteEndPoint
EndPoint_tD87FCEF2780A951E8CE8D808C345FBF2C088D980 * ___m_RemoteEndPoint_14;
// UnityEngine.Networking.NetworkMessageHandlers UnityEngine.Networking.NetworkClient::m_MessageHandlers
NetworkMessageHandlers_tA7BB2E51BDBD8ECE976AD44F1B634F40EA9807D4 * ___m_MessageHandlers_16;
// UnityEngine.Networking.NetworkConnection UnityEngine.Networking.NetworkClient::m_Connection
NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * ___m_Connection_17;
// System.Byte[] UnityEngine.Networking.NetworkClient::m_MsgBuffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_MsgBuffer_18;
// UnityEngine.Networking.NetworkReader UnityEngine.Networking.NetworkClient::m_MsgReader
NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 * ___m_MsgReader_19;
// UnityEngine.Networking.NetworkClient_ConnectState UnityEngine.Networking.NetworkClient::m_AsyncConnect
int32_t ___m_AsyncConnect_20;
// System.String UnityEngine.Networking.NetworkClient::m_RequestedServerHost
String_t* ___m_RequestedServerHost_21;
public:
inline static int32_t get_offset_of_m_NetworkConnectionClass_0() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_NetworkConnectionClass_0)); }
inline Type_t * get_m_NetworkConnectionClass_0() const { return ___m_NetworkConnectionClass_0; }
inline Type_t ** get_address_of_m_NetworkConnectionClass_0() { return &___m_NetworkConnectionClass_0; }
inline void set_m_NetworkConnectionClass_0(Type_t * value)
{
___m_NetworkConnectionClass_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_NetworkConnectionClass_0), (void*)value);
}
inline static int32_t get_offset_of_m_HostTopology_4() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_HostTopology_4)); }
inline HostTopology_tD01D253330A0DAA736EDFC67EE9585C363FA9B0E * get_m_HostTopology_4() const { return ___m_HostTopology_4; }
inline HostTopology_tD01D253330A0DAA736EDFC67EE9585C363FA9B0E ** get_address_of_m_HostTopology_4() { return &___m_HostTopology_4; }
inline void set_m_HostTopology_4(HostTopology_tD01D253330A0DAA736EDFC67EE9585C363FA9B0E * value)
{
___m_HostTopology_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HostTopology_4), (void*)value);
}
inline static int32_t get_offset_of_m_HostPort_5() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_HostPort_5)); }
inline int32_t get_m_HostPort_5() const { return ___m_HostPort_5; }
inline int32_t* get_address_of_m_HostPort_5() { return &___m_HostPort_5; }
inline void set_m_HostPort_5(int32_t value)
{
___m_HostPort_5 = value;
}
inline static int32_t get_offset_of_m_UseSimulator_6() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_UseSimulator_6)); }
inline bool get_m_UseSimulator_6() const { return ___m_UseSimulator_6; }
inline bool* get_address_of_m_UseSimulator_6() { return &___m_UseSimulator_6; }
inline void set_m_UseSimulator_6(bool value)
{
___m_UseSimulator_6 = value;
}
inline static int32_t get_offset_of_m_SimulatedLatency_7() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_SimulatedLatency_7)); }
inline int32_t get_m_SimulatedLatency_7() const { return ___m_SimulatedLatency_7; }
inline int32_t* get_address_of_m_SimulatedLatency_7() { return &___m_SimulatedLatency_7; }
inline void set_m_SimulatedLatency_7(int32_t value)
{
___m_SimulatedLatency_7 = value;
}
inline static int32_t get_offset_of_m_PacketLoss_8() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_PacketLoss_8)); }
inline float get_m_PacketLoss_8() const { return ___m_PacketLoss_8; }
inline float* get_address_of_m_PacketLoss_8() { return &___m_PacketLoss_8; }
inline void set_m_PacketLoss_8(float value)
{
___m_PacketLoss_8 = value;
}
inline static int32_t get_offset_of_m_ServerIp_9() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_ServerIp_9)); }
inline String_t* get_m_ServerIp_9() const { return ___m_ServerIp_9; }
inline String_t** get_address_of_m_ServerIp_9() { return &___m_ServerIp_9; }
inline void set_m_ServerIp_9(String_t* value)
{
___m_ServerIp_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ServerIp_9), (void*)value);
}
inline static int32_t get_offset_of_m_ServerPort_10() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_ServerPort_10)); }
inline int32_t get_m_ServerPort_10() const { return ___m_ServerPort_10; }
inline int32_t* get_address_of_m_ServerPort_10() { return &___m_ServerPort_10; }
inline void set_m_ServerPort_10(int32_t value)
{
___m_ServerPort_10 = value;
}
inline static int32_t get_offset_of_m_ClientId_11() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_ClientId_11)); }
inline int32_t get_m_ClientId_11() const { return ___m_ClientId_11; }
inline int32_t* get_address_of_m_ClientId_11() { return &___m_ClientId_11; }
inline void set_m_ClientId_11(int32_t value)
{
___m_ClientId_11 = value;
}
inline static int32_t get_offset_of_m_ClientConnectionId_12() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_ClientConnectionId_12)); }
inline int32_t get_m_ClientConnectionId_12() const { return ___m_ClientConnectionId_12; }
inline int32_t* get_address_of_m_ClientConnectionId_12() { return &___m_ClientConnectionId_12; }
inline void set_m_ClientConnectionId_12(int32_t value)
{
___m_ClientConnectionId_12 = value;
}
inline static int32_t get_offset_of_m_StatResetTime_13() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_StatResetTime_13)); }
inline int32_t get_m_StatResetTime_13() const { return ___m_StatResetTime_13; }
inline int32_t* get_address_of_m_StatResetTime_13() { return &___m_StatResetTime_13; }
inline void set_m_StatResetTime_13(int32_t value)
{
___m_StatResetTime_13 = value;
}
inline static int32_t get_offset_of_m_RemoteEndPoint_14() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_RemoteEndPoint_14)); }
inline EndPoint_tD87FCEF2780A951E8CE8D808C345FBF2C088D980 * get_m_RemoteEndPoint_14() const { return ___m_RemoteEndPoint_14; }
inline EndPoint_tD87FCEF2780A951E8CE8D808C345FBF2C088D980 ** get_address_of_m_RemoteEndPoint_14() { return &___m_RemoteEndPoint_14; }
inline void set_m_RemoteEndPoint_14(EndPoint_tD87FCEF2780A951E8CE8D808C345FBF2C088D980 * value)
{
___m_RemoteEndPoint_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RemoteEndPoint_14), (void*)value);
}
inline static int32_t get_offset_of_m_MessageHandlers_16() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_MessageHandlers_16)); }
inline NetworkMessageHandlers_tA7BB2E51BDBD8ECE976AD44F1B634F40EA9807D4 * get_m_MessageHandlers_16() const { return ___m_MessageHandlers_16; }
inline NetworkMessageHandlers_tA7BB2E51BDBD8ECE976AD44F1B634F40EA9807D4 ** get_address_of_m_MessageHandlers_16() { return &___m_MessageHandlers_16; }
inline void set_m_MessageHandlers_16(NetworkMessageHandlers_tA7BB2E51BDBD8ECE976AD44F1B634F40EA9807D4 * value)
{
___m_MessageHandlers_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MessageHandlers_16), (void*)value);
}
inline static int32_t get_offset_of_m_Connection_17() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_Connection_17)); }
inline NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * get_m_Connection_17() const { return ___m_Connection_17; }
inline NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA ** get_address_of_m_Connection_17() { return &___m_Connection_17; }
inline void set_m_Connection_17(NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * value)
{
___m_Connection_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Connection_17), (void*)value);
}
inline static int32_t get_offset_of_m_MsgBuffer_18() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_MsgBuffer_18)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_MsgBuffer_18() const { return ___m_MsgBuffer_18; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_MsgBuffer_18() { return &___m_MsgBuffer_18; }
inline void set_m_MsgBuffer_18(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___m_MsgBuffer_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MsgBuffer_18), (void*)value);
}
inline static int32_t get_offset_of_m_MsgReader_19() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_MsgReader_19)); }
inline NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 * get_m_MsgReader_19() const { return ___m_MsgReader_19; }
inline NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 ** get_address_of_m_MsgReader_19() { return &___m_MsgReader_19; }
inline void set_m_MsgReader_19(NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 * value)
{
___m_MsgReader_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MsgReader_19), (void*)value);
}
inline static int32_t get_offset_of_m_AsyncConnect_20() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_AsyncConnect_20)); }
inline int32_t get_m_AsyncConnect_20() const { return ___m_AsyncConnect_20; }
inline int32_t* get_address_of_m_AsyncConnect_20() { return &___m_AsyncConnect_20; }
inline void set_m_AsyncConnect_20(int32_t value)
{
___m_AsyncConnect_20 = value;
}
inline static int32_t get_offset_of_m_RequestedServerHost_21() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F, ___m_RequestedServerHost_21)); }
inline String_t* get_m_RequestedServerHost_21() const { return ___m_RequestedServerHost_21; }
inline String_t** get_address_of_m_RequestedServerHost_21() { return &___m_RequestedServerHost_21; }
inline void set_m_RequestedServerHost_21(String_t* value)
{
___m_RequestedServerHost_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RequestedServerHost_21), (void*)value);
}
};
struct NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.Networking.NetworkClient> UnityEngine.Networking.NetworkClient::s_Clients
List_1_t51C4494E1C3EF6D60D76BC46D51A3376405941EE * ___s_Clients_2;
// System.Boolean UnityEngine.Networking.NetworkClient::s_IsActive
bool ___s_IsActive_3;
// UnityEngine.Networking.NetworkSystem.CRCMessage UnityEngine.Networking.NetworkClient::s_CRCMessage
CRCMessage_t7F44D52B267C35387F0D7AD0D9098D579ECF61FA * ___s_CRCMessage_15;
public:
inline static int32_t get_offset_of_s_Clients_2() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F_StaticFields, ___s_Clients_2)); }
inline List_1_t51C4494E1C3EF6D60D76BC46D51A3376405941EE * get_s_Clients_2() const { return ___s_Clients_2; }
inline List_1_t51C4494E1C3EF6D60D76BC46D51A3376405941EE ** get_address_of_s_Clients_2() { return &___s_Clients_2; }
inline void set_s_Clients_2(List_1_t51C4494E1C3EF6D60D76BC46D51A3376405941EE * value)
{
___s_Clients_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Clients_2), (void*)value);
}
inline static int32_t get_offset_of_s_IsActive_3() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F_StaticFields, ___s_IsActive_3)); }
inline bool get_s_IsActive_3() const { return ___s_IsActive_3; }
inline bool* get_address_of_s_IsActive_3() { return &___s_IsActive_3; }
inline void set_s_IsActive_3(bool value)
{
___s_IsActive_3 = value;
}
inline static int32_t get_offset_of_s_CRCMessage_15() { return static_cast<int32_t>(offsetof(NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F_StaticFields, ___s_CRCMessage_15)); }
inline CRCMessage_t7F44D52B267C35387F0D7AD0D9098D579ECF61FA * get_s_CRCMessage_15() const { return ___s_CRCMessage_15; }
inline CRCMessage_t7F44D52B267C35387F0D7AD0D9098D579ECF61FA ** get_address_of_s_CRCMessage_15() { return &___s_CRCMessage_15; }
inline void set_s_CRCMessage_15(CRCMessage_t7F44D52B267C35387F0D7AD0D9098D579ECF61FA * value)
{
___s_CRCMessage_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_CRCMessage_15), (void*)value);
}
};
// UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8
{
public:
// System.String UnityEngine.Playables.PlayableBinding::m_StreamName
String_t* ___m_StreamName_0;
// UnityEngine.Object UnityEngine.Playables.PlayableBinding::m_SourceObject
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___m_SourceObject_1;
// System.Type UnityEngine.Playables.PlayableBinding::m_SourceBindingType
Type_t * ___m_SourceBindingType_2;
// UnityEngine.Playables.PlayableBinding_CreateOutputMethod UnityEngine.Playables.PlayableBinding::m_CreateOutputMethod
CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * ___m_CreateOutputMethod_3;
public:
inline static int32_t get_offset_of_m_StreamName_0() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_StreamName_0)); }
inline String_t* get_m_StreamName_0() const { return ___m_StreamName_0; }
inline String_t** get_address_of_m_StreamName_0() { return &___m_StreamName_0; }
inline void set_m_StreamName_0(String_t* value)
{
___m_StreamName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_StreamName_0), (void*)value);
}
inline static int32_t get_offset_of_m_SourceObject_1() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_SourceObject_1)); }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * get_m_SourceObject_1() const { return ___m_SourceObject_1; }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** get_address_of_m_SourceObject_1() { return &___m_SourceObject_1; }
inline void set_m_SourceObject_1(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value)
{
___m_SourceObject_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SourceObject_1), (void*)value);
}
inline static int32_t get_offset_of_m_SourceBindingType_2() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_SourceBindingType_2)); }
inline Type_t * get_m_SourceBindingType_2() const { return ___m_SourceBindingType_2; }
inline Type_t ** get_address_of_m_SourceBindingType_2() { return &___m_SourceBindingType_2; }
inline void set_m_SourceBindingType_2(Type_t * value)
{
___m_SourceBindingType_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SourceBindingType_2), (void*)value);
}
inline static int32_t get_offset_of_m_CreateOutputMethod_3() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_CreateOutputMethod_3)); }
inline CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * get_m_CreateOutputMethod_3() const { return ___m_CreateOutputMethod_3; }
inline CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 ** get_address_of_m_CreateOutputMethod_3() { return &___m_CreateOutputMethod_3; }
inline void set_m_CreateOutputMethod_3(CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * value)
{
___m_CreateOutputMethod_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CreateOutputMethod_3), (void*)value);
}
};
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields
{
public:
// UnityEngine.Playables.PlayableBinding[] UnityEngine.Playables.PlayableBinding::None
PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* ___None_4;
// System.Double UnityEngine.Playables.PlayableBinding::DefaultDuration
double ___DefaultDuration_5;
public:
inline static int32_t get_offset_of_None_4() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields, ___None_4)); }
inline PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* get_None_4() const { return ___None_4; }
inline PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB** get_address_of_None_4() { return &___None_4; }
inline void set_None_4(PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* value)
{
___None_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___None_4), (void*)value);
}
inline static int32_t get_offset_of_DefaultDuration_5() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields, ___DefaultDuration_5)); }
inline double get_DefaultDuration_5() const { return ___DefaultDuration_5; }
inline double* get_address_of_DefaultDuration_5() { return &___DefaultDuration_5; }
inline void set_DefaultDuration_5(double value)
{
___DefaultDuration_5 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_marshaled_pinvoke
{
char* ___m_StreamName_0;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke ___m_SourceObject_1;
Type_t * ___m_SourceBindingType_2;
Il2CppMethodPointer ___m_CreateOutputMethod_3;
};
// Native definition for COM marshalling of UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_marshaled_com
{
Il2CppChar* ___m_StreamName_0;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com* ___m_SourceObject_1;
Type_t * ___m_SourceBindingType_2;
Il2CppMethodPointer ___m_CreateOutputMethod_3;
};
// 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
{
};
// UnityEngine.Touch
struct Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8
{
public:
// System.Int32 UnityEngine.Touch::m_FingerId
int32_t ___m_FingerId_0;
// UnityEngine.Vector2 UnityEngine.Touch::m_Position
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Position_1;
// UnityEngine.Vector2 UnityEngine.Touch::m_RawPosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_RawPosition_2;
// UnityEngine.Vector2 UnityEngine.Touch::m_PositionDelta
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_PositionDelta_3;
// System.Single UnityEngine.Touch::m_TimeDelta
float ___m_TimeDelta_4;
// System.Int32 UnityEngine.Touch::m_TapCount
int32_t ___m_TapCount_5;
// UnityEngine.TouchPhase UnityEngine.Touch::m_Phase
int32_t ___m_Phase_6;
// UnityEngine.TouchType UnityEngine.Touch::m_Type
int32_t ___m_Type_7;
// System.Single UnityEngine.Touch::m_Pressure
float ___m_Pressure_8;
// System.Single UnityEngine.Touch::m_maximumPossiblePressure
float ___m_maximumPossiblePressure_9;
// System.Single UnityEngine.Touch::m_Radius
float ___m_Radius_10;
// System.Single UnityEngine.Touch::m_RadiusVariance
float ___m_RadiusVariance_11;
// System.Single UnityEngine.Touch::m_AltitudeAngle
float ___m_AltitudeAngle_12;
// System.Single UnityEngine.Touch::m_AzimuthAngle
float ___m_AzimuthAngle_13;
public:
inline static int32_t get_offset_of_m_FingerId_0() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_FingerId_0)); }
inline int32_t get_m_FingerId_0() const { return ___m_FingerId_0; }
inline int32_t* get_address_of_m_FingerId_0() { return &___m_FingerId_0; }
inline void set_m_FingerId_0(int32_t value)
{
___m_FingerId_0 = value;
}
inline static int32_t get_offset_of_m_Position_1() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_Position_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Position_1() const { return ___m_Position_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Position_1() { return &___m_Position_1; }
inline void set_m_Position_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Position_1 = value;
}
inline static int32_t get_offset_of_m_RawPosition_2() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_RawPosition_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_RawPosition_2() const { return ___m_RawPosition_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_RawPosition_2() { return &___m_RawPosition_2; }
inline void set_m_RawPosition_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_RawPosition_2 = value;
}
inline static int32_t get_offset_of_m_PositionDelta_3() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_PositionDelta_3)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_PositionDelta_3() const { return ___m_PositionDelta_3; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_PositionDelta_3() { return &___m_PositionDelta_3; }
inline void set_m_PositionDelta_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_PositionDelta_3 = value;
}
inline static int32_t get_offset_of_m_TimeDelta_4() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_TimeDelta_4)); }
inline float get_m_TimeDelta_4() const { return ___m_TimeDelta_4; }
inline float* get_address_of_m_TimeDelta_4() { return &___m_TimeDelta_4; }
inline void set_m_TimeDelta_4(float value)
{
___m_TimeDelta_4 = value;
}
inline static int32_t get_offset_of_m_TapCount_5() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_TapCount_5)); }
inline int32_t get_m_TapCount_5() const { return ___m_TapCount_5; }
inline int32_t* get_address_of_m_TapCount_5() { return &___m_TapCount_5; }
inline void set_m_TapCount_5(int32_t value)
{
___m_TapCount_5 = value;
}
inline static int32_t get_offset_of_m_Phase_6() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_Phase_6)); }
inline int32_t get_m_Phase_6() const { return ___m_Phase_6; }
inline int32_t* get_address_of_m_Phase_6() { return &___m_Phase_6; }
inline void set_m_Phase_6(int32_t value)
{
___m_Phase_6 = value;
}
inline static int32_t get_offset_of_m_Type_7() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_Type_7)); }
inline int32_t get_m_Type_7() const { return ___m_Type_7; }
inline int32_t* get_address_of_m_Type_7() { return &___m_Type_7; }
inline void set_m_Type_7(int32_t value)
{
___m_Type_7 = value;
}
inline static int32_t get_offset_of_m_Pressure_8() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_Pressure_8)); }
inline float get_m_Pressure_8() const { return ___m_Pressure_8; }
inline float* get_address_of_m_Pressure_8() { return &___m_Pressure_8; }
inline void set_m_Pressure_8(float value)
{
___m_Pressure_8 = value;
}
inline static int32_t get_offset_of_m_maximumPossiblePressure_9() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_maximumPossiblePressure_9)); }
inline float get_m_maximumPossiblePressure_9() const { return ___m_maximumPossiblePressure_9; }
inline float* get_address_of_m_maximumPossiblePressure_9() { return &___m_maximumPossiblePressure_9; }
inline void set_m_maximumPossiblePressure_9(float value)
{
___m_maximumPossiblePressure_9 = value;
}
inline static int32_t get_offset_of_m_Radius_10() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_Radius_10)); }
inline float get_m_Radius_10() const { return ___m_Radius_10; }
inline float* get_address_of_m_Radius_10() { return &___m_Radius_10; }
inline void set_m_Radius_10(float value)
{
___m_Radius_10 = value;
}
inline static int32_t get_offset_of_m_RadiusVariance_11() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_RadiusVariance_11)); }
inline float get_m_RadiusVariance_11() const { return ___m_RadiusVariance_11; }
inline float* get_address_of_m_RadiusVariance_11() { return &___m_RadiusVariance_11; }
inline void set_m_RadiusVariance_11(float value)
{
___m_RadiusVariance_11 = value;
}
inline static int32_t get_offset_of_m_AltitudeAngle_12() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_AltitudeAngle_12)); }
inline float get_m_AltitudeAngle_12() const { return ___m_AltitudeAngle_12; }
inline float* get_address_of_m_AltitudeAngle_12() { return &___m_AltitudeAngle_12; }
inline void set_m_AltitudeAngle_12(float value)
{
___m_AltitudeAngle_12 = value;
}
inline static int32_t get_offset_of_m_AzimuthAngle_13() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_AzimuthAngle_13)); }
inline float get_m_AzimuthAngle_13() const { return ___m_AzimuthAngle_13; }
inline float* get_address_of_m_AzimuthAngle_13() { return &___m_AzimuthAngle_13; }
inline void set_m_AzimuthAngle_13(float value)
{
___m_AzimuthAngle_13 = value;
}
};
// UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07
{
public:
// UnityEngine.UI.Navigation_Mode UnityEngine.UI.Navigation::m_Mode
int32_t ___m_Mode_0;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnUp
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnDown
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnLeft
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnRight
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
public:
inline static int32_t get_offset_of_m_Mode_0() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_Mode_0)); }
inline int32_t get_m_Mode_0() const { return ___m_Mode_0; }
inline int32_t* get_address_of_m_Mode_0() { return &___m_Mode_0; }
inline void set_m_Mode_0(int32_t value)
{
___m_Mode_0 = value;
}
inline static int32_t get_offset_of_m_SelectOnUp_1() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnUp_1)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnUp_1() const { return ___m_SelectOnUp_1; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnUp_1() { return &___m_SelectOnUp_1; }
inline void set_m_SelectOnUp_1(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnUp_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnUp_1), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnDown_2() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnDown_2)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnDown_2() const { return ___m_SelectOnDown_2; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnDown_2() { return &___m_SelectOnDown_2; }
inline void set_m_SelectOnDown_2(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnDown_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnDown_2), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnLeft_3() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnLeft_3)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnLeft_3() const { return ___m_SelectOnLeft_3; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnLeft_3() { return &___m_SelectOnLeft_3; }
inline void set_m_SelectOnLeft_3(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnLeft_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnLeft_3), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnRight_4() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnRight_4)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnRight_4() const { return ___m_SelectOnRight_4; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnRight_4() { return &___m_SelectOnRight_4; }
inline void set_m_SelectOnRight_4(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnRight_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnRight_4), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_marshaled_pinvoke
{
int32_t ___m_Mode_0;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
};
// Native definition for COM marshalling of UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_marshaled_com
{
int32_t ___m_Mode_0;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
};
// UnityEngine.UnityException
struct UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28 : public Exception_t
{
public:
public:
};
// 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.Converter`2<System.Object,System.Object>
struct Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Boolean>
struct Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Byte>
struct Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Char>
struct Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.DateTime>
struct Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.DateTimeOffset>
struct Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Decimal>
struct Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Double>
struct Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Guid>
struct Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Int16>
struct Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Int32>
struct Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Int64>
struct Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.IntPtr>
struct Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Object>
struct Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.SByte>
struct Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Single>
struct Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.TimeSpan>
struct Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.UInt16>
struct Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.UInt32>
struct Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.UInt64>
struct Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.UIntPtr>
struct Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Boolean>
struct Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Byte>
struct Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Char>
struct Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.DateTime>
struct Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.DateTimeOffset>
struct Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Decimal>
struct Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Double>
struct Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Guid>
struct Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Int16>
struct Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Int32>
struct Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Int64>
struct Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.IntPtr>
struct Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Object>
struct Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.SByte>
struct Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Single>
struct Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.TimeSpan>
struct Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.UInt16>
struct Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.UInt32>
struct Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.UInt64>
struct Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.UIntPtr>
struct Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Boolean>
struct Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Byte>
struct Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Char>
struct Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.DateTime>
struct Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.DateTimeOffset>
struct Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Decimal>
struct Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Double>
struct Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Guid>
struct Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Int16>
struct Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Int32>
struct Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Int64>
struct Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.IntPtr>
struct Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Object>
struct Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.SByte>
struct Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Single>
struct Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.TimeSpan>
struct Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.UInt16>
struct Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.UInt32>
struct Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.UInt64>
struct Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.UIntPtr>
struct Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Boolean>
struct Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Byte>
struct Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Char>
struct Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.DateTime>
struct Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.DateTimeOffset>
struct Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Decimal>
struct Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Double>
struct Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Guid>
struct Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Int16>
struct Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Int32>
struct Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Int64>
struct Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.IntPtr>
struct Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Object>
struct Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.SByte>
struct Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Single>
struct Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.TimeSpan>
struct Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.UInt16>
struct Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.UInt32>
struct Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.UInt64>
struct Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.UIntPtr>
struct Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Object,System.Object>
struct Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Boolean>
struct Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Byte>
struct Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Char>
struct Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.DateTime>
struct Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.DateTimeOffset>
struct Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Decimal>
struct Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Double>
struct Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Guid>
struct Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Int16>
struct Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Int32>
struct Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Int64>
struct Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.IntPtr>
struct Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Object>
struct Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.SByte>
struct Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Single>
struct Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.TimeSpan>
struct Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.UInt16>
struct Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.UInt32>
struct Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.UInt64>
struct Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.UIntPtr>
struct Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Boolean>
struct Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Byte>
struct Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Char>
struct Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.DateTime>
struct Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.DateTimeOffset>
struct Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Decimal>
struct Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Double>
struct Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Guid>
struct Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int16>
struct Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int32>
struct Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int64>
struct Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.IntPtr>
struct Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Object>
struct Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.SByte>
struct Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Single>
struct Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.TimeSpan>
struct Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt16>
struct Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt32>
struct Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt64>
struct Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UIntPtr>
struct Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Boolean>
struct Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Byte>
struct Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Char>
struct Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.DateTime>
struct Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.DateTimeOffset>
struct Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Decimal>
struct Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Double>
struct Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Guid>
struct Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int16>
struct Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int32>
struct Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int64>
struct Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.IntPtr>
struct Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Object>
struct Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.SByte>
struct Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Single>
struct Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.TimeSpan>
struct Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt16>
struct Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt32>
struct Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt64>
struct Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UIntPtr>
struct Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Boolean>
struct Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Byte>
struct Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Char>
struct Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.DateTime>
struct Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.DateTimeOffset>
struct Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Decimal>
struct Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Double>
struct Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Guid>
struct Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int16>
struct Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int32>
struct Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int64>
struct Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.IntPtr>
struct Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Object>
struct Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.SByte>
struct Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Single>
struct Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.TimeSpan>
struct Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt16>
struct Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt32>
struct Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt64>
struct Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UIntPtr>
struct Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`1<System.Object>
struct Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Object,System.Boolean>
struct Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC : public MulticastDelegate_t
{
public:
public:
};
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.MemberAccessException
struct MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.Predicate`1<System.Object>
struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 : public MulticastDelegate_t
{
public:
public:
};
// System.Reflection.TypeInfo
struct TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC : public Type_t
{
public:
public:
};
// UnityEngine.Behaviour
struct Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8 : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<System.Object>
struct EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Transform
struct Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
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.MissingMemberException
struct MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD : public MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0
{
public:
// System.String System.MissingMemberException::ClassName
String_t* ___ClassName_17;
// System.String System.MissingMemberException::MemberName
String_t* ___MemberName_18;
// System.Byte[] System.MissingMemberException::Signature
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Signature_19;
public:
inline static int32_t get_offset_of_ClassName_17() { return static_cast<int32_t>(offsetof(MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD, ___ClassName_17)); }
inline String_t* get_ClassName_17() const { return ___ClassName_17; }
inline String_t** get_address_of_ClassName_17() { return &___ClassName_17; }
inline void set_ClassName_17(String_t* value)
{
___ClassName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ClassName_17), (void*)value);
}
inline static int32_t get_offset_of_MemberName_18() { return static_cast<int32_t>(offsetof(MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD, ___MemberName_18)); }
inline String_t* get_MemberName_18() const { return ___MemberName_18; }
inline String_t** get_address_of_MemberName_18() { return &___MemberName_18; }
inline void set_MemberName_18(String_t* value)
{
___MemberName_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MemberName_18), (void*)value);
}
inline static int32_t get_offset_of_Signature_19() { return static_cast<int32_t>(offsetof(MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD, ___Signature_19)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Signature_19() const { return ___Signature_19; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Signature_19() { return &___Signature_19; }
inline void set_Signature_19(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___Signature_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Signature_19), (void*)value);
}
};
// System.RuntimeType
struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F : public TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC
{
public:
// System.MonoTypeInfo System.RuntimeType::type_info
MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * ___type_info_26;
// System.Object System.RuntimeType::GenericCache
RuntimeObject * ___GenericCache_27;
// System.Reflection.RuntimeConstructorInfo System.RuntimeType::m_serializationCtor
RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * ___m_serializationCtor_28;
public:
inline static int32_t get_offset_of_type_info_26() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___type_info_26)); }
inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * get_type_info_26() const { return ___type_info_26; }
inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D ** get_address_of_type_info_26() { return &___type_info_26; }
inline void set_type_info_26(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * value)
{
___type_info_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_info_26), (void*)value);
}
inline static int32_t get_offset_of_GenericCache_27() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___GenericCache_27)); }
inline RuntimeObject * get_GenericCache_27() const { return ___GenericCache_27; }
inline RuntimeObject ** get_address_of_GenericCache_27() { return &___GenericCache_27; }
inline void set_GenericCache_27(RuntimeObject * value)
{
___GenericCache_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___GenericCache_27), (void*)value);
}
inline static int32_t get_offset_of_m_serializationCtor_28() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___m_serializationCtor_28)); }
inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * get_m_serializationCtor_28() const { return ___m_serializationCtor_28; }
inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D ** get_address_of_m_serializationCtor_28() { return &___m_serializationCtor_28; }
inline void set_m_serializationCtor_28(RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * value)
{
___m_serializationCtor_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_serializationCtor_28), (void*)value);
}
};
struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields
{
public:
// System.RuntimeType System.RuntimeType::ValueType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ValueType_10;
// System.RuntimeType System.RuntimeType::EnumType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___EnumType_11;
// System.RuntimeType System.RuntimeType::ObjectType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ObjectType_12;
// System.RuntimeType System.RuntimeType::StringType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___StringType_13;
// System.RuntimeType System.RuntimeType::DelegateType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___DelegateType_14;
// System.Type[] System.RuntimeType::s_SICtorParamTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___s_SICtorParamTypes_15;
// System.RuntimeType System.RuntimeType::s_typedRef
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___s_typedRef_25;
public:
inline static int32_t get_offset_of_ValueType_10() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ValueType_10)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ValueType_10() const { return ___ValueType_10; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ValueType_10() { return &___ValueType_10; }
inline void set_ValueType_10(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___ValueType_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ValueType_10), (void*)value);
}
inline static int32_t get_offset_of_EnumType_11() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___EnumType_11)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_EnumType_11() const { return ___EnumType_11; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_EnumType_11() { return &___EnumType_11; }
inline void set_EnumType_11(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___EnumType_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EnumType_11), (void*)value);
}
inline static int32_t get_offset_of_ObjectType_12() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ObjectType_12)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ObjectType_12() const { return ___ObjectType_12; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ObjectType_12() { return &___ObjectType_12; }
inline void set_ObjectType_12(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___ObjectType_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ObjectType_12), (void*)value);
}
inline static int32_t get_offset_of_StringType_13() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___StringType_13)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_StringType_13() const { return ___StringType_13; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_StringType_13() { return &___StringType_13; }
inline void set_StringType_13(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___StringType_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___StringType_13), (void*)value);
}
inline static int32_t get_offset_of_DelegateType_14() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___DelegateType_14)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_DelegateType_14() const { return ___DelegateType_14; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_DelegateType_14() { return &___DelegateType_14; }
inline void set_DelegateType_14(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___DelegateType_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DelegateType_14), (void*)value);
}
inline static int32_t get_offset_of_s_SICtorParamTypes_15() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_SICtorParamTypes_15)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_s_SICtorParamTypes_15() const { return ___s_SICtorParamTypes_15; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_s_SICtorParamTypes_15() { return &___s_SICtorParamTypes_15; }
inline void set_s_SICtorParamTypes_15(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___s_SICtorParamTypes_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_SICtorParamTypes_15), (void*)value);
}
inline static int32_t get_offset_of_s_typedRef_25() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_typedRef_25)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_s_typedRef_25() const { return ___s_typedRef_25; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_s_typedRef_25() { return &___s_typedRef_25; }
inline void set_s_typedRef_25(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___s_typedRef_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_typedRef_25), (void*)value);
}
};
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 : public Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8
{
public:
public:
};
// System.MissingMethodException
struct MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 : public MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD
{
public:
// System.String System.MissingMethodException::signature
String_t* ___signature_20;
public:
inline static int32_t get_offset_of_signature_20() { return static_cast<int32_t>(offsetof(MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498, ___signature_20)); }
inline String_t* get_signature_20() const { return ___signature_20; }
inline String_t** get_address_of_signature_20() { return &___signature_20; }
inline void set_signature_20(String_t* value)
{
___signature_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___signature_20), (void*)value);
}
};
// UnityEngine.EventSystems.UIBehaviour
struct UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
public:
};
// UnityEngine.Networking.NetworkBehaviour
struct NetworkBehaviour_tE0C48D0A9ED8AC3977CAEF5B8090089CD544D19C : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// System.UInt32 UnityEngine.Networking.NetworkBehaviour::m_SyncVarDirtyBits
uint32_t ___m_SyncVarDirtyBits_4;
// System.Single UnityEngine.Networking.NetworkBehaviour::m_LastSendTime
float ___m_LastSendTime_5;
// System.Boolean UnityEngine.Networking.NetworkBehaviour::m_SyncVarGuard
bool ___m_SyncVarGuard_6;
// UnityEngine.Networking.NetworkIdentity UnityEngine.Networking.NetworkBehaviour::m_MyView
NetworkIdentity_t764E9C8A578DEF667FDCB3D1171A4B0DDF38069B * ___m_MyView_8;
public:
inline static int32_t get_offset_of_m_SyncVarDirtyBits_4() { return static_cast<int32_t>(offsetof(NetworkBehaviour_tE0C48D0A9ED8AC3977CAEF5B8090089CD544D19C, ___m_SyncVarDirtyBits_4)); }
inline uint32_t get_m_SyncVarDirtyBits_4() const { return ___m_SyncVarDirtyBits_4; }
inline uint32_t* get_address_of_m_SyncVarDirtyBits_4() { return &___m_SyncVarDirtyBits_4; }
inline void set_m_SyncVarDirtyBits_4(uint32_t value)
{
___m_SyncVarDirtyBits_4 = value;
}
inline static int32_t get_offset_of_m_LastSendTime_5() { return static_cast<int32_t>(offsetof(NetworkBehaviour_tE0C48D0A9ED8AC3977CAEF5B8090089CD544D19C, ___m_LastSendTime_5)); }
inline float get_m_LastSendTime_5() const { return ___m_LastSendTime_5; }
inline float* get_address_of_m_LastSendTime_5() { return &___m_LastSendTime_5; }
inline void set_m_LastSendTime_5(float value)
{
___m_LastSendTime_5 = value;
}
inline static int32_t get_offset_of_m_SyncVarGuard_6() { return static_cast<int32_t>(offsetof(NetworkBehaviour_tE0C48D0A9ED8AC3977CAEF5B8090089CD544D19C, ___m_SyncVarGuard_6)); }
inline bool get_m_SyncVarGuard_6() const { return ___m_SyncVarGuard_6; }
inline bool* get_address_of_m_SyncVarGuard_6() { return &___m_SyncVarGuard_6; }
inline void set_m_SyncVarGuard_6(bool value)
{
___m_SyncVarGuard_6 = value;
}
inline static int32_t get_offset_of_m_MyView_8() { return static_cast<int32_t>(offsetof(NetworkBehaviour_tE0C48D0A9ED8AC3977CAEF5B8090089CD544D19C, ___m_MyView_8)); }
inline NetworkIdentity_t764E9C8A578DEF667FDCB3D1171A4B0DDF38069B * get_m_MyView_8() const { return ___m_MyView_8; }
inline NetworkIdentity_t764E9C8A578DEF667FDCB3D1171A4B0DDF38069B ** get_address_of_m_MyView_8() { return &___m_MyView_8; }
inline void set_m_MyView_8(NetworkIdentity_t764E9C8A578DEF667FDCB3D1171A4B0DDF38069B * value)
{
___m_MyView_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MyView_8), (void*)value);
}
};
struct NetworkBehaviour_tE0C48D0A9ED8AC3977CAEF5B8090089CD544D19C_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.Networking.NetworkBehaviour_Invoker> UnityEngine.Networking.NetworkBehaviour::s_CmdHandlerDelegates
Dictionary_2_t7CB63C060ADDEC4A72D1BBD323E4C66E5A50238B * ___s_CmdHandlerDelegates_9;
public:
inline static int32_t get_offset_of_s_CmdHandlerDelegates_9() { return static_cast<int32_t>(offsetof(NetworkBehaviour_tE0C48D0A9ED8AC3977CAEF5B8090089CD544D19C_StaticFields, ___s_CmdHandlerDelegates_9)); }
inline Dictionary_2_t7CB63C060ADDEC4A72D1BBD323E4C66E5A50238B * get_s_CmdHandlerDelegates_9() const { return ___s_CmdHandlerDelegates_9; }
inline Dictionary_2_t7CB63C060ADDEC4A72D1BBD323E4C66E5A50238B ** get_address_of_s_CmdHandlerDelegates_9() { return &___s_CmdHandlerDelegates_9; }
inline void set_s_CmdHandlerDelegates_9(Dictionary_2_t7CB63C060ADDEC4A72D1BBD323E4C66E5A50238B * value)
{
___s_CmdHandlerDelegates_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_CmdHandlerDelegates_9), (void*)value);
}
};
// UnityEngine.UI.LayoutGroup
struct LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// UnityEngine.RectOffset UnityEngine.UI.LayoutGroup::m_Padding
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * ___m_Padding_4;
// UnityEngine.TextAnchor UnityEngine.UI.LayoutGroup::m_ChildAlignment
int32_t ___m_ChildAlignment_5;
// UnityEngine.RectTransform UnityEngine.UI.LayoutGroup::m_Rect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_Rect_6;
// UnityEngine.DrivenRectTransformTracker UnityEngine.UI.LayoutGroup::m_Tracker
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 ___m_Tracker_7;
// UnityEngine.Vector2 UnityEngine.UI.LayoutGroup::m_TotalMinSize
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_TotalMinSize_8;
// UnityEngine.Vector2 UnityEngine.UI.LayoutGroup::m_TotalPreferredSize
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_TotalPreferredSize_9;
// UnityEngine.Vector2 UnityEngine.UI.LayoutGroup::m_TotalFlexibleSize
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_TotalFlexibleSize_10;
// System.Collections.Generic.List`1<UnityEngine.RectTransform> UnityEngine.UI.LayoutGroup::m_RectChildren
List_1_tDDCC3FF04B4444A45BC27D94CC0369A8CF06DBF9 * ___m_RectChildren_11;
public:
inline static int32_t get_offset_of_m_Padding_4() { return static_cast<int32_t>(offsetof(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___m_Padding_4)); }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * get_m_Padding_4() const { return ___m_Padding_4; }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A ** get_address_of_m_Padding_4() { return &___m_Padding_4; }
inline void set_m_Padding_4(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * value)
{
___m_Padding_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Padding_4), (void*)value);
}
inline static int32_t get_offset_of_m_ChildAlignment_5() { return static_cast<int32_t>(offsetof(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___m_ChildAlignment_5)); }
inline int32_t get_m_ChildAlignment_5() const { return ___m_ChildAlignment_5; }
inline int32_t* get_address_of_m_ChildAlignment_5() { return &___m_ChildAlignment_5; }
inline void set_m_ChildAlignment_5(int32_t value)
{
___m_ChildAlignment_5 = value;
}
inline static int32_t get_offset_of_m_Rect_6() { return static_cast<int32_t>(offsetof(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___m_Rect_6)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_Rect_6() const { return ___m_Rect_6; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_Rect_6() { return &___m_Rect_6; }
inline void set_m_Rect_6(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_Rect_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Rect_6), (void*)value);
}
inline static int32_t get_offset_of_m_Tracker_7() { return static_cast<int32_t>(offsetof(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___m_Tracker_7)); }
inline DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 get_m_Tracker_7() const { return ___m_Tracker_7; }
inline DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * get_address_of_m_Tracker_7() { return &___m_Tracker_7; }
inline void set_m_Tracker_7(DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 value)
{
___m_Tracker_7 = value;
}
inline static int32_t get_offset_of_m_TotalMinSize_8() { return static_cast<int32_t>(offsetof(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___m_TotalMinSize_8)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_TotalMinSize_8() const { return ___m_TotalMinSize_8; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_TotalMinSize_8() { return &___m_TotalMinSize_8; }
inline void set_m_TotalMinSize_8(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_TotalMinSize_8 = value;
}
inline static int32_t get_offset_of_m_TotalPreferredSize_9() { return static_cast<int32_t>(offsetof(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___m_TotalPreferredSize_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_TotalPreferredSize_9() const { return ___m_TotalPreferredSize_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_TotalPreferredSize_9() { return &___m_TotalPreferredSize_9; }
inline void set_m_TotalPreferredSize_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_TotalPreferredSize_9 = value;
}
inline static int32_t get_offset_of_m_TotalFlexibleSize_10() { return static_cast<int32_t>(offsetof(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___m_TotalFlexibleSize_10)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_TotalFlexibleSize_10() const { return ___m_TotalFlexibleSize_10; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_TotalFlexibleSize_10() { return &___m_TotalFlexibleSize_10; }
inline void set_m_TotalFlexibleSize_10(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_TotalFlexibleSize_10 = value;
}
inline static int32_t get_offset_of_m_RectChildren_11() { return static_cast<int32_t>(offsetof(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___m_RectChildren_11)); }
inline List_1_tDDCC3FF04B4444A45BC27D94CC0369A8CF06DBF9 * get_m_RectChildren_11() const { return ___m_RectChildren_11; }
inline List_1_tDDCC3FF04B4444A45BC27D94CC0369A8CF06DBF9 ** get_address_of_m_RectChildren_11() { return &___m_RectChildren_11; }
inline void set_m_RectChildren_11(List_1_tDDCC3FF04B4444A45BC27D94CC0369A8CF06DBF9 * value)
{
___m_RectChildren_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RectChildren_11), (void*)value);
}
};
// UnityEngine.UI.Selectable
struct Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// UnityEngine.UI.Navigation UnityEngine.UI.Selectable::m_Navigation
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 ___m_Navigation_7;
// UnityEngine.UI.Selectable_Transition UnityEngine.UI.Selectable::m_Transition
int32_t ___m_Transition_8;
// UnityEngine.UI.ColorBlock UnityEngine.UI.Selectable::m_Colors
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ___m_Colors_9;
// UnityEngine.UI.SpriteState UnityEngine.UI.Selectable::m_SpriteState
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A ___m_SpriteState_10;
// UnityEngine.UI.AnimationTriggers UnityEngine.UI.Selectable::m_AnimationTriggers
AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * ___m_AnimationTriggers_11;
// System.Boolean UnityEngine.UI.Selectable::m_Interactable
bool ___m_Interactable_12;
// UnityEngine.UI.Graphic UnityEngine.UI.Selectable::m_TargetGraphic
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * ___m_TargetGraphic_13;
// System.Boolean UnityEngine.UI.Selectable::m_GroupsAllowInteraction
bool ___m_GroupsAllowInteraction_14;
// System.Boolean UnityEngine.UI.Selectable::m_WillRemove
bool ___m_WillRemove_15;
// System.Boolean UnityEngine.UI.Selectable::<isPointerInside>k__BackingField
bool ___U3CisPointerInsideU3Ek__BackingField_16;
// System.Boolean UnityEngine.UI.Selectable::<isPointerDown>k__BackingField
bool ___U3CisPointerDownU3Ek__BackingField_17;
// System.Boolean UnityEngine.UI.Selectable::<hasSelection>k__BackingField
bool ___U3ChasSelectionU3Ek__BackingField_18;
// System.Collections.Generic.List`1<UnityEngine.CanvasGroup> UnityEngine.UI.Selectable::m_CanvasGroupCache
List_1_t053DAB6E2110E276A0339D73497193F464BC1F82 * ___m_CanvasGroupCache_19;
public:
inline static int32_t get_offset_of_m_Navigation_7() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_Navigation_7)); }
inline Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 get_m_Navigation_7() const { return ___m_Navigation_7; }
inline Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * get_address_of_m_Navigation_7() { return &___m_Navigation_7; }
inline void set_m_Navigation_7(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 value)
{
___m_Navigation_7 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnUp_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnDown_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnLeft_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnRight_4), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_Transition_8() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_Transition_8)); }
inline int32_t get_m_Transition_8() const { return ___m_Transition_8; }
inline int32_t* get_address_of_m_Transition_8() { return &___m_Transition_8; }
inline void set_m_Transition_8(int32_t value)
{
___m_Transition_8 = value;
}
inline static int32_t get_offset_of_m_Colors_9() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_Colors_9)); }
inline ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA get_m_Colors_9() const { return ___m_Colors_9; }
inline ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * get_address_of_m_Colors_9() { return &___m_Colors_9; }
inline void set_m_Colors_9(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA value)
{
___m_Colors_9 = value;
}
inline static int32_t get_offset_of_m_SpriteState_10() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_SpriteState_10)); }
inline SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A get_m_SpriteState_10() const { return ___m_SpriteState_10; }
inline SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A * get_address_of_m_SpriteState_10() { return &___m_SpriteState_10; }
inline void set_m_SpriteState_10(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A value)
{
___m_SpriteState_10 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_HighlightedSprite_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_PressedSprite_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_SelectedSprite_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_DisabledSprite_3), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_AnimationTriggers_11() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_AnimationTriggers_11)); }
inline AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * get_m_AnimationTriggers_11() const { return ___m_AnimationTriggers_11; }
inline AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 ** get_address_of_m_AnimationTriggers_11() { return &___m_AnimationTriggers_11; }
inline void set_m_AnimationTriggers_11(AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * value)
{
___m_AnimationTriggers_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AnimationTriggers_11), (void*)value);
}
inline static int32_t get_offset_of_m_Interactable_12() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_Interactable_12)); }
inline bool get_m_Interactable_12() const { return ___m_Interactable_12; }
inline bool* get_address_of_m_Interactable_12() { return &___m_Interactable_12; }
inline void set_m_Interactable_12(bool value)
{
___m_Interactable_12 = value;
}
inline static int32_t get_offset_of_m_TargetGraphic_13() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_TargetGraphic_13)); }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * get_m_TargetGraphic_13() const { return ___m_TargetGraphic_13; }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 ** get_address_of_m_TargetGraphic_13() { return &___m_TargetGraphic_13; }
inline void set_m_TargetGraphic_13(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * value)
{
___m_TargetGraphic_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TargetGraphic_13), (void*)value);
}
inline static int32_t get_offset_of_m_GroupsAllowInteraction_14() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_GroupsAllowInteraction_14)); }
inline bool get_m_GroupsAllowInteraction_14() const { return ___m_GroupsAllowInteraction_14; }
inline bool* get_address_of_m_GroupsAllowInteraction_14() { return &___m_GroupsAllowInteraction_14; }
inline void set_m_GroupsAllowInteraction_14(bool value)
{
___m_GroupsAllowInteraction_14 = value;
}
inline static int32_t get_offset_of_m_WillRemove_15() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_WillRemove_15)); }
inline bool get_m_WillRemove_15() const { return ___m_WillRemove_15; }
inline bool* get_address_of_m_WillRemove_15() { return &___m_WillRemove_15; }
inline void set_m_WillRemove_15(bool value)
{
___m_WillRemove_15 = value;
}
inline static int32_t get_offset_of_U3CisPointerInsideU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___U3CisPointerInsideU3Ek__BackingField_16)); }
inline bool get_U3CisPointerInsideU3Ek__BackingField_16() const { return ___U3CisPointerInsideU3Ek__BackingField_16; }
inline bool* get_address_of_U3CisPointerInsideU3Ek__BackingField_16() { return &___U3CisPointerInsideU3Ek__BackingField_16; }
inline void set_U3CisPointerInsideU3Ek__BackingField_16(bool value)
{
___U3CisPointerInsideU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3CisPointerDownU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___U3CisPointerDownU3Ek__BackingField_17)); }
inline bool get_U3CisPointerDownU3Ek__BackingField_17() const { return ___U3CisPointerDownU3Ek__BackingField_17; }
inline bool* get_address_of_U3CisPointerDownU3Ek__BackingField_17() { return &___U3CisPointerDownU3Ek__BackingField_17; }
inline void set_U3CisPointerDownU3Ek__BackingField_17(bool value)
{
___U3CisPointerDownU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3ChasSelectionU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___U3ChasSelectionU3Ek__BackingField_18)); }
inline bool get_U3ChasSelectionU3Ek__BackingField_18() const { return ___U3ChasSelectionU3Ek__BackingField_18; }
inline bool* get_address_of_U3ChasSelectionU3Ek__BackingField_18() { return &___U3ChasSelectionU3Ek__BackingField_18; }
inline void set_U3ChasSelectionU3Ek__BackingField_18(bool value)
{
___U3ChasSelectionU3Ek__BackingField_18 = value;
}
inline static int32_t get_offset_of_m_CanvasGroupCache_19() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_CanvasGroupCache_19)); }
inline List_1_t053DAB6E2110E276A0339D73497193F464BC1F82 * get_m_CanvasGroupCache_19() const { return ___m_CanvasGroupCache_19; }
inline List_1_t053DAB6E2110E276A0339D73497193F464BC1F82 ** get_address_of_m_CanvasGroupCache_19() { return &___m_CanvasGroupCache_19; }
inline void set_m_CanvasGroupCache_19(List_1_t053DAB6E2110E276A0339D73497193F464BC1F82 * value)
{
___m_CanvasGroupCache_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CanvasGroupCache_19), (void*)value);
}
};
struct Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_StaticFields
{
public:
// UnityEngine.UI.Selectable[] UnityEngine.UI.Selectable::s_Selectables
SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02* ___s_Selectables_4;
// System.Int32 UnityEngine.UI.Selectable::s_SelectableCount
int32_t ___s_SelectableCount_5;
// System.Boolean UnityEngine.UI.Selectable::s_IsDirty
bool ___s_IsDirty_6;
public:
inline static int32_t get_offset_of_s_Selectables_4() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_StaticFields, ___s_Selectables_4)); }
inline SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02* get_s_Selectables_4() const { return ___s_Selectables_4; }
inline SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02** get_address_of_s_Selectables_4() { return &___s_Selectables_4; }
inline void set_s_Selectables_4(SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02* value)
{
___s_Selectables_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Selectables_4), (void*)value);
}
inline static int32_t get_offset_of_s_SelectableCount_5() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_StaticFields, ___s_SelectableCount_5)); }
inline int32_t get_s_SelectableCount_5() const { return ___s_SelectableCount_5; }
inline int32_t* get_address_of_s_SelectableCount_5() { return &___s_SelectableCount_5; }
inline void set_s_SelectableCount_5(int32_t value)
{
___s_SelectableCount_5 = value;
}
inline static int32_t get_offset_of_s_IsDirty_6() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_StaticFields, ___s_IsDirty_6)); }
inline bool get_s_IsDirty_6() const { return ___s_IsDirty_6; }
inline bool* get_address_of_s_IsDirty_6() { return &___s_IsDirty_6; }
inline void set_s_IsDirty_6(bool value)
{
___s_IsDirty_6 = value;
}
};
// UnityEngine.UI.Dropdown
struct Dropdown_tF6331401084B1213CAB10587A6EC81461501930F : public Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A
{
public:
// UnityEngine.RectTransform UnityEngine.UI.Dropdown::m_Template
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_Template_20;
// UnityEngine.UI.Text UnityEngine.UI.Dropdown::m_CaptionText
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___m_CaptionText_21;
// UnityEngine.UI.Image UnityEngine.UI.Dropdown::m_CaptionImage
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___m_CaptionImage_22;
// UnityEngine.UI.Text UnityEngine.UI.Dropdown::m_ItemText
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___m_ItemText_23;
// UnityEngine.UI.Image UnityEngine.UI.Dropdown::m_ItemImage
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___m_ItemImage_24;
// System.Int32 UnityEngine.UI.Dropdown::m_Value
int32_t ___m_Value_25;
// UnityEngine.UI.Dropdown_OptionDataList UnityEngine.UI.Dropdown::m_Options
OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * ___m_Options_26;
// UnityEngine.UI.Dropdown_DropdownEvent UnityEngine.UI.Dropdown::m_OnValueChanged
DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * ___m_OnValueChanged_27;
// System.Single UnityEngine.UI.Dropdown::m_AlphaFadeSpeed
float ___m_AlphaFadeSpeed_28;
// UnityEngine.GameObject UnityEngine.UI.Dropdown::m_Dropdown
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_Dropdown_29;
// UnityEngine.GameObject UnityEngine.UI.Dropdown::m_Blocker
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_Blocker_30;
// System.Collections.Generic.List`1<UnityEngine.UI.Dropdown_DropdownItem> UnityEngine.UI.Dropdown::m_Items
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * ___m_Items_31;
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween> UnityEngine.UI.Dropdown::m_AlphaTweenRunner
TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * ___m_AlphaTweenRunner_32;
// System.Boolean UnityEngine.UI.Dropdown::validTemplate
bool ___validTemplate_33;
public:
inline static int32_t get_offset_of_m_Template_20() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Template_20)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_Template_20() const { return ___m_Template_20; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_Template_20() { return &___m_Template_20; }
inline void set_m_Template_20(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_Template_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Template_20), (void*)value);
}
inline static int32_t get_offset_of_m_CaptionText_21() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_CaptionText_21)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_m_CaptionText_21() const { return ___m_CaptionText_21; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_m_CaptionText_21() { return &___m_CaptionText_21; }
inline void set_m_CaptionText_21(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___m_CaptionText_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CaptionText_21), (void*)value);
}
inline static int32_t get_offset_of_m_CaptionImage_22() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_CaptionImage_22)); }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * get_m_CaptionImage_22() const { return ___m_CaptionImage_22; }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E ** get_address_of_m_CaptionImage_22() { return &___m_CaptionImage_22; }
inline void set_m_CaptionImage_22(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * value)
{
___m_CaptionImage_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CaptionImage_22), (void*)value);
}
inline static int32_t get_offset_of_m_ItemText_23() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_ItemText_23)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_m_ItemText_23() const { return ___m_ItemText_23; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_m_ItemText_23() { return &___m_ItemText_23; }
inline void set_m_ItemText_23(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___m_ItemText_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ItemText_23), (void*)value);
}
inline static int32_t get_offset_of_m_ItemImage_24() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_ItemImage_24)); }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * get_m_ItemImage_24() const { return ___m_ItemImage_24; }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E ** get_address_of_m_ItemImage_24() { return &___m_ItemImage_24; }
inline void set_m_ItemImage_24(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * value)
{
___m_ItemImage_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ItemImage_24), (void*)value);
}
inline static int32_t get_offset_of_m_Value_25() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Value_25)); }
inline int32_t get_m_Value_25() const { return ___m_Value_25; }
inline int32_t* get_address_of_m_Value_25() { return &___m_Value_25; }
inline void set_m_Value_25(int32_t value)
{
___m_Value_25 = value;
}
inline static int32_t get_offset_of_m_Options_26() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Options_26)); }
inline OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * get_m_Options_26() const { return ___m_Options_26; }
inline OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D ** get_address_of_m_Options_26() { return &___m_Options_26; }
inline void set_m_Options_26(OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * value)
{
___m_Options_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Options_26), (void*)value);
}
inline static int32_t get_offset_of_m_OnValueChanged_27() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_OnValueChanged_27)); }
inline DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * get_m_OnValueChanged_27() const { return ___m_OnValueChanged_27; }
inline DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 ** get_address_of_m_OnValueChanged_27() { return &___m_OnValueChanged_27; }
inline void set_m_OnValueChanged_27(DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * value)
{
___m_OnValueChanged_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnValueChanged_27), (void*)value);
}
inline static int32_t get_offset_of_m_AlphaFadeSpeed_28() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_AlphaFadeSpeed_28)); }
inline float get_m_AlphaFadeSpeed_28() const { return ___m_AlphaFadeSpeed_28; }
inline float* get_address_of_m_AlphaFadeSpeed_28() { return &___m_AlphaFadeSpeed_28; }
inline void set_m_AlphaFadeSpeed_28(float value)
{
___m_AlphaFadeSpeed_28 = value;
}
inline static int32_t get_offset_of_m_Dropdown_29() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Dropdown_29)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_Dropdown_29() const { return ___m_Dropdown_29; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_Dropdown_29() { return &___m_Dropdown_29; }
inline void set_m_Dropdown_29(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_Dropdown_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Dropdown_29), (void*)value);
}
inline static int32_t get_offset_of_m_Blocker_30() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Blocker_30)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_Blocker_30() const { return ___m_Blocker_30; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_Blocker_30() { return &___m_Blocker_30; }
inline void set_m_Blocker_30(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_Blocker_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Blocker_30), (void*)value);
}
inline static int32_t get_offset_of_m_Items_31() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Items_31)); }
inline List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * get_m_Items_31() const { return ___m_Items_31; }
inline List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 ** get_address_of_m_Items_31() { return &___m_Items_31; }
inline void set_m_Items_31(List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * value)
{
___m_Items_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Items_31), (void*)value);
}
inline static int32_t get_offset_of_m_AlphaTweenRunner_32() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_AlphaTweenRunner_32)); }
inline TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * get_m_AlphaTweenRunner_32() const { return ___m_AlphaTweenRunner_32; }
inline TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF ** get_address_of_m_AlphaTweenRunner_32() { return &___m_AlphaTweenRunner_32; }
inline void set_m_AlphaTweenRunner_32(TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * value)
{
___m_AlphaTweenRunner_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AlphaTweenRunner_32), (void*)value);
}
inline static int32_t get_offset_of_validTemplate_33() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___validTemplate_33)); }
inline bool get_validTemplate_33() const { return ___validTemplate_33; }
inline bool* get_address_of_validTemplate_33() { return &___validTemplate_33; }
inline void set_validTemplate_33(bool value)
{
___validTemplate_33 = value;
}
};
struct Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_StaticFields
{
public:
// UnityEngine.UI.Dropdown_OptionData UnityEngine.UI.Dropdown::s_NoOptionData
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * ___s_NoOptionData_34;
public:
inline static int32_t get_offset_of_s_NoOptionData_34() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_StaticFields, ___s_NoOptionData_34)); }
inline OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * get_s_NoOptionData_34() const { return ___s_NoOptionData_34; }
inline OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 ** get_address_of_s_NoOptionData_34() { return &___s_NoOptionData_34; }
inline void set_s_NoOptionData_34(OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * value)
{
___s_NoOptionData_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_NoOptionData_34), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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);
}
};
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040 : public RuntimeArray
{
public:
ALIGN_FIELD (8) bool m_Items[1];
public:
inline bool GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline bool* 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, bool value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
{
m_Items[index] = value;
}
};
// 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.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.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.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;
}
};
// 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.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.Networking.ChannelPacket[]
struct ChannelPacketU5BU5D_t4F30D435CDD109EFAC04DDAA14FFCA6EC3FD3C68 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D m_Items[1];
public:
inline ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D * 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, ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Buffer_1), (void*)NULL);
}
inline ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Buffer_1), (void*)NULL);
}
};
// UnityEngine.Networking.ClientScene_PendingOwner[]
struct PendingOwnerU5BU5D_tC7C57765D842F658B31DE4453A4838057D5C6EFA : public RuntimeArray
{
public:
ALIGN_FIELD (8) PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 m_Items[1];
public:
inline PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 * 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, PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Networking.LocalClient_InternalMsg[]
struct InternalMsgU5BU5D_t9FE1EB9BD31AEA326D79AC2749B4D89621EB99B6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 m_Items[1];
public:
inline InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 * 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, InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___buffer_0), (void*)NULL);
}
inline InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___buffer_0), (void*)NULL);
}
};
// UnityEngine.Networking.NetworkLobbyManager_PendingPlayer[]
struct PendingPlayerU5BU5D_t0528231D7204589D7A98D2A727DFFF7CBB36864E : public RuntimeArray
{
public:
ALIGN_FIELD (8) PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 m_Items[1];
public:
inline PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 * 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, PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___conn_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___lobbyPlayer_1), (void*)NULL);
#endif
}
inline PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___conn_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___lobbyPlayer_1), (void*)NULL);
#endif
}
};
// UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo[]
struct PendingPlayerInfoU5BU5D_t4FB2FD5DC2C9A9DD7851E566CC11A9B113081ADC : public RuntimeArray
{
public:
ALIGN_FIELD (8) PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC m_Items[1];
public:
inline PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC * 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, PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___obj_2), (void*)NULL);
}
inline PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___obj_2), (void*)NULL);
}
};
// UnityEngine.Networking.NetworkSystem.CRCMessageEntry[]
struct CRCMessageEntryU5BU5D_t1B5D587D6874D0A4400FC5721E2678BE6D3751EF : public RuntimeArray
{
public:
ALIGN_FIELD (8) CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 m_Items[1];
public:
inline CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 * 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, CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 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 CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___name_0), (void*)NULL);
}
};
// UnityEngine.Networking.NetworkSystem.PeerInfoPlayer[]
struct PeerInfoPlayerU5BU5D_t2DC6ACEAE1A547C8C73E8EEF72F51E0611E694F3 : public RuntimeArray
{
public:
ALIGN_FIELD (8) PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B m_Items[1];
public:
inline PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B * 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, PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B 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.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.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.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.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.Reflection.CustomAttributeNamedArgument[]
struct CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828 : public RuntimeArray
{
public:
ALIGN_FIELD (8) CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E m_Items[1];
public:
inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E * 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, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___value_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___memberInfo_1), (void*)NULL);
#endif
}
inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___value_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___memberInfo_1), (void*)NULL);
#endif
}
};
// System.Reflection.CustomAttributeTypedArgument[]
struct CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05 : public RuntimeArray
{
public:
ALIGN_FIELD (8) CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 m_Items[1];
public:
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * 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, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
};
// UnityEngine.Object[]
struct ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * m_Items[1];
public:
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** 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, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Networking.LogFilter::get_logDev()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LogFilter_get_logDev_m0A07EDB9FE022B73B78A5CAE9543DB1C85C2FCEB (const RuntimeMethod* method);
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method);
// System.String System.String::Concat(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07 (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method);
// System.Void UnityEngine.Debug::Log(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Log_m4B7C70BAFD477C6BDB59C88A0934F0B018D03708 (RuntimeObject * ___message0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.NetworkBehaviour::SetDirtyBit(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_SetDirtyBit_mBD8CAABF9BEA7A0304B7ADE9BF342A3C78BB4C20 (NetworkBehaviour_tE0C48D0A9ED8AC3977CAEF5B8090089CD544D19C * __this, uint32_t ___dirtyBit0, 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);
// UnityEngine.Networking.NetworkServer UnityEngine.Networking.NetworkServer::get_instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1 * NetworkServer_get_instance_mFF3DBDB2EFFB44BF46A14F4028BDCA97A22449D2 (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.Void UnityEngine.UI.LayoutGroup::SetDirty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutGroup_SetDirty_m645D3182781863DCF43C794556AFE0A7B5342D2A (LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 * __this, const RuntimeMethod* method);
// System.Boolean System.Int32::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C (int32_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Single::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Single_Equals_mF4C7AEA9D216B3C9CB735BF327D07BF50F101A16 (float* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Vector2::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector2_Equals_m4A2A75BC3D09933321220BCEF21219B38AF643AE (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * __this, RuntimeObject * ___other0, const RuntimeMethod* method);
// System.Boolean System.Type::get_HasElementType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_HasElementType_m598BEFE66F168CE1D1132C87D394B2EF41F449BF (Type_t * __this, const RuntimeMethod* 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.MissingMethodException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingMethodException__ctor_m44F1A1E3C426F8902FFAB4DA991DA1650FA14EE9 (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Object System.RuntimeType::CreateInstanceDefaultCtor(System.Boolean,System.Boolean,System.Boolean,System.Threading.StackCrawlMark&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RuntimeType_CreateInstanceDefaultCtor_m7553969A13B4A66B8A0D95C3B598CE3B92325064 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * __this, bool ___publicOnly0, bool ___skipCheckThis1, bool ___fillCache2, int32_t* ___stackMark3, 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.Int32 System.Array::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Attribute System.Reflection.CustomAttributeExtensions::GetCustomAttribute(System.Reflection.Assembly,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * CustomAttributeExtensions_GetCustomAttribute_m4F400BBA3D1EBE458C4CCEC26DF2A5F926AE3F34 (Assembly_t * ___element0, Type_t * ___attributeType1, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.IntPtr::.ctor(System.Void*)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6_inline (intptr_t* __this, void* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Component::GetComponentFastPath(System.Type,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Component_GetComponentFastPath_mDEB49C6B56084E436C7FC3D555339FA16949937E (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, Type_t * ___type0, intptr_t ___oneFurtherThanResultValue1, const RuntimeMethod* method);
// UnityEngine.Component UnityEngine.Component::GetComponentInChildren(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * Component_GetComponentInChildren_mEF7890FAC10EA2F776464285B0DCC58B8C373D34 (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, Type_t * ___t0, bool ___includeInactive1, const RuntimeMethod* method);
// UnityEngine.Component UnityEngine.Component::GetComponentInParent(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * Component_GetComponentInParent_mFD9A8F6311ABAF986CA0DA556662F89FD9234E7D (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, Type_t * ___t0, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, 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);
// UnityEngine.Component UnityEngine.GameObject::AddComponent(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * GameObject_AddComponent_m489C9D5426F2050795FA696CD478BB49AAE4BD70 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, Type_t * ___componentType0, const RuntimeMethod* method);
// System.Void UnityEngine.GameObject::GetComponentFastPath(System.Type,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject_GetComponentFastPath_m5B276335DD94F6B307E604272A26C15B997C3CD4 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, Type_t * ___type0, intptr_t ___oneFurtherThanResultValue1, const RuntimeMethod* method);
// UnityEngine.Component UnityEngine.GameObject::GetComponentInChildren(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * GameObject_GetComponentInChildren_mBC5C12CDA1749A827D136DABBF10498B1096A086 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, Type_t * ___type0, bool ___includeInactive1, const RuntimeMethod* method);
// UnityEngine.Object UnityEngine.Object::FindObjectOfType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * Object_FindObjectOfType_mCDF38E1667CF4502F60C59709D70B60EF7E408DA (Type_t * ___type0, const RuntimeMethod* method);
// System.Void UnityEngine.Object::CheckNullArgument(System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_CheckNullArgument_m8D42F516655D770DFEEAA13CF86A2612214AAA9B (RuntimeObject * ___arg0, String_t* ___message1, const RuntimeMethod* method);
// UnityEngine.Object UnityEngine.Object::Internal_CloneSingle(UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * Object_Internal_CloneSingle_m4231A0B9138AC40B76655B772F687CC7E6160C06 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___data0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___x0, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___y1, const RuntimeMethod* method);
// System.Void UnityEngine.UnityException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityException__ctor_mE42363D886E6DD7F075A6AEA689434C8E96722D9 (UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28 * __this, String_t* ___message0, const RuntimeMethod* method);
// UnityEngine.Object UnityEngine.Object::Instantiate(UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * Object_Instantiate_mAF9C2662167396DEE640598515B60BE41B9D5082 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___original0, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position1, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___rotation2, const RuntimeMethod* method);
// UnityEngine.Object UnityEngine.Resources::GetBuiltinResource(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * Resources_GetBuiltinResource_m73DDAC485E1E06C925628AA7285AC63D0797BD0A (Type_t * ___type0, String_t* ___path1, const RuntimeMethod* method);
// UnityEngine.ScriptableObject UnityEngine.ScriptableObject::CreateInstance(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 * ScriptableObject_CreateInstance_mDC77B7257A5E276CB272D3475B9B473B23A7128D (Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Implicit(UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___exists0, const RuntimeMethod* method);
// System.Exception System.Linq.Error::ArgumentNull(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7 (String_t* ___s0, const RuntimeMethod* method);
// System.Exception System.Linq.Error::MoreThanOneMatch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Error_MoreThanOneMatch_m85C3617F782E9F2333FC1FDF42821BE069F24623 (const RuntimeMethod* method);
// System.Int32 System.Math::Min(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.Component::get_gameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method);
// System.Array UnityEngine.GameObject::GetComponentsInternal(System.Type,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * GameObject_GetComponentsInternal_mAB759217A3AD0831ABD9387163126D391459E1B8 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, Type_t * ___type0, bool ___useSearchTypeAsArrayReturnType1, bool ___recursive2, bool ___includeInactive3, bool ___reverse4, RuntimeObject * ___resultList5, const RuntimeMethod* method);
// System.Int32 UnityEngine.Mesh::DefaultDimensionForChannel(UnityEngine.Rendering.VertexAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Mesh_DefaultDimensionForChannel_mF943AF434BB9F54DBB3B3DE65F7B816E617A89C9 (int32_t ___channel0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Mesh::get_canAccess()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Mesh_get_canAccess_m1E0020EA7961227FBC0D90D851A49BCF7EB1E194 (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Mesh::HasChannel(UnityEngine.Rendering.VertexAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Mesh_HasChannel_mF94FB364044F2A0812AF6DDDC811318159D2D4AD (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___ch0, const RuntimeMethod* method);
// System.Array UnityEngine.Mesh::GetAllocArrayFromChannelImpl(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh/InternalVertexChannelType,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Mesh_GetAllocArrayFromChannelImpl_m965F3844FBD29C866754948D036A6BC6ECF89334 (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, int32_t ___format1, int32_t ___dim2, const RuntimeMethod* method);
// System.Void UnityEngine.Mesh::PrintErrorCantAccessChannel(UnityEngine.Rendering.VertexAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Mesh_PrintErrorCantAccessChannel_m2E8A25959739B006557A94F7E460E8BE0B3ABB19 (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___ch0, const RuntimeMethod* method);
// UnityEngine.Object[] UnityEngine.Object::FindObjectsOfType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* Object_FindObjectsOfType_m3FC26FB3B36525BFBFCCCD1AEEE8A86712A12203 (Type_t * ___type0, const RuntimeMethod* method);
// UnityEngine.Object[] UnityEngine.Resources::FindObjectsOfTypeAll(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* Resources_FindObjectsOfTypeAll_mFFDC0207FEBD620424377896FC1B67307DB42520 (Type_t * ___type0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.ExecuteEvents::GetEventChain(UnityEngine.GameObject,System.Collections.Generic.IList`1<UnityEngine.Transform>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_GetEventChain_mD90FFC4A70E16AFA81AC6C9CFF174630F77C608C (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, RuntimeObject* ___eventChain1, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.Transform>::get_Item(System.Int32)
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * List_1_get_Item_m88FE4B6F43A2CD95BB9ECF8D801F206618FFFFB8_inline (List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * (*) (List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.Transform>::get_Count()
inline int32_t List_1_get_Count_mFB4F65ABD2DD0845C2448493238223FB4079A90C_inline (List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// UnityEngine.Transform UnityEngine.GameObject::get_transform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method);
// UnityEngine.Transform UnityEngine.Transform::get_parent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403 (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___x0, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___y1, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550 (const RuntimeMethod* method);
// System.Void UnityEngine.Networking.NetworkBehaviour::SetSyncVar<System.Object>(T,T&,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_SetSyncVar_TisRuntimeObject_mDC5B93C615AA596F16D1098A271CF25451046AC8_gshared (NetworkBehaviour_tE0C48D0A9ED8AC3977CAEF5B8090089CD544D19C * __this, RuntimeObject * ___value0, RuntimeObject ** ___fieldValue1, uint32_t ___dirtyBit2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NetworkBehaviour_SetSyncVar_TisRuntimeObject_mDC5B93C615AA596F16D1098A271CF25451046AC8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
V_0 = (bool)0;
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_001b;
}
}
{
RuntimeObject ** L_1 = ___fieldValue1;
RuntimeObject * L_2 = (*(RuntimeObject **)L_1);
if (!L_2)
{
goto IL_0037;
}
}
{
V_0 = (bool)1;
goto IL_0037;
}
IL_001b:
{
RuntimeObject ** L_3 = ___fieldValue1;
RuntimeObject * L_4 = (*(RuntimeObject **)L_3);
NullCheck((RuntimeObject *)(___value0));
bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(___value0), (RuntimeObject *)L_4);
V_0 = (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
}
IL_0037:
{
bool L_6 = V_0;
if (!L_6)
{
goto IL_00ad;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(LogFilter_t5202A297E770086F7954B8D6703BAC03C22654ED_il2cpp_TypeInfo_var);
bool L_7 = LogFilter_get_logDev_m0A07EDB9FE022B73B78A5CAE9543DB1C85C2FCEB(/*hidden argument*/NULL);
if (!L_7)
{
goto IL_009f;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)8);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_8;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, _stringLiteral8F2582A880B3405D36C51482DB13DBFA0F0CC8A9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral8F2582A880B3405D36C51482DB13DBFA0F0CC8A9);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_9;
NullCheck((RuntimeObject *)__this);
Type_t * L_11 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_11);
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_11);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_12);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_12);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_10;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, _stringLiteral2E834101FFA09925E25D757417D3FF8481703143);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral2E834101FFA09925E25D757417D3FF8481703143);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_13;
uint32_t L_15 = ___dirtyBit2;
uint32_t L_16 = L_15;
RuntimeObject * L_17 = Box(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var, &L_16);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_17);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_17);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_14;
NullCheck(L_18);
ArrayElementTypeCheck (L_18, _stringLiteral01AF91396F2E7927DC5CE2FFE22E72929461FD93);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral01AF91396F2E7927DC5CE2FFE22E72929461FD93);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_18;
RuntimeObject ** L_20 = ___fieldValue1;
RuntimeObject * L_21 = (*(RuntimeObject **)L_20);
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_21);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_21);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_19;
NullCheck(L_22);
ArrayElementTypeCheck (L_22, _stringLiteral6B8BDD37D6A5FE9BFD9CE2C3B38104FB717F3F22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)_stringLiteral6B8BDD37D6A5FE9BFD9CE2C3B38104FB717F3F22);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_22;
RuntimeObject * L_24 = ___value0;
NullCheck(L_23);
ArrayElementTypeCheck (L_23, L_24);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(7), (RuntimeObject *)L_24);
String_t* L_25 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_23, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_Log_m4B7C70BAFD477C6BDB59C88A0934F0B018D03708((RuntimeObject *)L_25, /*hidden argument*/NULL);
}
IL_009f:
{
uint32_t L_26 = ___dirtyBit2;
NullCheck((NetworkBehaviour_tE0C48D0A9ED8AC3977CAEF5B8090089CD544D19C *)__this);
NetworkBehaviour_SetDirtyBit_mBD8CAABF9BEA7A0304B7ADE9BF342A3C78BB4C20((NetworkBehaviour_tE0C48D0A9ED8AC3977CAEF5B8090089CD544D19C *)__this, (uint32_t)L_26, /*hidden argument*/NULL);
RuntimeObject ** L_27 = ___fieldValue1;
RuntimeObject * L_28 = ___value0;
*(RuntimeObject **)L_27 = L_28;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_27, (void*)L_28);
}
IL_00ad:
{
return;
}
}
// System.Void UnityEngine.Networking.NetworkClient::SetNetworkConnectionClass<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkClient_SetNetworkConnectionClass_TisRuntimeObject_m218CBEE6B3225A73DFDD15B5F65F8D7718D4FC5A_gshared (NetworkClient_t33B95FF43955FEC9083CA7222A143777B8B79F0F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NetworkClient_SetNetworkConnectionClass_TisRuntimeObject_m218CBEE6B3225A73DFDD15B5F65F8D7718D4FC5A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
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);
__this->set_m_NetworkConnectionClass_0(L_1);
return;
}
}
// System.Void UnityEngine.Networking.NetworkMessage::ReadMessage<System.Object>(TMsg)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkMessage_ReadMessage_TisRuntimeObject_mA1E3852BAED836090D0A0B7F3C024B28EC78D45F_gshared (NetworkMessage_tCD66E2AE395A185EFE622EBB5497C95F6754685C * __this, RuntimeObject * ___msg0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___msg0;
NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 * L_1 = (NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 *)__this->get_reader_3();
NullCheck((MessageBase_t2EA42B01AD6A5F36EAF84BE623801951B9F55416 *)L_0);
VirtActionInvoker1< NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 * >::Invoke(4 /* System.Void UnityEngine.Networking.MessageBase::Deserialize(UnityEngine.Networking.NetworkReader) */, (MessageBase_t2EA42B01AD6A5F36EAF84BE623801951B9F55416 *)L_0, (NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 *)L_1);
return;
}
}
// System.Void UnityEngine.Networking.NetworkServer::SetNetworkConnectionClass<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkServer_SetNetworkConnectionClass_TisRuntimeObject_m6560DEFCDEFB40A1CBDA4C9575209C70FBA58933_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NetworkServer_SetNetworkConnectionClass_TisRuntimeObject_m6560DEFCDEFB40A1CBDA4C9575209C70FBA58933_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1_il2cpp_TypeInfo_var);
NetworkServer_tFD62C268FC6F01624A5989BFC1D0DD689A66B4A1 * L_0 = NetworkServer_get_instance_mFF3DBDB2EFFB44BF46A14F4028BDCA97A22449D2(/*hidden argument*/NULL);
NullCheck(L_0);
ServerSimpleWrapper_t1ECF42A66748FA970402440F00E743DB5E2AAA32 * L_1 = (ServerSimpleWrapper_t1ECF42A66748FA970402440F00E743DB5E2AAA32 *)L_0->get_m_SimpleServerSimple_9();
NullCheck((NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648 *)L_1);
(( void (*) (NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return;
}
}
// System.Void UnityEngine.Networking.NetworkServerSimple::SetNetworkConnectionClass<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkServerSimple_SetNetworkConnectionClass_TisRuntimeObject_mF8591090F35D9FFF167DE2D4DCA946AB3A6052DC_gshared (NetworkServerSimple_t498594E491F465E83B4813F600F8E2E9F192D648 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NetworkServerSimple_SetNetworkConnectionClass_TisRuntimeObject_mF8591090F35D9FFF167DE2D4DCA946AB3A6052DC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
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);
__this->set_m_NetworkConnectionClass_7(L_1);
return;
}
}
// System.Void UnityEngine.UI.LayoutGroup::SetProperty<System.Boolean>(T&,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutGroup_SetProperty_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m4C846BC065405A9DEC622F4DF88BB21DEFD698B1_gshared (LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 * __this, bool* ___currentValue0, bool ___newValue1, const RuntimeMethod* method)
{
{
goto IL_0015;
}
{
}
IL_0015:
{
}
{
bool* L_3 = ___currentValue0;
bool L_4 = ___newValue1;
bool L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_5);
bool L_7 = Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7((bool*)(bool*)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0037;
}
}
IL_0036:
{
return;
}
IL_0037:
{
bool* L_8 = ___currentValue0;
bool L_9 = ___newValue1;
*(bool*)L_8 = L_9;
NullCheck((LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 *)__this);
LayoutGroup_SetDirty_m645D3182781863DCF43C794556AFE0A7B5342D2A((LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.UI.LayoutGroup::SetProperty<System.Int32>(T&,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutGroup_SetProperty_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m9781F3FE5BD564E67B85F083DA762A3A33B9EE8C_gshared (LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 * __this, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method)
{
{
goto IL_0015;
}
{
}
IL_0015:
{
}
{
int32_t* L_3 = ___currentValue0;
int32_t L_4 = ___newValue1;
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_5);
bool L_7 = Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C((int32_t*)(int32_t*)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0037;
}
}
IL_0036:
{
return;
}
IL_0037:
{
int32_t* L_8 = ___currentValue0;
int32_t L_9 = ___newValue1;
*(int32_t*)L_8 = L_9;
NullCheck((LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 *)__this);
LayoutGroup_SetDirty_m645D3182781863DCF43C794556AFE0A7B5342D2A((LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.UI.LayoutGroup::SetProperty<System.Int32Enum>(T&,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutGroup_SetProperty_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m0578FC28F38E4404AC6A0794226ACD3420BCFBBB_gshared (LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 * __this, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method)
{
{
goto IL_0015;
}
{
}
IL_0015:
{
}
{
int32_t* L_3 = ___currentValue0;
int32_t L_4 = ___newValue1;
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_5);
Il2CppFakeBox<int32_t> L_7(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_3);
bool L_8 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(&L_7), (RuntimeObject *)L_6);
if (!L_8)
{
goto IL_0037;
}
}
IL_0036:
{
return;
}
IL_0037:
{
int32_t* L_9 = ___currentValue0;
int32_t L_10 = ___newValue1;
*(int32_t*)L_9 = L_10;
NullCheck((LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 *)__this);
LayoutGroup_SetDirty_m645D3182781863DCF43C794556AFE0A7B5342D2A((LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.UI.LayoutGroup::SetProperty<System.Object>(T&,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutGroup_SetProperty_TisRuntimeObject_mDF4B3EFF888FB1CFDFE9233CE926021722C21695_gshared (LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 * __this, RuntimeObject ** ___currentValue0, RuntimeObject * ___newValue1, const RuntimeMethod* method)
{
{
RuntimeObject ** L_0 = ___currentValue0;
RuntimeObject * L_1 = (*(RuntimeObject **)L_0);
if (L_1)
{
goto IL_0015;
}
}
{
RuntimeObject * L_2 = ___newValue1;
if (!L_2)
{
goto IL_0036;
}
}
IL_0015:
{
RuntimeObject ** L_3 = ___currentValue0;
RuntimeObject * L_4 = (*(RuntimeObject **)L_3);
if (!L_4)
{
goto IL_0037;
}
}
{
RuntimeObject ** L_5 = ___currentValue0;
RuntimeObject * L_6 = ___newValue1;
NullCheck((RuntimeObject *)(*L_5));
bool L_7 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(*L_5), (RuntimeObject *)L_6);
if (!L_7)
{
goto IL_0037;
}
}
IL_0036:
{
return;
}
IL_0037:
{
RuntimeObject ** L_8 = ___currentValue0;
RuntimeObject * L_9 = ___newValue1;
*(RuntimeObject **)L_8 = L_9;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_8, (void*)L_9);
NullCheck((LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 *)__this);
LayoutGroup_SetDirty_m645D3182781863DCF43C794556AFE0A7B5342D2A((LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.UI.LayoutGroup::SetProperty<System.Single>(T&,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutGroup_SetProperty_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m60025FD653C9E99814B1C70BDBAB046729F088C8_gshared (LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 * __this, float* ___currentValue0, float ___newValue1, const RuntimeMethod* method)
{
{
goto IL_0015;
}
{
}
IL_0015:
{
}
{
float* L_3 = ___currentValue0;
float L_4 = ___newValue1;
float L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_5);
bool L_7 = Single_Equals_mF4C7AEA9D216B3C9CB735BF327D07BF50F101A16((float*)(float*)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0037;
}
}
IL_0036:
{
return;
}
IL_0037:
{
float* L_8 = ___currentValue0;
float L_9 = ___newValue1;
*(float*)L_8 = L_9;
NullCheck((LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 *)__this);
LayoutGroup_SetDirty_m645D3182781863DCF43C794556AFE0A7B5342D2A((LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.UI.LayoutGroup::SetProperty<UnityEngine.Vector2>(T&,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutGroup_SetProperty_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_mD4C60D6766D821EB1D4281260F6B12A617C369F5_gshared (LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * ___currentValue0, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___newValue1, const RuntimeMethod* method)
{
{
goto IL_0015;
}
{
}
IL_0015:
{
}
{
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_3 = ___currentValue0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_4 = ___newValue1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_5);
bool L_7 = Vector2_Equals_m4A2A75BC3D09933321220BCEF21219B38AF643AE((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0037;
}
}
IL_0036:
{
return;
}
IL_0037:
{
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_8 = ___currentValue0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_9 = ___newValue1;
*(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)L_8 = L_9;
NullCheck((LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 *)__this);
LayoutGroup_SetDirty_m645D3182781863DCF43C794556AFE0A7B5342D2A((LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 *)__this, /*hidden argument*/NULL);
return;
}
}
// T System.Activator::CreateInstance<System.Object>()
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_TisRuntimeObject_mDA89B83096094F5172A908AB1A58EF573D6B80F9_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Activator_CreateInstance_TisRuntimeObject_mDA89B83096094F5172A908AB1A58EF573D6B80F9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B2_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B1_0 = 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);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInst((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
NullCheck((Type_t *)L_2);
bool L_3 = Type_get_HasElementType_m598BEFE66F168CE1D1132C87D394B2EF41F449BF((Type_t *)L_2, /*hidden argument*/NULL);
G_B1_0 = L_2;
if (!L_3)
{
G_B2_0 = L_2;
goto IL_0027;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteral8F21CBA58007DD2948E09F425535D825423801C1, /*hidden argument*/NULL);
MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * L_5 = (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 *)il2cpp_codegen_object_new(MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498_il2cpp_TypeInfo_var);
MissingMethodException__ctor_m44F1A1E3C426F8902FFAB4DA991DA1650FA14EE9(L_5, (String_t*)L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Activator_CreateInstance_TisRuntimeObject_mDA89B83096094F5172A908AB1A58EF573D6B80F9_RuntimeMethod_var);
}
IL_0027:
{
V_0 = (int32_t)1;
NullCheck((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)G_B2_0);
RuntimeObject * L_6 = RuntimeType_CreateInstanceDefaultCtor_m7553969A13B4A66B8A0D95C3B598CE3B92325064((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)G_B2_0, (bool)1, (bool)1, (bool)1, (int32_t*)(int32_t*)(&V_0), /*hidden argument*/NULL);
return ((RuntimeObject *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
}
}
// T System.Array::Find<System.Object>(T[],System.Predicate`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_Find_TisRuntimeObject_mB8509653F89FF33B78C3019FD9A78297F222C337_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___match1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Find_TisRuntimeObject_mB8509653F89FF33B78C3019FD9A78297F222C337_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject * V_1 = 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_Find_TisRuntimeObject_mB8509653F89FF33B78C3019FD9A78297F222C337_RuntimeMethod_var);
}
IL_000e:
{
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_2 = ___match1;
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_Find_TisRuntimeObject_mB8509653F89FF33B78C3019FD9A78297F222C337_RuntimeMethod_var);
}
IL_001c:
{
V_0 = (int32_t)0;
goto IL_003b;
}
IL_0020:
{
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_4 = ___match1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___array0;
int32_t L_6 = V_0;
NullCheck(L_5);
int32_t L_7 = L_6;
RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_4);
bool L_9 = (( bool (*) (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_4, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
if (!L_9)
{
goto IL_0037;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = ___array0;
int32_t L_11 = V_0;
NullCheck(L_10);
int32_t L_12 = L_11;
RuntimeObject * L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
return L_13;
}
IL_0037:
{
int32_t L_14 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_003b:
{
int32_t L_15 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = ___array0;
NullCheck(L_16);
if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))))
{
goto IL_0020;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *));
RuntimeObject * L_17 = V_1;
return L_17;
}
}
// T System.Array::FindLast<System.Object>(T[],System.Predicate`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_FindLast_TisRuntimeObject_m4E31CFB84B91215A9C9C168FA4ECB1DF3EA123AB_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___match1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_FindLast_TisRuntimeObject_m4E31CFB84B91215A9C9C168FA4ECB1DF3EA123AB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject * V_1 = 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_FindLast_TisRuntimeObject_m4E31CFB84B91215A9C9C168FA4ECB1DF3EA123AB_RuntimeMethod_var);
}
IL_000e:
{
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_2 = ___match1;
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_FindLast_TisRuntimeObject_m4E31CFB84B91215A9C9C168FA4ECB1DF3EA123AB_RuntimeMethod_var);
}
IL_001c:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0;
NullCheck(L_4);
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)1));
goto IL_003f;
}
IL_0024:
{
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_5 = ___match1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = ___array0;
int32_t L_7 = V_0;
NullCheck(L_6);
int32_t L_8 = L_7;
RuntimeObject * L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
NullCheck((Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_5);
bool L_10 = (( bool (*) (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_5, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
if (!L_10)
{
goto IL_003b;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = ___array0;
int32_t L_12 = V_0;
NullCheck(L_11);
int32_t L_13 = L_12;
RuntimeObject * L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
return L_14;
}
IL_003b:
{
int32_t L_15 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1));
}
IL_003f:
{
int32_t L_16 = V_0;
if ((((int32_t)L_16) >= ((int32_t)0)))
{
goto IL_0024;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *));
RuntimeObject * L_17 = V_1;
return L_17;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<Mono.Globalization.Unicode.CodePointIndexer_TableRange>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 Array_InternalArray__IReadOnlyList_get_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_mC22677B8BB3C2E2FD6E8EFEDAE1263F7C1552473_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_mC22677B8BB3C2E2FD6E8EFEDAE1263F7C1552473_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_mC22677B8BB3C2E2FD6E8EFEDAE1263F7C1552473_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(&V_0));
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.ArraySegment`1<System.Byte>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA Array_InternalArray__IReadOnlyList_get_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m30C0C47C4512435E439A7ED471BBEED9083E49CB_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m30C0C47C4512435E439A7ED471BBEED9083E49CB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m30C0C47C4512435E439A7ED471BBEED9083E49CB_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA *)(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA *)(&V_0));
ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Boolean>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_InternalArray__IReadOnlyList_get_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m35D71EC8F506ABBDEAB4DA491A0C39F130AAA398_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m35D71EC8F506ABBDEAB4DA491A0C39F130AAA398_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m35D71EC8F506ABBDEAB4DA491A0C39F130AAA398_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (bool*)(bool*)(&V_0));
bool L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Byte>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Array_InternalArray__IReadOnlyList_get_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mA20976BDE39E7CDFAE80707F5D7B8782D2DB26F1_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mA20976BDE39E7CDFAE80707F5D7B8782D2DB26F1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t V_0 = 0x0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mA20976BDE39E7CDFAE80707F5D7B8782D2DB26F1_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint8_t*)(uint8_t*)(&V_0));
uint8_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Char>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Array_InternalArray__IReadOnlyList_get_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8A9BCF051C369596DC54FFC5AF2E53311B3085AC_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8A9BCF051C369596DC54FFC5AF2E53311B3085AC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8A9BCF051C369596DC54FFC5AF2E53311B3085AC_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Il2CppChar*)(Il2CppChar*)(&V_0));
Il2CppChar L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.DictionaryEntry>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Array_InternalArray__IReadOnlyList_get_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m68307563E8A8612829E8C8D1010115AF810C2A27_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m68307563E8A8612829E8C8D1010115AF810C2A27_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m68307563E8A8612829E8C8D1010115AF810C2A27_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_0));
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3_m99370E3D9350C54CCA064D13AD948820F6D14CF8_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3_m99370E3D9350C54CCA064D13AD948820F6D14CF8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3_m99370E3D9350C54CCA064D13AD948820F6D14CF8_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 *)(Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 *)(&V_0));
Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mBB9351B9A332C5E66A4C12BE34CB36FB09A0AD84_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mBB9351B9A332C5E66A4C12BE34CB36FB09A0AD84_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mBB9351B9A332C5E66A4C12BE34CB36FB09A0AD84_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(&V_0));
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA_mCF694E3E6C3BD9DA431AF5A3BF5E21387B53C3CF_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA_mCF694E3E6C3BD9DA431AF5A3BF5E21387B53C3CF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA_mCF694E3E6C3BD9DA431AF5A3BF5E21387B53C3CF_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA *)(Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA *)(&V_0));
Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_mA1993BD92A566CB774DB1DB93E022FEE3C178CE4_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_mA1993BD92A566CB774DB1DB93E022FEE3C178CE4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_mA1993BD92A566CB774DB1DB93E022FEE3C178CE4_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(&V_0));
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t39E5078AF9E9A002524BC15C94626539E28F1DD0_m2FC92B6A540B1B221877F88A1E771C4B170552E7_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t39E5078AF9E9A002524BC15C94626539E28F1DD0_m2FC92B6A540B1B221877F88A1E771C4B170552E7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t39E5078AF9E9A002524BC15C94626539E28F1DD0_m2FC92B6A540B1B221877F88A1E771C4B170552E7_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 *)(Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 *)(&V_0));
Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41_m70851182CC3514A03DE62928DC5E7B4AE051F488_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41_m70851182CC3514A03DE62928DC5E7B4AE051F488_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41_m70851182CC3514A03DE62928DC5E7B4AE051F488_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 *)(Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 *)(&V_0));
Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m5BB4D70758EF8C6AFCFC3A0CE70EB0BA56014BDF_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m5BB4D70758EF8C6AFCFC3A0CE70EB0BA56014BDF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m5BB4D70758EF8C6AFCFC3A0CE70EB0BA56014BDF_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(&V_0));
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m9AE27399BB6EC825F7276F24EECB292251BD0CB7_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m9AE27399BB6EC825F7276F24EECB292251BD0CB7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m9AE27399BB6EC825F7276F24EECB292251BD0CB7_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(&V_0));
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t199B9164AC346CAFF297C44D6DF2326A3634773E_mA2EBFD8E91214965241C6DC4DE7ECCA476860A8C_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t199B9164AC346CAFF297C44D6DF2326A3634773E_mA2EBFD8E91214965241C6DC4DE7ECCA476860A8C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t199B9164AC346CAFF297C44D6DF2326A3634773E_mA2EBFD8E91214965241C6DC4DE7ECCA476860A8C_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E *)(Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E *)(&V_0));
Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m8D765D0F36D3032CCB14ED4831E45D7E2BC0546F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m8D765D0F36D3032CCB14ED4831E45D7E2BC0546F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m8D765D0F36D3032CCB14ED4831E45D7E2BC0546F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)(&V_0));
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tB17A20FF297E1D4E33181E36238F550A443DFD91_m9A269F79BA22C6B161F552CC4C24A4387B19B278_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tB17A20FF297E1D4E33181E36238F550A443DFD91_m9A269F79BA22C6B161F552CC4C24A4387B19B278_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_tB17A20FF297E1D4E33181E36238F550A443DFD91_m9A269F79BA22C6B161F552CC4C24A4387B19B278_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 *)(Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 *)(&V_0));
Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t8E09DFCC6D674230C233702F449DB762B53A2031_m4BF436A83CFF761046536805211E24AED4A2ED17_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t8E09DFCC6D674230C233702F449DB762B53A2031_m4BF436A83CFF761046536805211E24AED4A2ED17_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t8E09DFCC6D674230C233702F449DB762B53A2031_m4BF436A83CFF761046536805211E24AED4A2ED17_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 *)(Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 *)(&V_0));
Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A_m4A18392565D1FA2BE698EABCD1276C9E4DCD2E3C_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A_m4A18392565D1FA2BE698EABCD1276C9E4DCD2E3C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A_m4A18392565D1FA2BE698EABCD1276C9E4DCD2E3C_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A *)(Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A *)(&V_0));
Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F_mBF1B83DE94B6C1C21BD685531EC5A0EE1FF2C54E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F_mBF1B83DE94B6C1C21BD685531EC5A0EE1FF2C54E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F_mBF1B83DE94B6C1C21BD685531EC5A0EE1FF2C54E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F *)(Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F *)(&V_0));
Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.HashSet`1_Slot<System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 Array_InternalArray__IReadOnlyList_get_Item_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_m16FFF75D5F2920E7FECF993A0C0537D58AB690C0_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_m16FFF75D5F2920E7FECF993A0C0537D58AB690C0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_m16FFF75D5F2920E7FECF993A0C0537D58AB690C0_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 *)(Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 *)(&V_0));
Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.HashSet`1_Slot<System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 Array_InternalArray__IReadOnlyList_get_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m045B811FF1EB9EB084635F408D509B2081199C98_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m045B811FF1EB9EB084635F408D509B2081199C98_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m045B811FF1EB9EB084635F408D509B2081199C98_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)(&V_0));
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.HashSet`1_Slot<UnityEngine.Networking.NetworkInstanceId>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE Array_InternalArray__IReadOnlyList_get_Item_TisSlot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE_mC774715485B839266C4724F1C26460A696465880_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisSlot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE_mC774715485B839266C4724F1C26460A696465880_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisSlot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE_mC774715485B839266C4724F1C26460A696465880_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE *)(Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE *)(&V_0));
Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m1FDA4C119EA5BEDA9E3E30256B1B1C366E3F41B1_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m1FDA4C119EA5BEDA9E3E30256B1B1C366E3F41B1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m1FDA4C119EA5BEDA9E3E30256B1B1C366E3F41B1_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(&V_0));
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mF23635BA7CC17669D742EA635FBE69BC61FA66F3_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mF23635BA7CC17669D742EA635FBE69BC61FA66F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mF23635BA7CC17669D742EA635FBE69BC61FA66F3_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)(&V_0));
KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m8C70310D622A1B1605DD6D7ACFFC611C08B41272_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m8C70310D622A1B1605DD6D7ACFFC611C08B41272_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m8C70310D622A1B1605DD6D7ACFFC611C08B41272_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(&V_0));
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Int16,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03_m06049BAB5AA0A23249D676BBB63DB2C91CE20CFB_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03_m06049BAB5AA0A23249D676BBB63DB2C91CE20CFB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03_m06049BAB5AA0A23249D676BBB63DB2C91CE20CFB_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03 *)(KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03 *)(&V_0));
KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367_m1AF51A35EF6BFAFF7B2A441CBD977B4EDE3D18B2_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367_m1AF51A35EF6BFAFF7B2A441CBD977B4EDE3D18B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367_m1AF51A35EF6BFAFF7B2A441CBD977B4EDE3D18B2_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)(&V_0));
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF_mDA12E6C4504C7EC792157440B19398FD399C318C_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF_mDA12E6C4504C7EC792157440B19398FD399C318C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF_mDA12E6C4504C7EC792157440B19398FD399C318C_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF *)(KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF *)(&V_0));
KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mEBF0FA040E7F47BBB25F2E8B521190971A4F94BD_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mEBF0FA040E7F47BBB25F2E8B521190971A4F94BD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mEBF0FA040E7F47BBB25F2E8B521190971A4F94BD_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(&V_0));
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_mD3408DB78285D3922662AA4F7A5DC6B89870FF7A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_mD3408DB78285D3922662AA4F7A5DC6B89870FF7A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_mD3408DB78285D3922662AA4F7A5DC6B89870FF7A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(&V_0));
KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2_mA4ABE6BCB1B84D1684F954ED195F07D24558209F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2_mA4ABE6BCB1B84D1684F954ED195F07D24558209F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2_mA4ABE6BCB1B84D1684F954ED195F07D24558209F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(&V_0));
KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD8E7932136B09DB9DEF32AA6FE217F32D860C43D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD8E7932136B09DB9DEF32AA6FE217F32D860C43D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD8E7932136B09DB9DEF32AA6FE217F32D860C43D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&V_0));
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_mA6FA92FD002D406D05A07134DC2BC8135E874B3F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_mA6FA92FD002D406D05A07134DC2BC8135E874B3F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_mA6FA92FD002D406D05A07134DC2BC8135E874B3F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&V_0));
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5_mE137801D3995A0812EC67BD13E3C27154E6E0C33_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5_mE137801D3995A0812EC67BD13E3C27154E6E0C33_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5_mE137801D3995A0812EC67BD13E3C27154E6E0C33_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(&V_0));
KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m6E4B947482045717A1235E904E57CE8E069A6570_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m6E4B947482045717A1235E904E57CE8E069A6570_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m6E4B947482045717A1235E904E57CE8E069A6570_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 *)(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 *)(&V_0));
KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.UInt64Enum,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA_mC4C1B10EDEEA41BF5ECFC883824597E6074CBB4B_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA_mC4C1B10EDEEA41BF5ECFC883824597E6074CBB4B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA_mC4C1B10EDEEA41BF5ECFC883824597E6074CBB4B_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA *)(KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA *)(&V_0));
KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkHash128,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0_m52CA2B4B0064162747A249352EC38BAFBE4DC5D7_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0_m52CA2B4B0064162747A249352EC38BAFBE4DC5D7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0_m52CA2B4B0064162747A249352EC38BAFBE4DC5D7_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0 *)(KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0 *)(&V_0));
KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkInstanceId,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013_m70E213DBFA61DC70BE981243D87479BAED14F46F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013_m70E213DBFA61DC70BE981243D87479BAED14F46F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013_m70E213DBFA61DC70BE981243D87479BAED14F46F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013 *)(KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013 *)(&V_0));
KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkSceneId,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8_m32B4726F90F2B91DD4CCC53A665C0773DA6ACF0D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8_m32B4726F90F2B91DD4CCC53A665C0773DA6ACF0D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8_m32B4726F90F2B91DD4CCC53A665C0773DA6ACF0D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8 *)(KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8 *)(&V_0));
KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Hashtable_bucket>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 Array_InternalArray__IReadOnlyList_get_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m0F9E7F24987CE293C28F6C14F3075C20F505C26B_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m0F9E7F24987CE293C28F6C14F3075C20F505C26B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m0F9E7F24987CE293C28F6C14F3075C20F505C26B_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)(&V_0));
bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.DateTime>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Array_InternalArray__IReadOnlyList_get_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mCD6665078DDF4047758A406CD953DBD6FFB70478_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mCD6665078DDF4047758A406CD953DBD6FFB70478_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mCD6665078DDF4047758A406CD953DBD6FFB70478_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0));
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Decimal>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Array_InternalArray__IReadOnlyList_get_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mA5EA9A997E687B2A740812E57305FAD0B5428F3F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mA5EA9A997E687B2A740812E57305FAD0B5428F3F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mA5EA9A997E687B2A740812E57305FAD0B5428F3F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(&V_0));
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Diagnostics.Tracing.EventProvider_SessionInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A Array_InternalArray__IReadOnlyList_get_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mE0A42E82FF714E2989C444EB78B6C005A4604BC7_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mE0A42E82FF714E2989C444EB78B6C005A4604BC7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mE0A42E82FF714E2989C444EB78B6C005A4604BC7_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A *)(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A *)(&V_0));
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Diagnostics.Tracing.EventSource_EventMetadata>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B Array_InternalArray__IReadOnlyList_get_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mBB31C607B411E6085409D85D4923B37DEF523008_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mBB31C607B411E6085409D85D4923B37DEF523008_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mBB31C607B411E6085409D85D4923B37DEF523008_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B *)(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B *)(&V_0));
EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Double>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Array_InternalArray__IReadOnlyList_get_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m89B0E816317A499BFFFF1F32EC99B68D1045E6C9_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m89B0E816317A499BFFFF1F32EC99B68D1045E6C9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
double V_0 = 0.0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m89B0E816317A499BFFFF1F32EC99B68D1045E6C9_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (double*)(double*)(&V_0));
double L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Globalization.InternalCodePageDataItem>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 Array_InternalArray__IReadOnlyList_get_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m27C62570D0F265FD04FA8E6A480284B26DB44AE2_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m27C62570D0F265FD04FA8E6A480284B26DB44AE2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m27C62570D0F265FD04FA8E6A480284B26DB44AE2_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)(&V_0));
InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Globalization.InternalEncodingDataItem>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 Array_InternalArray__IReadOnlyList_get_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mCE86842C0F97A7F4669040429C23BF3438BDB39B_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mCE86842C0F97A7F4669040429C23BF3438BDB39B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mCE86842C0F97A7F4669040429C23BF3438BDB39B_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)(&V_0));
InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Guid>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Array_InternalArray__IReadOnlyList_get_Item_TisGuid_t_mC7579366A25132E1C71A250DBB784A903BCADCCC_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisGuid_t_mC7579366A25132E1C71A250DBB784A903BCADCCC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Guid_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisGuid_t_mC7579366A25132E1C71A250DBB784A903BCADCCC_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Guid_t *)(Guid_t *)(&V_0));
Guid_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Int16>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Array_InternalArray__IReadOnlyList_get_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mC0FBBA64A8AD9D86D56FED81BFDE1F2F06F88490_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mC0FBBA64A8AD9D86D56FED81BFDE1F2F06F88490_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int16_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mC0FBBA64A8AD9D86D56FED81BFDE1F2F06F88490_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int16_t*)(int16_t*)(&V_0));
int16_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Int32>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mEFD1A61B0B41A9FFD0F040F4A1A07220F8F0CD90_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mEFD1A61B0B41A9FFD0F040F4A1A07220F8F0CD90_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mEFD1A61B0B41A9FFD0F040F4A1A07220F8F0CD90_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Int32Enum>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mD7D437DF6139243DC88F2B7DE2305205C2905D26_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mD7D437DF6139243DC88F2B7DE2305205C2905D26_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mD7D437DF6139243DC88F2B7DE2305205C2905D26_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Int64>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Array_InternalArray__IReadOnlyList_get_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m1CF13A729DFD610EBB2D8C060C5AF62C6F1CBBE9_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m1CF13A729DFD610EBB2D8C060C5AF62C6F1CBBE9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m1CF13A729DFD610EBB2D8C060C5AF62C6F1CBBE9_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int64_t*)(int64_t*)(&V_0));
int64_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.IntPtr>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Array_InternalArray__IReadOnlyList_get_Item_TisIntPtr_t_m97F983B47BBAF278F9F2B9B14AAD5D1639754C48_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisIntPtr_t_m97F983B47BBAF278F9F2B9B14AAD5D1639754C48_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisIntPtr_t_m97F983B47BBAF278F9F2B9B14AAD5D1639754C48_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (intptr_t*)(intptr_t*)(&V_0));
intptr_t L_4 = V_0;
return (intptr_t)L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Net.Sockets.Socket_WSABUF>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE Array_InternalArray__IReadOnlyList_get_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m3F09800A0C792413A927D72A12670BC9A86EA4A5_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m3F09800A0C792413A927D72A12670BC9A86EA4A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m3F09800A0C792413A927D72A12670BC9A86EA4A5_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE *)(WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE *)(&V_0));
WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Object>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_InternalArray__IReadOnlyList_get_Item_TisRuntimeObject_m08E712C1A936A68ACBDDDB3BD61F20658A5A1F59_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisRuntimeObject_m08E712C1A936A68ACBDDDB3BD61F20658A5A1F59_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisRuntimeObject_m08E712C1A936A68ACBDDDB3BD61F20658A5A1F59_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RuntimeObject **)(RuntimeObject **)(&V_0));
RuntimeObject * L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.ParameterizedStrings_FormatParam>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 Array_InternalArray__IReadOnlyList_get_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m90C1DA8A90349E98D0CAE4E6E9F8B13CDD9D383F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m90C1DA8A90349E98D0CAE4E6E9F8B13CDD9D383F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m90C1DA8A90349E98D0CAE4E6E9F8B13CDD9D383F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)(&V_0));
FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.CustomAttributeNamedArgument>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m7FE4474292FC7BC61503EBAA451177566C7A11F2_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m7FE4474292FC7BC61503EBAA451177566C7A11F2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m7FE4474292FC7BC61503EBAA451177566C7A11F2_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(&V_0));
CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.CustomAttributeTypedArgument>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m782303121097277DB87E5CF415EF0465C4B4A1B1_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m782303121097277DB87E5CF415EF0465C4B4A1B1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m782303121097277DB87E5CF415EF0465C4B4A1B1_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(&V_0));
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.ParameterModifier>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E Array_InternalArray__IReadOnlyList_get_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m20B1886525CDB86FF07F92A29DFF25F3C3297949_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m20B1886525CDB86FF07F92A29DFF25F3C3297949_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m20B1886525CDB86FF07F92A29DFF25F3C3297949_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)(&V_0));
ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Resources.ResourceLocator>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C Array_InternalArray__IReadOnlyList_get_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mAE9047DFAA2BB7016E21BFAFA99BCD7C274D6119_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mAE9047DFAA2BB7016E21BFAFA99BCD7C274D6119_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mAE9047DFAA2BB7016E21BFAFA99BCD7C274D6119_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)(&V_0));
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Runtime.CompilerServices.Ephemeron>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA Array_InternalArray__IReadOnlyList_get_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mAB5413860CB11C4079C1BB386E21AF2E0BDF3321_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mAB5413860CB11C4079C1BB386E21AF2E0BDF3321_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mAB5413860CB11C4079C1BB386E21AF2E0BDF3321_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)(&V_0));
Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Runtime.InteropServices.GCHandle>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 Array_InternalArray__IReadOnlyList_get_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mC2EC9BDCF259FBF41231168EB670844F06EA064F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mC2EC9BDCF259FBF41231168EB670844F06EA064F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mC2EC9BDCF259FBF41231168EB670844F06EA064F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&V_0));
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.SByte>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Array_InternalArray__IReadOnlyList_get_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m542710B68FCD399C6523BAA5B1E342DB12FA6C41_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m542710B68FCD399C6523BAA5B1E342DB12FA6C41_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int8_t V_0 = 0x0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m542710B68FCD399C6523BAA5B1E342DB12FA6C41_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int8_t*)(int8_t*)(&V_0));
int8_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Single>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Array_InternalArray__IReadOnlyList_get_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m08091EB834286C575732D7E88D50862B35589EC5_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m08091EB834286C575732D7E88D50862B35589EC5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m08091EB834286C575732D7E88D50862B35589EC5_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (float*)(float*)(&V_0));
float L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B Array_InternalArray__IReadOnlyList_get_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m63AAEF4BA3CC016E2F8D6A5D0EC53D359279C943_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m63AAEF4BA3CC016E2F8D6A5D0EC53D359279C943_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m63AAEF4BA3CC016E2F8D6A5D0EC53D359279C943_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)(&V_0));
LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Threading.CancellationTokenRegistration>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 Array_InternalArray__IReadOnlyList_get_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m53E8625AE904443A1E1DBCCF105D4577B179F5C2_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m53E8625AE904443A1E1DBCCF105D4577B179F5C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m53E8625AE904443A1E1DBCCF105D4577B179F5C2_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(&V_0));
CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.TimeSpan>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 Array_InternalArray__IReadOnlyList_get_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m50C17816856C83AC643E0C9514C311816C06ADFB_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m50C17816856C83AC643E0C9514C311816C06ADFB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m50C17816856C83AC643E0C9514C311816C06ADFB_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_0));
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.UInt16>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Array_InternalArray__IReadOnlyList_get_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m333BB1E13495F525681D8CD750954CB38787E0E4_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m333BB1E13495F525681D8CD750954CB38787E0E4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint16_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m333BB1E13495F525681D8CD750954CB38787E0E4_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint16_t*)(uint16_t*)(&V_0));
uint16_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.UInt32>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mFA15CACC0FB406A96AEE4FB4C35AA6C3DF7CDB94_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mFA15CACC0FB406A96AEE4FB4C35AA6C3DF7CDB94_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mFA15CACC0FB406A96AEE4FB4C35AA6C3DF7CDB94_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint32_t*)(uint32_t*)(&V_0));
uint32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.UInt64>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Array_InternalArray__IReadOnlyList_get_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m8AAD596833F8BEBCA1E526874718756C351CEE01_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m8AAD596833F8BEBCA1E526874718756C351CEE01_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint64_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m8AAD596833F8BEBCA1E526874718756C351CEE01_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint64_t*)(uint64_t*)(&V_0));
uint64_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.UInt64Enum>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Array_InternalArray__IReadOnlyList_get_Item_TisUInt64Enum_tEAD217F175F60689A664303784384DEF759D24C8_m996BA283944F3C95BE0BB6689453EC9A19236A97_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUInt64Enum_tEAD217F175F60689A664303784384DEF759D24C8_m996BA283944F3C95BE0BB6689453EC9A19236A97_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint64_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisUInt64Enum_tEAD217F175F60689A664303784384DEF759D24C8_m996BA283944F3C95BE0BB6689453EC9A19236A97_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint64_t*)(uint64_t*)(&V_0));
uint64_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.UIntPtr>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uintptr_t Array_InternalArray__IReadOnlyList_get_Item_TisUIntPtr_t_m446B08574377791B5780B08A4FC9FD0EF840C976_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUIntPtr_t_m446B08574377791B5780B08A4FC9FD0EF840C976_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uintptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisUIntPtr_t_m446B08574377791B5780B08A4FC9FD0EF840C976_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uintptr_t*)(uintptr_t*)(&V_0));
uintptr_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.BeforeRenderHelper_OrderBlock>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 Array_InternalArray__IReadOnlyList_get_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mD0FE97B15C9FA8B66BB462AA2A30F988EA03299C_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mD0FE97B15C9FA8B66BB462AA2A30F988EA03299C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mD0FE97B15C9FA8B66BB462AA2A30F988EA03299C_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)(&V_0));
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Color32>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 Array_InternalArray__IReadOnlyList_get_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m5B1598323DDCFCA00E53E5D898D026781060AB03_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m5B1598323DDCFCA00E53E5D898D026781060AB03_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m5B1598323DDCFCA00E53E5D898D026781060AB03_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)(&V_0));
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.ContactPoint2D>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 Array_InternalArray__IReadOnlyList_get_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mD68E6BB921EFA3B762CFAB6A1C463A58F26FC3C3_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mD68E6BB921EFA3B762CFAB6A1C463A58F26FC3C3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mD68E6BB921EFA3B762CFAB6A1C463A58F26FC3C3_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 *)(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 *)(&V_0));
ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.ContactPoint>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 Array_InternalArray__IReadOnlyList_get_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m9EBDE7DEA2408A7206ADAB86BD45E77DF5C63A81_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m9EBDE7DEA2408A7206ADAB86BD45E77DF5C63A81_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m9EBDE7DEA2408A7206ADAB86BD45E77DF5C63A81_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 *)(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 *)(&V_0));
ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.EventSystems.RaycastResult>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 Array_InternalArray__IReadOnlyList_get_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m5D584575ADF5B9CAFFE1938FBE2215E52E60321B_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m5D584575ADF5B9CAFFE1938FBE2215E52E60321B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m5D584575ADF5B9CAFFE1938FBE2215E52E60321B_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_0));
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Experimental.GlobalIllumination.LightDataGI>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 Array_InternalArray__IReadOnlyList_get_Item_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_mC184A789622183B538CC90CBA7EB19F5B307DF31_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_mC184A789622183B538CC90CBA7EB19F5B307DF31_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_mC184A789622183B538CC90CBA7EB19F5B307DF31_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 *)(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 *)(&V_0));
LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D Array_InternalArray__IReadOnlyList_get_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m40222B08F0CF63CCA43E04EF166CF8B07F94E0DC_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m40222B08F0CF63CCA43E04EF166CF8B07F94E0DC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m40222B08F0CF63CCA43E04EF166CF8B07F94E0DC_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D *)(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D *)(&V_0));
PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Keyframe>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 Array_InternalArray__IReadOnlyList_get_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_mCBEC9342279EF9BEBF1624F73A8C3183F053E823_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_mCBEC9342279EF9BEBF1624F73A8C3183F053E823_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_mCBEC9342279EF9BEBF1624F73A8C3183F053E823_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)(&V_0));
Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Networking.ChannelPacket>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D Array_InternalArray__IReadOnlyList_get_Item_TisChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_m7E4C229D5E4380991C59B97FE59761BC015DB19A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_m7E4C229D5E4380991C59B97FE59761BC015DB19A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_m7E4C229D5E4380991C59B97FE59761BC015DB19A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D *)(ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D *)(&V_0));
ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Networking.ClientScene_PendingOwner>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 Array_InternalArray__IReadOnlyList_get_Item_TisPendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369_m5C00CA40B78E30DA36C44E80E99C7DA11A7D39C2_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisPendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369_m5C00CA40B78E30DA36C44E80E99C7DA11A7D39C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisPendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369_m5C00CA40B78E30DA36C44E80E99C7DA11A7D39C2_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 *)(PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 *)(&V_0));
PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Networking.LocalClient_InternalMsg>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 Array_InternalArray__IReadOnlyList_get_Item_TisInternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_m05772F9DEE03DFE30708FE510D62A269E9265BCD_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisInternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_m05772F9DEE03DFE30708FE510D62A269E9265BCD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisInternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_m05772F9DEE03DFE30708FE510D62A269E9265BCD_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 *)(InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 *)(&V_0));
InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Networking.NetworkBroadcastResult>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 Array_InternalArray__IReadOnlyList_get_Item_TisNetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_m07F11E741372BFA842B803F940FC4B62A2C96151_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisNetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_m07F11E741372BFA842B803F940FC4B62A2C96151_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisNetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_m07F11E741372BFA842B803F940FC4B62A2C96151_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 *)(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 *)(&V_0));
NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Networking.NetworkHash128>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C Array_InternalArray__IReadOnlyList_get_Item_TisNetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C_m6252AB208D073C4E156DD202EF5DF1C3762705C8_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisNetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C_m6252AB208D073C4E156DD202EF5DF1C3762705C8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisNetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C_m6252AB208D073C4E156DD202EF5DF1C3762705C8_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C *)(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C *)(&V_0));
NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Networking.NetworkInstanceId>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 Array_InternalArray__IReadOnlyList_get_Item_TisNetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_m50E9CFFF804305C64DE6C46F3BB4003468612D89_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisNetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_m50E9CFFF804305C64DE6C46F3BB4003468612D89_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisNetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_m50E9CFFF804305C64DE6C46F3BB4003468612D89_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 *)(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 *)(&V_0));
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 Array_InternalArray__IReadOnlyList_get_Item_TisPendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_m8F47E5C85605C58BE4DDF2F214B5E6E187B7961A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisPendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_m8F47E5C85605C58BE4DDF2F214B5E6E187B7961A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisPendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_m8F47E5C85605C58BE4DDF2F214B5E6E187B7961A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 *)(PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 *)(&V_0));
PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 Array_InternalArray__IReadOnlyList_get_Item_TisConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9_mA7AF99631501D2C0149A00D96F3DE4DF3A6A9F8B_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9_mA7AF99631501D2C0149A00D96F3DE4DF3A6A9F8B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9_mA7AF99631501D2C0149A00D96F3DE4DF3A6A9F8B_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 *)(ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 *)(&V_0));
ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC Array_InternalArray__IReadOnlyList_get_Item_TisPendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_mE1E5DDD8215457374035F6796EF5FBBEEE3D169E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisPendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_mE1E5DDD8215457374035F6796EF5FBBEEE3D169E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisPendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_mE1E5DDD8215457374035F6796EF5FBBEEE3D169E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC *)(PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC *)(&V_0));
PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Networking.NetworkSceneId>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 Array_InternalArray__IReadOnlyList_get_Item_TisNetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340_m22F3F9C81544AA9D607623DE94AB340CF6A8817F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisNetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340_m22F3F9C81544AA9D607623DE94AB340CF6A8817F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisNetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340_m22F3F9C81544AA9D607623DE94AB340CF6A8817F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 *)(NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 *)(&V_0));
NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 Array_InternalArray__IReadOnlyList_get_Item_TisCRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_m6332BA83613BAAC00FD9F6F6666C52C41820DFBC_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisCRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_m6332BA83613BAAC00FD9F6F6666C52C41820DFBC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisCRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_m6332BA83613BAAC00FD9F6F6666C52C41820DFBC_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 *)(CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 *)(&V_0));
CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B Array_InternalArray__IReadOnlyList_get_Item_TisPeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B_m0B961B76F101F6DDF5B03E1B603B0DD726D4448E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisPeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B_m0B961B76F101F6DDF5B03E1B603B0DD726D4448E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisPeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B_m0B961B76F101F6DDF5B03E1B603B0DD726D4448E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B *)(PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B *)(&V_0));
PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Plane>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED Array_InternalArray__IReadOnlyList_get_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mE3F758712EFE7BDB3C8AD4CA776F4C5FCED20F45_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mE3F758712EFE7BDB3C8AD4CA776F4C5FCED20F45_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mE3F758712EFE7BDB3C8AD4CA776F4C5FCED20F45_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)(&V_0));
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Playables.PlayableBinding>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 Array_InternalArray__IReadOnlyList_get_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mC49BE7A8A1BE4C13417FE433DCBD6A2D3CFBBDCA_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mC49BE7A8A1BE4C13417FE433DCBD6A2D3CFBBDCA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mC49BE7A8A1BE4C13417FE433DCBD6A2D3CFBBDCA_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)(&V_0));
PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.RaycastHit2D>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m457F0431F183E566CCF01D8E5227545FDC429B35_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m457F0431F183E566CCF01D8E5227545FDC429B35_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m457F0431F183E566CCF01D8E5227545FDC429B35_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)(&V_0));
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.RaycastHit>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mE238673BEA35FF1C73A13F79FCDC634CA5020A64_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mE238673BEA35FF1C73A13F79FCDC634CA5020A64_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mE238673BEA35FF1C73A13F79FCDC634CA5020A64_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)(&V_0));
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Rendering.BatchVisibility>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 Array_InternalArray__IReadOnlyList_get_Item_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m4569173BF88BC0385D8CD65FDC8A79D3A51F4F33_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m4569173BF88BC0385D8CD65FDC8A79D3A51F4F33_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m4569173BF88BC0385D8CD65FDC8A79D3A51F4F33_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 *)(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 *)(&V_0));
BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.SendMouseEvents_HitInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 Array_InternalArray__IReadOnlyList_get_Item_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m2C75C255E63AFB4C7EBD1905AD57D4E50E534FED_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m2C75C255E63AFB4C7EBD1905AD57D4E50E534FED_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m2C75C255E63AFB4C7EBD1905AD57D4E50E534FED_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 *)(HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 *)(&V_0));
HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 Array_InternalArray__IReadOnlyList_get_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m39952434C44AD3DC50E3B088D2AB7BB9DF4BF6A2_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m39952434C44AD3DC50E3B088D2AB7BB9DF4BF6A2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m39952434C44AD3DC50E3B088D2AB7BB9DF4BF6A2_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 *)(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 *)(&V_0));
GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A Array_InternalArray__IReadOnlyList_get_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m795F49361982E404E95390015D517257EE067216_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m795F49361982E404E95390015D517257EE067216_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_m795F49361982E404E95390015D517257EE067216_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A *)(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A *)(&V_0));
GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Touch>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 Array_InternalArray__IReadOnlyList_get_Item_TisTouch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8_m07A7E48E610F3C1FD1EF58B644A9D6670686FFAC_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisTouch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8_m07A7E48E610F3C1FD1EF58B644A9D6670686FFAC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisTouch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8_m07A7E48E610F3C1FD1EF58B644A9D6670686FFAC_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 *)(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 *)(&V_0));
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UI.ColorBlock>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA Array_InternalArray__IReadOnlyList_get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m33630D6CDB958E870C4423D8B4B95B45B53E27B5_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m33630D6CDB958E870C4423D8B4B95B45B53E27B5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m33630D6CDB958E870C4423D8B4B95B45B53E27B5_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&V_0));
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UI.Navigation>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 Array_InternalArray__IReadOnlyList_get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m98C80522DA18E643E4667969AD96DAE7B8727DF7_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m98C80522DA18E643E4667969AD96DAE7B8727DF7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m98C80522DA18E643E4667969AD96DAE7B8727DF7_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(&V_0));
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UI.SpriteState>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A Array_InternalArray__IReadOnlyList_get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_mD86C0C67E39FD2A6DE4E993195C85EAC1ED5100E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_mD86C0C67E39FD2A6DE4E993195C85EAC1ED5100E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_mD86C0C67E39FD2A6DE4E993195C85EAC1ED5100E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)(&V_0));
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UICharInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A Array_InternalArray__IReadOnlyList_get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m4BE02A176629CBDDC6AAE27051526963CEA5F348_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m4BE02A176629CBDDC6AAE27051526963CEA5F348_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m4BE02A176629CBDDC6AAE27051526963CEA5F348_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)(&V_0));
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UILineInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 Array_InternalArray__IReadOnlyList_get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m3B144C216D207DC5DD90C433988C7BD1D6D746F2_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m3B144C216D207DC5DD90C433988C7BD1D6D746F2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m3B144C216D207DC5DD90C433988C7BD1D6D746F2_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)(&V_0));
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UIVertex>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 Array_InternalArray__IReadOnlyList_get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m4A58F74CF983A715A77F5506B54B831D4609C2C3_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m4A58F74CF983A715A77F5506B54B831D4609C2C3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m4A58F74CF983A715A77F5506B54B831D4609C2C3_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)(&V_0));
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UnitySynchronizationContext_WorkRequest>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 Array_InternalArray__IReadOnlyList_get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mC500BEBCAE65267ED127EE4EF03640ED52CB5A76_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mC500BEBCAE65267ED127EE4EF03640ED52CB5A76_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mC500BEBCAE65267ED127EE4EF03640ED52CB5A76_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(&V_0));
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Vector2>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Array_InternalArray__IReadOnlyList_get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m5CAED87CB0DBEE91B20FFA4AC49CE8295CC39888_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m5CAED87CB0DBEE91B20FFA4AC49CE8295CC39888_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m5CAED87CB0DBEE91B20FFA4AC49CE8295CC39888_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_0));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Vector3>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Array_InternalArray__IReadOnlyList_get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mC022982B678F2CE77FE94F96EBFAFA37C557681E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mC022982B678F2CE77FE94F96EBFAFA37C557681E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mC022982B678F2CE77FE94F96EBFAFA37C557681E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(&V_0));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Vector4>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E Array_InternalArray__IReadOnlyList_get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m1315FF1DB9DF79D3E27EC2FEC0AB27D883DE4FF5_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m1315FF1DB9DF79D3E27EC2FEC0AB27D883DE4FF5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m1315FF1DB9DF79D3E27EC2FEC0AB27D883DE4FF5_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)(&V_0));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<Mono.Globalization.Unicode.CodePointIndexer_TableRange>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 Array_InternalArray__get_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1CF557045E7E734993401587A6B95688A830C1C1_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1CF557045E7E734993401587A6B95688A830C1C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1CF557045E7E734993401587A6B95688A830C1C1_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(&V_0));
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.ArraySegment`1<System.Byte>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA Array_InternalArray__get_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m34FFF3F2DD9F225183E4AAB65F391DA3B64C4C23_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m34FFF3F2DD9F225183E4AAB65F391DA3B64C4C23_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m34FFF3F2DD9F225183E4AAB65F391DA3B64C4C23_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA *)(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA *)(&V_0));
ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Boolean>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_InternalArray__get_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m629BA5846BCC1FB720C82F465DBEDC7CC35C9923_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m629BA5846BCC1FB720C82F465DBEDC7CC35C9923_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m629BA5846BCC1FB720C82F465DBEDC7CC35C9923_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (bool*)(bool*)(&V_0));
bool L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Byte>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Array_InternalArray__get_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mE0AC51BD7B42B61EADFED85793540510F5513D8E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mE0AC51BD7B42B61EADFED85793540510F5513D8E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t V_0 = 0x0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mE0AC51BD7B42B61EADFED85793540510F5513D8E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint8_t*)(uint8_t*)(&V_0));
uint8_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Char>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Array_InternalArray__get_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m7910AF4B30BD106F78DE0F14393EA2FA9165302D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m7910AF4B30BD106F78DE0F14393EA2FA9165302D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m7910AF4B30BD106F78DE0F14393EA2FA9165302D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Il2CppChar*)(Il2CppChar*)(&V_0));
Il2CppChar L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.DictionaryEntry>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Array_InternalArray__get_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mE027C77C0133B05655D10BE4BAB17CCBEA45C34E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mE027C77C0133B05655D10BE4BAB17CCBEA45C34E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mE027C77C0133B05655D10BE4BAB17CCBEA45C34E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_0));
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 Array_InternalArray__get_Item_TisEntry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3_mDE897A92EAC2998CD2283AEAE9845179CC1FCED1_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3_mDE897A92EAC2998CD2283AEAE9845179CC1FCED1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3_mDE897A92EAC2998CD2283AEAE9845179CC1FCED1_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 *)(Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 *)(&V_0));
Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D Array_InternalArray__get_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m5E18D1F3D75951F12CB606D6CEB7A156A5C6C8BD_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m5E18D1F3D75951F12CB606D6CEB7A156A5C6C8BD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m5E18D1F3D75951F12CB606D6CEB7A156A5C6C8BD_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(&V_0));
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA Array_InternalArray__get_Item_TisEntry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA_m7F09027CEE6FA179CF39CE2EE7344874251EFB84_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA_m7F09027CEE6FA179CF39CE2EE7344874251EFB84_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA_m7F09027CEE6FA179CF39CE2EE7344874251EFB84_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA *)(Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA *)(&V_0));
Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE Array_InternalArray__get_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8CC22EADB453439C66E587109B90CCA60E03233A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8CC22EADB453439C66E587109B90CCA60E03233A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8CC22EADB453439C66E587109B90CCA60E03233A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(&V_0));
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 Array_InternalArray__get_Item_TisEntry_t39E5078AF9E9A002524BC15C94626539E28F1DD0_m563A8446B6169FDBA32A96CAD61A6AC45DDB1193_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t39E5078AF9E9A002524BC15C94626539E28F1DD0_m563A8446B6169FDBA32A96CAD61A6AC45DDB1193_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t39E5078AF9E9A002524BC15C94626539E28F1DD0_m563A8446B6169FDBA32A96CAD61A6AC45DDB1193_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 *)(Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 *)(&V_0));
Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 Array_InternalArray__get_Item_TisEntry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41_mB5BB61A8753F4594A352065E8763E6C3960CD6CD_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41_mB5BB61A8753F4594A352065E8763E6C3960CD6CD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41_mB5BB61A8753F4594A352065E8763E6C3960CD6CD_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 *)(Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 *)(&V_0));
Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA Array_InternalArray__get_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m61ECA245B1071FDB6DB79FE4A5AE6362A5381DF5_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m61ECA245B1071FDB6DB79FE4A5AE6362A5381DF5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m61ECA245B1071FDB6DB79FE4A5AE6362A5381DF5_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(&V_0));
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D Array_InternalArray__get_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m00CEFC0E6EB5C4E6286E76754603C701C01C8813_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m00CEFC0E6EB5C4E6286E76754603C701C01C8813_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m00CEFC0E6EB5C4E6286E76754603C701C01C8813_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(&V_0));
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E Array_InternalArray__get_Item_TisEntry_t199B9164AC346CAFF297C44D6DF2326A3634773E_m5A81BF6729AD3F27D7D81207F0062658B7691E52_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t199B9164AC346CAFF297C44D6DF2326A3634773E_m5A81BF6729AD3F27D7D81207F0062658B7691E52_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t199B9164AC346CAFF297C44D6DF2326A3634773E_m5A81BF6729AD3F27D7D81207F0062658B7691E52_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E *)(Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E *)(&V_0));
Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 Array_InternalArray__get_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m4DC869A1E743F333DE9CC0C76B3CFC709F91A53A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m4DC869A1E743F333DE9CC0C76B3CFC709F91A53A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m4DC869A1E743F333DE9CC0C76B3CFC709F91A53A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)(&V_0));
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 Array_InternalArray__get_Item_TisEntry_tB17A20FF297E1D4E33181E36238F550A443DFD91_mD5D689FE3ED01AB86981BB7E4C55086B25FDE77D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_tB17A20FF297E1D4E33181E36238F550A443DFD91_mD5D689FE3ED01AB86981BB7E4C55086B25FDE77D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_tB17A20FF297E1D4E33181E36238F550A443DFD91_mD5D689FE3ED01AB86981BB7E4C55086B25FDE77D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 *)(Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 *)(&V_0));
Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 Array_InternalArray__get_Item_TisEntry_t8E09DFCC6D674230C233702F449DB762B53A2031_mD39E648003BB9CBF387FC1C7A57CEF392955FE56_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t8E09DFCC6D674230C233702F449DB762B53A2031_mD39E648003BB9CBF387FC1C7A57CEF392955FE56_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t8E09DFCC6D674230C233702F449DB762B53A2031_mD39E648003BB9CBF387FC1C7A57CEF392955FE56_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 *)(Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 *)(&V_0));
Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A Array_InternalArray__get_Item_TisEntry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A_m9AFBF14E065C35FE4A9D1F4FF992D7AD38B5FD8C_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A_m9AFBF14E065C35FE4A9D1F4FF992D7AD38B5FD8C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A_m9AFBF14E065C35FE4A9D1F4FF992D7AD38B5FD8C_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A *)(Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A *)(&V_0));
Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F Array_InternalArray__get_Item_TisEntry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F_mBAB992A938D3752B42E17BF0B84949AF28D9C4A6_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F_mBAB992A938D3752B42E17BF0B84949AF28D9C4A6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F_mBAB992A938D3752B42E17BF0B84949AF28D9C4A6_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F *)(Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F *)(&V_0));
Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.HashSet`1_Slot<System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 Array_InternalArray__get_Item_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_mA17F8F43464C47B9037751844B2B6283AE7D2876_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_mA17F8F43464C47B9037751844B2B6283AE7D2876_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_mA17F8F43464C47B9037751844B2B6283AE7D2876_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 *)(Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 *)(&V_0));
Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.HashSet`1_Slot<System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 Array_InternalArray__get_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m38844CFC22B83289886F6AD309D8861827A1A40F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m38844CFC22B83289886F6AD309D8861827A1A40F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m38844CFC22B83289886F6AD309D8861827A1A40F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)(&V_0));
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.HashSet`1_Slot<UnityEngine.Networking.NetworkInstanceId>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE Array_InternalArray__get_Item_TisSlot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE_m94ABB4F93917928468AA9470A5EBEFA740945FC9_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSlot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE_m94ABB4F93917928468AA9470A5EBEFA740945FC9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisSlot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE_m94ABB4F93917928468AA9470A5EBEFA740945FC9_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE *)(Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE *)(&V_0));
Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B Array_InternalArray__get_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mCE796920ABC11A9902FC9F9D6160642A63D433FA_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mCE796920ABC11A9902FC9F9D6160642A63D433FA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mCE796920ABC11A9902FC9F9D6160642A63D433FA_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(&V_0));
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 Array_InternalArray__get_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m27C4C8AE0E9CB818A2F22B3E4A2C34C493DC1198_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m27C4C8AE0E9CB818A2F22B3E4A2C34C493DC1198_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m27C4C8AE0E9CB818A2F22B3E4A2C34C493DC1198_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)(&V_0));
KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 Array_InternalArray__get_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mE46942032A5444788C9BD3E4B05C8A9BD2DCA803_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mE46942032A5444788C9BD3E4B05C8A9BD2DCA803_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mE46942032A5444788C9BD3E4B05C8A9BD2DCA803_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(&V_0));
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int16,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03 Array_InternalArray__get_Item_TisKeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03_m272D07B3C360FEEE4641CD09765786613EC19336_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03_m272D07B3C360FEEE4641CD09765786613EC19336_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03_m272D07B3C360FEEE4641CD09765786613EC19336_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03 *)(KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03 *)(&V_0));
KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 Array_InternalArray__get_Item_TisKeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367_m9F18D534073EB714A33DD07BC19837F08129B5F7_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367_m9F18D534073EB714A33DD07BC19837F08129B5F7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367_m9F18D534073EB714A33DD07BC19837F08129B5F7_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)(&V_0));
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF Array_InternalArray__get_Item_TisKeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF_mF123F563D67A1B5462D91DCBAC4C24DA3D951550_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF_mF123F563D67A1B5462D91DCBAC4C24DA3D951550_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF_mF123F563D67A1B5462D91DCBAC4C24DA3D951550_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF *)(KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF *)(&V_0));
KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E Array_InternalArray__get_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mBCE929EFD88213430B14BD2CF31A583723522143_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mBCE929EFD88213430B14BD2CF31A583723522143_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mBCE929EFD88213430B14BD2CF31A583723522143_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(&V_0));
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 Array_InternalArray__get_Item_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_m98456D231691613A58F88EDAA7C48E68451E1440_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_m98456D231691613A58F88EDAA7C48E68451E1440_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_m98456D231691613A58F88EDAA7C48E68451E1440_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(&V_0));
KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 Array_InternalArray__get_Item_TisKeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2_m9FD49E7F05F088714637F9839166C2228B94A6BE_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2_m9FD49E7F05F088714637F9839166C2228B94A6BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2_m9FD49E7F05F088714637F9839166C2228B94A6BE_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(&V_0));
KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE Array_InternalArray__get_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m07DCF9692981AEACAD04D98EA58EC5727A57F24E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m07DCF9692981AEACAD04D98EA58EC5727A57F24E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m07DCF9692981AEACAD04D98EA58EC5727A57F24E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&V_0));
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 Array_InternalArray__get_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m869CD39A2A3CBBF2661E51A2C3F817DDE806C357_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m869CD39A2A3CBBF2661E51A2C3F817DDE806C357_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m869CD39A2A3CBBF2661E51A2C3F817DDE806C357_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&V_0));
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 Array_InternalArray__get_Item_TisKeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5_mF662C16E92251858B5B21997E6720A69C0B9CBB5_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5_mF662C16E92251858B5B21997E6720A69C0B9CBB5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5_mF662C16E92251858B5B21997E6720A69C0B9CBB5_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(&V_0));
KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 Array_InternalArray__get_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m4BF67E948E45ECF36FBD1F318CB1F443A173691F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m4BF67E948E45ECF36FBD1F318CB1F443A173691F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m4BF67E948E45ECF36FBD1F318CB1F443A173691F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 *)(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 *)(&V_0));
KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.UInt64Enum,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA Array_InternalArray__get_Item_TisKeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA_m1EFDECC7EB45805B1ACA7C9F225EE5105C83F588_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA_m1EFDECC7EB45805B1ACA7C9F225EE5105C83F588_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA_m1EFDECC7EB45805B1ACA7C9F225EE5105C83F588_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA *)(KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA *)(&V_0));
KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkHash128,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0 Array_InternalArray__get_Item_TisKeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0_m79910272E029E9A1B573A04039A478E301F70066_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0_m79910272E029E9A1B573A04039A478E301F70066_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0_m79910272E029E9A1B573A04039A478E301F70066_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0 *)(KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0 *)(&V_0));
KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkInstanceId,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013 Array_InternalArray__get_Item_TisKeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013_mE4763008069B1BB6BB10D513F2B43D587E26A437_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013_mE4763008069B1BB6BB10D513F2B43D587E26A437_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013_mE4763008069B1BB6BB10D513F2B43D587E26A437_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013 *)(KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013 *)(&V_0));
KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkSceneId,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8 Array_InternalArray__get_Item_TisKeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8_m10C44687A2630A158BB98C25AE834423678F70F3_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8_m10C44687A2630A158BB98C25AE834423678F70F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8_m10C44687A2630A158BB98C25AE834423678F70F3_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8 *)(KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8 *)(&V_0));
KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Hashtable_bucket>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 Array_InternalArray__get_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mFBBF1D38CCDA2D13FFA16BC0CE1E5987639162FB_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mFBBF1D38CCDA2D13FFA16BC0CE1E5987639162FB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mFBBF1D38CCDA2D13FFA16BC0CE1E5987639162FB_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)(&V_0));
bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.DateTime>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Array_InternalArray__get_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mAFF3D10D243FFDDEA2E5BE47A3D72269875C515D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mAFF3D10D243FFDDEA2E5BE47A3D72269875C515D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mAFF3D10D243FFDDEA2E5BE47A3D72269875C515D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0));
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Decimal>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Array_InternalArray__get_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mA29C644E6B30AA8FF56106A39C9E7530CE6AD04D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mA29C644E6B30AA8FF56106A39C9E7530CE6AD04D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mA29C644E6B30AA8FF56106A39C9E7530CE6AD04D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(&V_0));
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Diagnostics.Tracing.EventProvider_SessionInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A Array_InternalArray__get_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m300EDE92997FDDF1F28D0F58BB0DCD2949366ADC_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m300EDE92997FDDF1F28D0F58BB0DCD2949366ADC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m300EDE92997FDDF1F28D0F58BB0DCD2949366ADC_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A *)(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A *)(&V_0));
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Diagnostics.Tracing.EventSource_EventMetadata>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B Array_InternalArray__get_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mA7CBB7A3611EAF729E13A7C81382465897606032_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mA7CBB7A3611EAF729E13A7C81382465897606032_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mA7CBB7A3611EAF729E13A7C81382465897606032_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B *)(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B *)(&V_0));
EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Double>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Array_InternalArray__get_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m91B1B86B2435BE0A25761F475691E825DDAD39A4_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m91B1B86B2435BE0A25761F475691E825DDAD39A4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
double V_0 = 0.0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m91B1B86B2435BE0A25761F475691E825DDAD39A4_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (double*)(double*)(&V_0));
double L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Globalization.InternalCodePageDataItem>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 Array_InternalArray__get_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m61D9DED5DD618D348B1BADD336B69E7902CC5424_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m61D9DED5DD618D348B1BADD336B69E7902CC5424_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m61D9DED5DD618D348B1BADD336B69E7902CC5424_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)(&V_0));
InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Globalization.InternalEncodingDataItem>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 Array_InternalArray__get_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mDDF4AC156930E20611FCFB76DFC231AE7903FEE0_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mDDF4AC156930E20611FCFB76DFC231AE7903FEE0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mDDF4AC156930E20611FCFB76DFC231AE7903FEE0_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)(&V_0));
InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Guid>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Array_InternalArray__get_Item_TisGuid_t_m979DD807F084EEDE01F888F9957547DE23BCABBA_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisGuid_t_m979DD807F084EEDE01F888F9957547DE23BCABBA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Guid_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisGuid_t_m979DD807F084EEDE01F888F9957547DE23BCABBA_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Guid_t *)(Guid_t *)(&V_0));
Guid_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Int16>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Array_InternalArray__get_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m646E9CD2F8B82E5F35FBDE2A0EFD98A0F195D680_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m646E9CD2F8B82E5F35FBDE2A0EFD98A0F195D680_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int16_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m646E9CD2F8B82E5F35FBDE2A0EFD98A0F195D680_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int16_t*)(int16_t*)(&V_0));
int16_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Int32>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mC0D56DB29145576351D3144C0174C3DB3DFF9C84_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mC0D56DB29145576351D3144C0174C3DB3DFF9C84_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mC0D56DB29145576351D3144C0174C3DB3DFF9C84_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Int32Enum>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mB47101014CAE26A07ACE2888ADF044342599F247_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mB47101014CAE26A07ACE2888ADF044342599F247_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mB47101014CAE26A07ACE2888ADF044342599F247_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Int64>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Array_InternalArray__get_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m69766EC28E50BA89284F2D32C8684A401A19B346_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m69766EC28E50BA89284F2D32C8684A401A19B346_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m69766EC28E50BA89284F2D32C8684A401A19B346_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int64_t*)(int64_t*)(&V_0));
int64_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.IntPtr>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Array_InternalArray__get_Item_TisIntPtr_t_mDAAED5E34FC82EC1CE912628ED6EFA3FD73BF68D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisIntPtr_t_mDAAED5E34FC82EC1CE912628ED6EFA3FD73BF68D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisIntPtr_t_mDAAED5E34FC82EC1CE912628ED6EFA3FD73BF68D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (intptr_t*)(intptr_t*)(&V_0));
intptr_t L_4 = V_0;
return (intptr_t)L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Net.Sockets.Socket_WSABUF>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE Array_InternalArray__get_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m7C76B27D3E4BC6D2DA07088A801DBABE51FDEA0B_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m7C76B27D3E4BC6D2DA07088A801DBABE51FDEA0B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m7C76B27D3E4BC6D2DA07088A801DBABE51FDEA0B_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE *)(WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE *)(&V_0));
WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Object>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_InternalArray__get_Item_TisRuntimeObject_m98D2A0CAA60FCDAD14B318032271D194A0FC463A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRuntimeObject_m98D2A0CAA60FCDAD14B318032271D194A0FC463A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisRuntimeObject_m98D2A0CAA60FCDAD14B318032271D194A0FC463A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RuntimeObject **)(RuntimeObject **)(&V_0));
RuntimeObject * L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.ParameterizedStrings_FormatParam>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 Array_InternalArray__get_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m47A9D1BA5A97752AF36397686537AB4612A836EB_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m47A9D1BA5A97752AF36397686537AB4612A836EB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m47A9D1BA5A97752AF36397686537AB4612A836EB_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)(&V_0));
FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.CustomAttributeNamedArgument>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m2FD87C18D9E6848633DF705BFFAFEB78D9396EA4_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m2FD87C18D9E6848633DF705BFFAFEB78D9396EA4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m2FD87C18D9E6848633DF705BFFAFEB78D9396EA4_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(&V_0));
CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.CustomAttributeTypedArgument>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mB284F11FF6EAAF07725EE9EEECAAD865E149E9CD_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mB284F11FF6EAAF07725EE9EEECAAD865E149E9CD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mB284F11FF6EAAF07725EE9EEECAAD865E149E9CD_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(&V_0));
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.ParameterModifier>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E Array_InternalArray__get_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m83A26FF89E9009B96B3B82235BC9508BB8406D77_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m83A26FF89E9009B96B3B82235BC9508BB8406D77_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m83A26FF89E9009B96B3B82235BC9508BB8406D77_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)(&V_0));
ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Resources.ResourceLocator>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C Array_InternalArray__get_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m6880A2B25322CD928A2218BAC463B0F9D7450BD2_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m6880A2B25322CD928A2218BAC463B0F9D7450BD2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m6880A2B25322CD928A2218BAC463B0F9D7450BD2_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)(&V_0));
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Runtime.CompilerServices.Ephemeron>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA Array_InternalArray__get_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m4277A55FF0F7CC43A28269EF99E761F3BA612EE3_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m4277A55FF0F7CC43A28269EF99E761F3BA612EE3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m4277A55FF0F7CC43A28269EF99E761F3BA612EE3_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)(&V_0));
Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Runtime.InteropServices.GCHandle>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 Array_InternalArray__get_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mBB81776EBAE07C3F1598652B60A70D03C8C1B423_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mBB81776EBAE07C3F1598652B60A70D03C8C1B423_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mBB81776EBAE07C3F1598652B60A70D03C8C1B423_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&V_0));
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.SByte>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Array_InternalArray__get_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m288F7FA25642BAF460C919173FFBACFF200256FE_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m288F7FA25642BAF460C919173FFBACFF200256FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int8_t V_0 = 0x0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m288F7FA25642BAF460C919173FFBACFF200256FE_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int8_t*)(int8_t*)(&V_0));
int8_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Single>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Array_InternalArray__get_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m77CE54A431B9137F71AE4EB8DD6BD6896CAD51D5_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m77CE54A431B9137F71AE4EB8DD6BD6896CAD51D5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m77CE54A431B9137F71AE4EB8DD6BD6896CAD51D5_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (float*)(float*)(&V_0));
float L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B Array_InternalArray__get_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mE5257779A8486E28FF4CE35150FACFDEF3E4C3A2_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mE5257779A8486E28FF4CE35150FACFDEF3E4C3A2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mE5257779A8486E28FF4CE35150FACFDEF3E4C3A2_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)(&V_0));
LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Threading.CancellationTokenRegistration>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 Array_InternalArray__get_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m0318D47BE2AB57E53839293C15DD335B8B0583AA_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m0318D47BE2AB57E53839293C15DD335B8B0583AA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m0318D47BE2AB57E53839293C15DD335B8B0583AA_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(&V_0));
CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.TimeSpan>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 Array_InternalArray__get_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m6F26E3B1889F792C114EA852B45C022258DDF5D4_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m6F26E3B1889F792C114EA852B45C022258DDF5D4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m6F26E3B1889F792C114EA852B45C022258DDF5D4_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_0));
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.UInt16>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Array_InternalArray__get_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m92C7FC890AD3637D775B949E40AC58993090D84D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m92C7FC890AD3637D775B949E40AC58993090D84D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint16_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m92C7FC890AD3637D775B949E40AC58993090D84D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint16_t*)(uint16_t*)(&V_0));
uint16_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.UInt32>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Array_InternalArray__get_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m92E8524E021B44BD9FBA8B7B532C1C1D1AE2591E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m92E8524E021B44BD9FBA8B7B532C1C1D1AE2591E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m92E8524E021B44BD9FBA8B7B532C1C1D1AE2591E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint32_t*)(uint32_t*)(&V_0));
uint32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.UInt64>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Array_InternalArray__get_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m67422E4BCD6185FCCC24C2E10B17354B5CA4881F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m67422E4BCD6185FCCC24C2E10B17354B5CA4881F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint64_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m67422E4BCD6185FCCC24C2E10B17354B5CA4881F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint64_t*)(uint64_t*)(&V_0));
uint64_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.UInt64Enum>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Array_InternalArray__get_Item_TisUInt64Enum_tEAD217F175F60689A664303784384DEF759D24C8_mC2C973AEA831F0BC853FB4240672AAF73F311FEB_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUInt64Enum_tEAD217F175F60689A664303784384DEF759D24C8_mC2C973AEA831F0BC853FB4240672AAF73F311FEB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint64_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisUInt64Enum_tEAD217F175F60689A664303784384DEF759D24C8_mC2C973AEA831F0BC853FB4240672AAF73F311FEB_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint64_t*)(uint64_t*)(&V_0));
uint64_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.UIntPtr>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uintptr_t Array_InternalArray__get_Item_TisUIntPtr_t_m8E6F5EA76515799BF3B9D4CF0338A24FA7585247_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUIntPtr_t_m8E6F5EA76515799BF3B9D4CF0338A24FA7585247_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uintptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisUIntPtr_t_m8E6F5EA76515799BF3B9D4CF0338A24FA7585247_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uintptr_t*)(uintptr_t*)(&V_0));
uintptr_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.BeforeRenderHelper_OrderBlock>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 Array_InternalArray__get_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m3A94BC2B4F31DBA1005FB94913C3130C69A2E39F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m3A94BC2B4F31DBA1005FB94913C3130C69A2E39F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m3A94BC2B4F31DBA1005FB94913C3130C69A2E39F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)(&V_0));
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Color32>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 Array_InternalArray__get_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m690637A6E30AAACC2D08D07F0107FFFE45B9AA25_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m690637A6E30AAACC2D08D07F0107FFFE45B9AA25_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m690637A6E30AAACC2D08D07F0107FFFE45B9AA25_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)(&V_0));
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.ContactPoint2D>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 Array_InternalArray__get_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mC0BA868364A2EC9CBE08EEE61C17C9909356B644_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mC0BA868364A2EC9CBE08EEE61C17C9909356B644_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mC0BA868364A2EC9CBE08EEE61C17C9909356B644_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 *)(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 *)(&V_0));
ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.ContactPoint>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 Array_InternalArray__get_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m1A4B88B46CEC94307CF29224873D7CE4027C40C0_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m1A4B88B46CEC94307CF29224873D7CE4027C40C0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m1A4B88B46CEC94307CF29224873D7CE4027C40C0_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 *)(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 *)(&V_0));
ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.EventSystems.RaycastResult>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 Array_InternalArray__get_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m38A53DF1F99A89D6300E7B7B184AD963AA80D865_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m38A53DF1F99A89D6300E7B7B184AD963AA80D865_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m38A53DF1F99A89D6300E7B7B184AD963AA80D865_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_0));
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Experimental.GlobalIllumination.LightDataGI>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 Array_InternalArray__get_Item_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m3B53EB9E61040DA92DCE1D4373F9ECFC85FE5651_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m3B53EB9E61040DA92DCE1D4373F9ECFC85FE5651_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m3B53EB9E61040DA92DCE1D4373F9ECFC85FE5651_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 *)(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 *)(&V_0));
LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D Array_InternalArray__get_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_mF91557842C227193C860DC92424711A92AD86409_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_mF91557842C227193C860DC92424711A92AD86409_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_mF91557842C227193C860DC92424711A92AD86409_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D *)(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D *)(&V_0));
PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Keyframe>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 Array_InternalArray__get_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_mD6A0D9843EAA93E58C03D148C4944DA9AA85608A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_mD6A0D9843EAA93E58C03D148C4944DA9AA85608A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_mD6A0D9843EAA93E58C03D148C4944DA9AA85608A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)(&V_0));
Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Networking.ChannelPacket>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D Array_InternalArray__get_Item_TisChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_m77E0536B0EA9DD8668E73B024B1B3AB0024F6A81_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_m77E0536B0EA9DD8668E73B024B1B3AB0024F6A81_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_m77E0536B0EA9DD8668E73B024B1B3AB0024F6A81_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D *)(ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D *)(&V_0));
ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Networking.ClientScene_PendingOwner>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 Array_InternalArray__get_Item_TisPendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369_m791831A820CDA6360FE3D113A86AFFE9E37D886C_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisPendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369_m791831A820CDA6360FE3D113A86AFFE9E37D886C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisPendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369_m791831A820CDA6360FE3D113A86AFFE9E37D886C_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 *)(PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 *)(&V_0));
PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Networking.LocalClient_InternalMsg>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 Array_InternalArray__get_Item_TisInternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_mE3B5D366B8013C619025F688F466D8D85811151B_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_mE3B5D366B8013C619025F688F466D8D85811151B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisInternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_mE3B5D366B8013C619025F688F466D8D85811151B_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 *)(InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 *)(&V_0));
InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Networking.NetworkBroadcastResult>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 Array_InternalArray__get_Item_TisNetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_mF841820605721022D11EB2BC71950405BFBCB96B_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisNetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_mF841820605721022D11EB2BC71950405BFBCB96B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisNetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_mF841820605721022D11EB2BC71950405BFBCB96B_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 *)(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 *)(&V_0));
NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Networking.NetworkHash128>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C Array_InternalArray__get_Item_TisNetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C_m00E360FC47B1E1A2A9522A426CD8A97B8A219B27_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisNetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C_m00E360FC47B1E1A2A9522A426CD8A97B8A219B27_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisNetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C_m00E360FC47B1E1A2A9522A426CD8A97B8A219B27_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C *)(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C *)(&V_0));
NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Networking.NetworkInstanceId>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 Array_InternalArray__get_Item_TisNetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_m51BB4C7EEEDA640856FF5C7F62DAA3FFC5E1F218_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisNetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_m51BB4C7EEEDA640856FF5C7F62DAA3FFC5E1F218_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisNetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_m51BB4C7EEEDA640856FF5C7F62DAA3FFC5E1F218_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 *)(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 *)(&V_0));
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 Array_InternalArray__get_Item_TisPendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_m62BAD5A2D438648F52FB22CB88E7628005CDF231_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisPendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_m62BAD5A2D438648F52FB22CB88E7628005CDF231_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisPendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_m62BAD5A2D438648F52FB22CB88E7628005CDF231_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 *)(PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 *)(&V_0));
PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 Array_InternalArray__get_Item_TisConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9_mEAA9756D5C0D76082EBB9C6616877093559C34B6_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9_mEAA9756D5C0D76082EBB9C6616877093559C34B6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9_mEAA9756D5C0D76082EBB9C6616877093559C34B6_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 *)(ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 *)(&V_0));
ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC Array_InternalArray__get_Item_TisPendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_m9F681389356540D66546BF036D5957B9A3833D1C_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisPendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_m9F681389356540D66546BF036D5957B9A3833D1C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisPendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_m9F681389356540D66546BF036D5957B9A3833D1C_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC *)(PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC *)(&V_0));
PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Networking.NetworkSceneId>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 Array_InternalArray__get_Item_TisNetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340_m124867B1340F5E75470C0EC276A9823B3D6423D5_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisNetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340_m124867B1340F5E75470C0EC276A9823B3D6423D5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisNetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340_m124867B1340F5E75470C0EC276A9823B3D6423D5_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 *)(NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 *)(&V_0));
NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 Array_InternalArray__get_Item_TisCRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_mCB72E999384CD04F6708A0F7DF14DC366647A04C_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisCRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_mCB72E999384CD04F6708A0F7DF14DC366647A04C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisCRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_mCB72E999384CD04F6708A0F7DF14DC366647A04C_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 *)(CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 *)(&V_0));
CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B Array_InternalArray__get_Item_TisPeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B_mDAFBDF63028508295FD9DD2B12ADEACDB5E7738F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisPeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B_mDAFBDF63028508295FD9DD2B12ADEACDB5E7738F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisPeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B_mDAFBDF63028508295FD9DD2B12ADEACDB5E7738F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B *)(PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B *)(&V_0));
PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Plane>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED Array_InternalArray__get_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m3B2A6B15ACEDDD69DFC2A7B1F1549239040CC12D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m3B2A6B15ACEDDD69DFC2A7B1F1549239040CC12D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m3B2A6B15ACEDDD69DFC2A7B1F1549239040CC12D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)(&V_0));
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Playables.PlayableBinding>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 Array_InternalArray__get_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m362D4C945930128AB5451EC5F1413FB6543D01C9_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m362D4C945930128AB5451EC5F1413FB6543D01C9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m362D4C945930128AB5451EC5F1413FB6543D01C9_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)(&V_0));
PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.RaycastHit2D>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE Array_InternalArray__get_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m343C0DB5D50F0936952CCACC386228F2ACC5A796_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m343C0DB5D50F0936952CCACC386228F2ACC5A796_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m343C0DB5D50F0936952CCACC386228F2ACC5A796_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)(&V_0));
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.RaycastHit>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 Array_InternalArray__get_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mDCDC36064BB0FF4DC76546ED1CA3DDB6C303F4FE_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mDCDC36064BB0FF4DC76546ED1CA3DDB6C303F4FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mDCDC36064BB0FF4DC76546ED1CA3DDB6C303F4FE_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)(&V_0));
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Rendering.BatchVisibility>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 Array_InternalArray__get_Item_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_mBA598D1852E66122156731750BBF1D8EDFEBAC55_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_mBA598D1852E66122156731750BBF1D8EDFEBAC55_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_mBA598D1852E66122156731750BBF1D8EDFEBAC55_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 *)(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 *)(&V_0));
BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.SendMouseEvents_HitInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 Array_InternalArray__get_Item_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m02FDDCF30AEA5010D3F032AAD267FCB98051A142_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m02FDDCF30AEA5010D3F032AAD267FCB98051A142_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m02FDDCF30AEA5010D3F032AAD267FCB98051A142_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 *)(HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 *)(&V_0));
HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 Array_InternalArray__get_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m9D0452CD1962BBA9DAE3FC2B0EC0429F65CF1103_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m9D0452CD1962BBA9DAE3FC2B0EC0429F65CF1103_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m9D0452CD1962BBA9DAE3FC2B0EC0429F65CF1103_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 *)(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 *)(&V_0));
GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A Array_InternalArray__get_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mD10502BEA559D905BB0619CB8D721895595CC9A7_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mD10502BEA559D905BB0619CB8D721895595CC9A7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mD10502BEA559D905BB0619CB8D721895595CC9A7_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A *)(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A *)(&V_0));
GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Touch>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 Array_InternalArray__get_Item_TisTouch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8_m1A9DC9373316DB755F222D79C0CA465C44173767_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTouch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8_m1A9DC9373316DB755F222D79C0CA465C44173767_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisTouch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8_m1A9DC9373316DB755F222D79C0CA465C44173767_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 *)(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 *)(&V_0));
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UI.ColorBlock>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA Array_InternalArray__get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m372F4A01E422405E0877577213525110F165CC72_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m372F4A01E422405E0877577213525110F165CC72_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m372F4A01E422405E0877577213525110F165CC72_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&V_0));
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UI.Navigation>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 Array_InternalArray__get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m8661006C340B2092AB2ECC60557630BCEB060F5C_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m8661006C340B2092AB2ECC60557630BCEB060F5C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m8661006C340B2092AB2ECC60557630BCEB060F5C_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(&V_0));
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UI.SpriteState>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A Array_InternalArray__get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m7D69069E0004BED34CC1CBFC3FD7952524A8579D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m7D69069E0004BED34CC1CBFC3FD7952524A8579D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m7D69069E0004BED34CC1CBFC3FD7952524A8579D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)(&V_0));
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UICharInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A Array_InternalArray__get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m9E313F8A2D13BED598479D435A4A24C96427C2AF_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m9E313F8A2D13BED598479D435A4A24C96427C2AF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m9E313F8A2D13BED598479D435A4A24C96427C2AF_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)(&V_0));
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UILineInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 Array_InternalArray__get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mEF125F16F3141B6C8C95062D9EB62DB34E311BB8_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mEF125F16F3141B6C8C95062D9EB62DB34E311BB8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mEF125F16F3141B6C8C95062D9EB62DB34E311BB8_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)(&V_0));
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UIVertex>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 Array_InternalArray__get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mF50C75640622E1227765A491D563BD148B3C0D95_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mF50C75640622E1227765A491D563BD148B3C0D95_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mF50C75640622E1227765A491D563BD148B3C0D95_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)(&V_0));
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UnitySynchronizationContext_WorkRequest>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 Array_InternalArray__get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mE136BEFAFFA4D20AC5F03D08E9E761773B432A66_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mE136BEFAFFA4D20AC5F03D08E9E761773B432A66_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mE136BEFAFFA4D20AC5F03D08E9E761773B432A66_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(&V_0));
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Vector2>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Array_InternalArray__get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m838F955DD9621FF5361500D081CC22FE49049581_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m838F955DD9621FF5361500D081CC22FE49049581_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m838F955DD9621FF5361500D081CC22FE49049581_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_0));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Vector3>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Array_InternalArray__get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m526D0C17B58AAB83A25B74C2462E165995C9DE2A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m526D0C17B58AAB83A25B74C2462E165995C9DE2A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m526D0C17B58AAB83A25B74C2462E165995C9DE2A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(&V_0));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Vector4>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E Array_InternalArray__get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mFB7A377E49F0D9217F0C8F3C4105B731581E20FA_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mFB7A377E49F0D9217F0C8F3C4105B731581E20FA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mFB7A377E49F0D9217F0C8F3C4105B731581E20FA_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)(&V_0));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_4 = V_0;
return L_4;
}
}
// T System.Array::UnsafeLoad<System.Boolean>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_UnsafeLoad_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mF77F37776A2CFE7B5204EE98158D7C383F00F23C_gshared (BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
bool L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Byte>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Array_UnsafeLoad_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m65E1EBE819B53BAF6D83A75BAFF9772F6A9FF3F1_gshared (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
uint8_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B Array_UnsafeLoad_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m8882092DDF50416A52C0344EA23E22A421741486_gshared (KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_3 = (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )(L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Diagnostics.Tracing.EventProvider_SessionInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A Array_UnsafeLoad_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mCA45ECF519E7B1F4928F28F467980EC9B41E759F_gshared (SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Int32>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_UnsafeLoad_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mA280B8BD39968B72F8DC966D4912D8C4F892920F_gshared (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
int32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Int32Enum>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_UnsafeLoad_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mE7C3675ADBE9782510F7FC36BE298932CBDA1AB3_gshared (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
int32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Object>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_UnsafeLoad_TisRuntimeObject_mF7D8C97071DB474A614395C952930E9E3E249586_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
RuntimeObject * L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Single>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Array_UnsafeLoad_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mA362483AF7239F2E170AD25E47676369DCE4D5F9_gshared (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
float L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.UInt32>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Array_UnsafeLoad_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m814C5DC74BB2E72ABC3E8957D824669B2B7D2A80_gshared (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
uint32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.UInt64>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Array_UnsafeLoad_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mFA35E154A4951AFC9D4743D10210E353CE1A298C_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
uint64_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.BeforeRenderHelper_OrderBlock>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 Array_UnsafeLoad_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mEED156545A2169401C6F00D1EDBE0DCBAFEEA27E_gshared (OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Color32>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 Array_UnsafeLoad_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mCD00D60874B01668A3283B9E8F85BD9375C34D8C_gshared (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.EventSystems.RaycastResult>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 Array_UnsafeLoad_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_mA2B8606E9710A1B20FBF25EA96F6D7BF322488BC_gshared (RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Networking.ChannelPacket>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D Array_UnsafeLoad_TisChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_mE3DE7DB1B9A91AA9EED431F3D7AE9F84AC4DB274_gshared (ChannelPacketU5BU5D_t4F30D435CDD109EFAC04DDAA14FFCA6EC3FD3C68* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ChannelPacketU5BU5D_t4F30D435CDD109EFAC04DDAA14FFCA6EC3FD3C68* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Networking.ClientScene_PendingOwner>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 Array_UnsafeLoad_TisPendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369_m7445E4BEA173287967E615AB4FA3C5F7F2A659CB_gshared (PendingOwnerU5BU5D_tC7C57765D842F658B31DE4453A4838057D5C6EFA* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
PendingOwnerU5BU5D_tC7C57765D842F658B31DE4453A4838057D5C6EFA* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Networking.LocalClient_InternalMsg>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 Array_UnsafeLoad_TisInternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_m415C78D3C4414D6D33DA181BEE8C3D8B6E0A45FA_gshared (InternalMsgU5BU5D_t9FE1EB9BD31AEA326D79AC2749B4D89621EB99B6* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
InternalMsgU5BU5D_t9FE1EB9BD31AEA326D79AC2749B4D89621EB99B6* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 Array_UnsafeLoad_TisPendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_mA24D3F1466E38A0B4B1AA337B4AD650AEFE1F970_gshared (PendingPlayerU5BU5D_t0528231D7204589D7A98D2A727DFFF7CBB36864E* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
PendingPlayerU5BU5D_t0528231D7204589D7A98D2A727DFFF7CBB36864E* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC Array_UnsafeLoad_TisPendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_mB137EF3A89CD7867B2C122226332DE6828735176_gshared (PendingPlayerInfoU5BU5D_t4FB2FD5DC2C9A9DD7851E566CC11A9B113081ADC* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
PendingPlayerInfoU5BU5D_t4FB2FD5DC2C9A9DD7851E566CC11A9B113081ADC* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 Array_UnsafeLoad_TisCRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_mF9B4CD752A084410D8C15EE6FBD19D1924A8E044_gshared (CRCMessageEntryU5BU5D_t1B5D587D6874D0A4400FC5721E2678BE6D3751EF* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
CRCMessageEntryU5BU5D_t1B5D587D6874D0A4400FC5721E2678BE6D3751EF* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B Array_UnsafeLoad_TisPeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B_m2A787207386E5C662E6BABDC35220D565150AC06_gshared (PeerInfoPlayerU5BU5D_t2DC6ACEAE1A547C8C73E8EEF72F51E0611E694F3* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
PeerInfoPlayerU5BU5D_t2DC6ACEAE1A547C8C73E8EEF72F51E0611E694F3* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.RaycastHit2D>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE Array_UnsafeLoad_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_mBA784523C0FE77CCEBC358003A746EE175C7CBDF_gshared (RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.UICharInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A Array_UnsafeLoad_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mA1702D26A47878803ED5772342CA30CA463184D8_gshared (UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.UILineInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 Array_UnsafeLoad_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m35D529B7A6D84100227F1EEDD75A0FE38227FA79_gshared (UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.UIVertex>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 Array_UnsafeLoad_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mECF35E4A0F83518BD95BAA7E99FD8587AA2B94E1_gshared (UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.UnitySynchronizationContext_WorkRequest>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 Array_UnsafeLoad_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mAB6878E92EDE4386DDE730A8BED98339AD1D2CB3_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Vector2>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Array_UnsafeLoad_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m81B2DA6102EA0C403B67FBCEDE53D91484AF6F53_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Vector3>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Array_UnsafeLoad_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m452323A17942B5BD2537FBBA753C38207C19CA95_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Vector4>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E Array_UnsafeLoad_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mB5A599D7D8DAB49D385122A9553F40592898A9EA_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Reflection.CustomAttributeExtensions::GetCustomAttribute<System.Object>(System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_mA75245E8BF9FAB8A58686B2B26E4FC342453E774_gshared (Assembly_t * ___element0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_mA75245E8BF9FAB8A58686B2B26E4FC342453E774_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Assembly_t * L_0 = ___element0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_1, /*hidden argument*/NULL);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_3 = CustomAttributeExtensions_GetCustomAttribute_m4F400BBA3D1EBE458C4CCEC26DF2A5F926AE3F34((Assembly_t *)L_0, (Type_t *)L_2, /*hidden argument*/NULL);
return ((RuntimeObject *)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
}
}
// T System.Runtime.CompilerServices.JitHelpers::UnsafeCast<System.Object>(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JitHelpers_UnsafeCast_TisRuntimeObject_m73BCB2D74DD9491AC08870D92BE47CFF9731990C_gshared (RuntimeObject * ___o0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___o0;
RuntimeObject * L_1 = (( RuntimeObject * (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_1;
}
}
// T System.Threading.LazyInitializer::EnsureInitialized<System.Object>(T&,System.Func`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LazyInitializer_EnsureInitialized_TisRuntimeObject_m7B0E3E50F3847BD7E9A7254C24D6DAA8994F6CC7_gshared (RuntimeObject ** ___target0, Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * ___valueFactory1, const RuntimeMethod* method)
{
{
RuntimeObject ** L_0 = ___target0;
RuntimeObject * L_1 = VolatileRead((RuntimeObject **)(RuntimeObject **)L_0);
if (!L_1)
{
goto IL_0014;
}
}
{
RuntimeObject ** L_2 = ___target0;
RuntimeObject * L_3 = (*(RuntimeObject **)L_2);
return L_3;
}
IL_0014:
{
RuntimeObject ** L_4 = ___target0;
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_5 = ___valueFactory1;
RuntimeObject * L_6 = (( RuntimeObject * (*) (RuntimeObject **, Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((RuntimeObject **)(RuntimeObject **)L_4, (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
return L_6;
}
}
// T System.Threading.LazyInitializer::EnsureInitializedCore<System.Object>(T&,System.Func`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LazyInitializer_EnsureInitializedCore_TisRuntimeObject_m4289829E8C0F3DA67A5B3E27721CF5D1C203CED2_gshared (RuntimeObject ** ___target0, Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * ___valueFactory1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LazyInitializer_EnsureInitializedCore_TisRuntimeObject_m4289829E8C0F3DA67A5B3E27721CF5D1C203CED2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
RuntimeObject * V_1 = NULL;
{
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_0 = ___valueFactory1;
NullCheck((Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *)L_0);
RuntimeObject * L_1 = (( RuntimeObject * (*) (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (RuntimeObject *)L_1;
RuntimeObject * L_2 = V_0;
if (L_2)
{
goto IL_001f;
}
}
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteral64358BBCCF8C380C05E774933982A64691BCEB28, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, LazyInitializer_EnsureInitializedCore_TisRuntimeObject_m4289829E8C0F3DA67A5B3E27721CF5D1C203CED2_RuntimeMethod_var);
}
IL_001f:
{
RuntimeObject ** L_5 = ___target0;
RuntimeObject * L_6 = V_0;
il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *));
RuntimeObject * L_7 = V_1;
InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_5, (RuntimeObject *)L_6, (RuntimeObject *)L_7);
RuntimeObject ** L_8 = ___target0;
RuntimeObject * L_9 = (*(RuntimeObject **)L_8);
return L_9;
}
}
// T System.Threading.Volatile::Read<System.Object>(T&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Volatile_Read_TisRuntimeObject_mE1E5C9FEE7986D0DC142899647016794AD72FE41_gshared (RuntimeObject ** ___location0, const RuntimeMethod* method)
{
return VolatileRead(___location0);
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<System.Int32>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeUtility_ReadArrayElement_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m4035A16640EF0CD46AA8C5531ACB424DEE4EBBF0_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(int32_t);
int32_t L_3 = (*(int32_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<System.Object>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * UnsafeUtility_ReadArrayElement_TisRuntimeObject_mEA464E7502775F297FD24174B32518004C16A032_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(RuntimeObject *);
RuntimeObject * L_3 = (*(RuntimeObject **)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.Experimental.GlobalIllumination.LightDataGI>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 UnsafeUtility_ReadArrayElement_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m066AC8133B3E249008AEBBE6A0E9850D87EC154E_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 );
LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 L_3 = (*(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.Plane>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED UnsafeUtility_ReadArrayElement_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mD81CD0DB631C7A002FB9464FD069992596794125_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED );
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED L_3 = (*(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.Rendering.BatchVisibility>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 UnsafeUtility_ReadArrayElement_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m77A1347F6614ADCB969BC6ED40CBFA1A7BD3A2A8_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 );
BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 L_3 = (*(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T UnityEngine.AttributeHelperEngine::GetCustomAttributeOfType<System.Object>(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * AttributeHelperEngine_GetCustomAttributeOfType_TisRuntimeObject_m7AEF0374A18EED15CB2B6318117FDC6364AC2F3B_gshared (Type_t * ___klass0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AttributeHelperEngine_GetCustomAttributeOfType_TisRuntimeObject_m7AEF0374A18EED15CB2B6318117FDC6364AC2F3B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
RuntimeObject * V_2 = 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_0 = (Type_t *)L_1;
Type_t * L_2 = ___klass0;
Type_t * L_3 = V_0;
NullCheck((MemberInfo_t *)L_2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(11 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, (MemberInfo_t *)L_2, (Type_t *)L_3, (bool)1);
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_4;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = V_1;
if (!L_5)
{
goto IL_0031;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = V_1;
NullCheck(L_6);
if (!(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))
{
goto IL_0031;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = V_1;
NullCheck(L_7);
int32_t L_8 = 0;
RuntimeObject * L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
V_2 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_003d;
}
IL_0031:
{
V_2 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)NULL, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_003d;
}
IL_003d:
{
RuntimeObject * L_10 = V_2;
return L_10;
}
}
// T UnityEngine.Component::GetComponent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponent_TisRuntimeObject_m15E3130603CE5400743CCCDEE7600FB9EEFAE5C0_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Component_GetComponent_TisRuntimeObject_m15E3130603CE5400743CCCDEE7600FB9EEFAE5C0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF V_0;
memset((&V_0), 0, sizeof(V_0));
RuntimeObject * V_1 = NULL;
{
il2cpp_codegen_initobj((&V_0), sizeof(CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF ));
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);
intptr_t* L_2 = (intptr_t*)(&V_0)->get_address_of_onePointerFurtherThanT_1();
intptr_t L_3;
memset((&L_3), 0, sizeof(L_3));
IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6_inline((&L_3), (void*)(void*)L_2, /*hidden argument*/NULL);
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this);
Component_GetComponentFastPath_mDEB49C6B56084E436C7FC3D555339FA16949937E((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this, (Type_t *)L_1, (intptr_t)L_3, /*hidden argument*/NULL);
RuntimeObject * L_4 = (RuntimeObject *)(&V_0)->get_t_0();
V_1 = (RuntimeObject *)L_4;
goto IL_0032;
}
IL_0032:
{
RuntimeObject * L_5 = V_1;
return L_5;
}
}
// T UnityEngine.Component::GetComponentInChildren<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponentInChildren_TisRuntimeObject_m06B65DD1CC6DFB48DB4DEE2CC185788D42837D30_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Component_GetComponentInChildren_TisRuntimeObject_m06B65DD1CC6DFB48DB4DEE2CC185788D42837D30_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = 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);
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this);
Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * L_2 = Component_GetComponentInChildren_mEF7890FAC10EA2F776464285B0DCC58B8C373D34((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this, (Type_t *)L_1, (bool)0, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_001d;
}
IL_001d:
{
RuntimeObject * L_3 = V_0;
return L_3;
}
}
// T UnityEngine.Component::GetComponentInParent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponentInParent_TisRuntimeObject_m3D5E351D50C60522BD31D282D044F6527C382749_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Component_GetComponentInParent_TisRuntimeObject_m3D5E351D50C60522BD31D282D044F6527C382749_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = 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);
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this);
Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * L_2 = Component_GetComponentInParent_mFD9A8F6311ABAF986CA0DA556662F89FD9234E7D((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this, (Type_t *)L_1, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_001c;
}
IL_001c:
{
RuntimeObject * L_3 = V_0;
return L_3;
}
}
// T UnityEngine.EventSystems.ExecuteEvents::ValidateEventData<System.Object>(UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ExecuteEvents_ValidateEventData_TisRuntimeObject_mC0CCF6A7FE6F32C0C6B0FB70F163257D9A07F211_gshared (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_ValidateEventData_TisRuntimeObject_mC0CCF6A7FE6F32C0C6B0FB70F163257D9A07F211_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_0 = ___data0;
if (((RuntimeObject *)Castclass((RuntimeObject*)((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))), IL2CPP_RGCTX_DATA(method->rgctx_data, 0))))
{
goto IL_0032;
}
}
{
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___data0;
NullCheck((RuntimeObject *)L_1);
Type_t * L_2 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60((RuntimeObject *)L_1, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL);
String_t* L_5 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A((String_t*)_stringLiteral9E40BAB578BFD23D5BA188CEF4D4CE5EB5A78927, (RuntimeObject *)L_2, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_6, (String_t*)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, ExecuteEvents_ValidateEventData_TisRuntimeObject_mC0CCF6A7FE6F32C0C6B0FB70F163257D9A07F211_RuntimeMethod_var);
}
IL_0032:
{
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_7 = ___data0;
return ((RuntimeObject *)Castclass((RuntimeObject*)((RuntimeObject *)IsInst((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))), IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
}
}
// T UnityEngine.GameObject::AddComponent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_AddComponent_TisRuntimeObject_m80EDFEAC4927F588A7A702F81524EDBFA8603FE2_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GameObject_AddComponent_TisRuntimeObject_m80EDFEAC4927F588A7A702F81524EDBFA8603FE2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = 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);
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this);
Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * L_2 = GameObject_AddComponent_m489C9D5426F2050795FA696CD478BB49AAE4BD70((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this, (Type_t *)L_1, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))), IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_0021;
}
IL_0021:
{
RuntimeObject * L_3 = V_0;
return L_3;
}
}
// T UnityEngine.GameObject::GetComponent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF V_0;
memset((&V_0), 0, sizeof(V_0));
RuntimeObject * V_1 = NULL;
{
il2cpp_codegen_initobj((&V_0), sizeof(CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF ));
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);
intptr_t* L_2 = (intptr_t*)(&V_0)->get_address_of_onePointerFurtherThanT_1();
intptr_t L_3;
memset((&L_3), 0, sizeof(L_3));
IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6_inline((&L_3), (void*)(void*)L_2, /*hidden argument*/NULL);
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this);
GameObject_GetComponentFastPath_m5B276335DD94F6B307E604272A26C15B997C3CD4((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this, (Type_t *)L_1, (intptr_t)L_3, /*hidden argument*/NULL);
RuntimeObject * L_4 = (RuntimeObject *)(&V_0)->get_t_0();
V_1 = (RuntimeObject *)L_4;
goto IL_0032;
}
IL_0032:
{
RuntimeObject * L_5 = V_1;
return L_5;
}
}
// T UnityEngine.GameObject::GetComponentInChildren<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_GetComponentInChildren_TisRuntimeObject_mF2869D54987BDCEE9F39FF2F62D1FB1016744718_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
bool V_0 = false;
RuntimeObject * V_1 = NULL;
{
V_0 = (bool)0;
bool L_0 = V_0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this);
RuntimeObject * L_1 = (( RuntimeObject * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_1 = (RuntimeObject *)L_1;
goto IL_0010;
}
IL_0010:
{
RuntimeObject * L_2 = V_1;
return L_2;
}
}
// T UnityEngine.GameObject::GetComponentInChildren<System.Object>(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_GetComponentInChildren_TisRuntimeObject_mA15208779D36FF60D56159BD6B74200FF125201E_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, bool ___includeInactive0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GameObject_GetComponentInChildren_TisRuntimeObject_mA15208779D36FF60D56159BD6B74200FF125201E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = 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);
bool L_2 = ___includeInactive0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this);
Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * L_3 = GameObject_GetComponentInChildren_mBC5C12CDA1749A827D136DABBF10498B1096A086((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this, (Type_t *)L_1, (bool)L_2, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_001d;
}
IL_001d:
{
RuntimeObject * L_4 = V_0;
return L_4;
}
}
// T UnityEngine.Object::FindObjectOfType<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_FindObjectOfType_TisRuntimeObject_mE3957366B74863C807E6E8A23D239A0CB079BB9C_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Object_FindObjectOfType_TisRuntimeObject_mE3957366B74863C807E6E8A23D239A0CB079BB9C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = 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);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_2 = Object_FindObjectOfType_mCDF38E1667CF4502F60C59709D70B60EF7E408DA((Type_t *)L_1, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_001b;
}
IL_001b:
{
RuntimeObject * L_3 = V_0;
return L_3;
}
}
// T UnityEngine.Object::Instantiate<System.Object>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_Instantiate_TisRuntimeObject_mFBEB99FAFA7C81868D18C2A17C94AF512CD872EC_gshared (RuntimeObject * ___original0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Object_Instantiate_TisRuntimeObject_mFBEB99FAFA7C81868D18C2A17C94AF512CD872EC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
RuntimeObject * V_1 = NULL;
{
RuntimeObject * L_0 = ___original0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
Object_CheckNullArgument_m8D42F516655D770DFEEAA13CF86A2612214AAA9B((RuntimeObject *)L_0, (String_t*)_stringLiteral56EB1C433748E5EF9B4DB1C73820724497D429D3, /*hidden argument*/NULL);
RuntimeObject * L_1 = ___original0;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_2 = Object_Internal_CloneSingle_m4231A0B9138AC40B76655B772F687CC7E6160C06((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_1, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
RuntimeObject * L_3 = V_0;
bool L_4 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_3, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_003e;
}
}
{
UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28 * L_5 = (UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28 *)il2cpp_codegen_object_new(UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28_il2cpp_TypeInfo_var);
UnityException__ctor_mE42363D886E6DD7F075A6AEA689434C8E96722D9(L_5, (String_t*)_stringLiteralBF077A5DDDFA362E2EE48FEBBAD7CC35A4A6952D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Object_Instantiate_TisRuntimeObject_mFBEB99FAFA7C81868D18C2A17C94AF512CD872EC_RuntimeMethod_var);
}
IL_003e:
{
RuntimeObject * L_6 = V_0;
V_1 = (RuntimeObject *)L_6;
goto IL_0045;
}
IL_0045:
{
RuntimeObject * L_7 = V_1;
return L_7;
}
}
// T UnityEngine.Object::Instantiate<System.Object>(T,UnityEngine.Vector3,UnityEngine.Quaternion)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_Instantiate_TisRuntimeObject_m352D452C728667C9C76C942525CDE26444568ECD_gshared (RuntimeObject * ___original0, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position1, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___rotation2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Object_Instantiate_TisRuntimeObject_m352D452C728667C9C76C942525CDE26444568ECD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeObject * L_0 = ___original0;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_1 = ___position1;
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_2 = ___rotation2;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_3 = Object_Instantiate_mAF9C2662167396DEE640598515B60BE41B9D5082((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_0, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_1, (Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 )L_2, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
goto IL_0019;
}
IL_0019:
{
RuntimeObject * L_4 = V_0;
return L_4;
}
}
// T UnityEngine.Resources::GetBuiltinResource<System.Object>(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Resources_GetBuiltinResource_TisRuntimeObject_m832F2383487D59D5D8B18FA4C1C689A1032669BE_gshared (String_t* ___path0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Resources_GetBuiltinResource_TisRuntimeObject_m832F2383487D59D5D8B18FA4C1C689A1032669BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = 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);
String_t* L_2 = ___path0;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_3 = Resources_GetBuiltinResource_m73DDAC485E1E06C925628AA7285AC63D0797BD0A((Type_t *)L_1, (String_t*)L_2, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_001c;
}
IL_001c:
{
RuntimeObject * L_4 = V_0;
return L_4;
}
}
// T UnityEngine.ScriptableObject::CreateInstance<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ScriptableObject_CreateInstance_TisRuntimeObject_m7A8F75139352BA04C2EEC1D72D430FAC94C753DE_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ScriptableObject_CreateInstance_TisRuntimeObject_m7A8F75139352BA04C2EEC1D72D430FAC94C753DE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = 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);
ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 * L_2 = ScriptableObject_CreateInstance_mDC77B7257A5E276CB272D3475B9B473B23A7128D((Type_t *)L_1, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_001b;
}
IL_001b:
{
RuntimeObject * L_3 = V_0;
return L_3;
}
}
// T UnityEngine.UI.Dropdown::GetOrAddComponent<System.Object>(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dropdown_GetOrAddComponent_TisRuntimeObject_mAEDB727D813C41FFCB6E8556119504E270F2E755_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___go0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_GetOrAddComponent_TisRuntimeObject_mAEDB727D813C41FFCB6E8556119504E270F2E755_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___go0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0);
RuntimeObject * L_1 = (( RuntimeObject * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (RuntimeObject *)L_1;
RuntimeObject * L_2 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_3 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_001b;
}
}
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = ___go0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_4);
RuntimeObject * L_5 = (( RuntimeObject * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
V_0 = (RuntimeObject *)L_5;
}
IL_001b:
{
RuntimeObject * L_6 = V_0;
return L_6;
}
}
// TMsg UnityEngine.Networking.NetworkMessage::ReadMessage<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * NetworkMessage_ReadMessage_TisRuntimeObject_mB426018207D45F966A30491CB45D2898AA5424D3_gshared (NetworkMessage_tCD66E2AE395A185EFE622EBB5497C95F6754685C * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (( RuntimeObject * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
RuntimeObject * L_1 = (RuntimeObject *)L_0;
NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 * L_2 = (NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 *)__this->get_reader_3();
NullCheck((MessageBase_t2EA42B01AD6A5F36EAF84BE623801951B9F55416 *)L_1);
VirtActionInvoker1< NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 * >::Invoke(4 /* System.Void UnityEngine.Networking.MessageBase::Deserialize(UnityEngine.Networking.NetworkReader) */, (MessageBase_t2EA42B01AD6A5F36EAF84BE623801951B9F55416 *)L_1, (NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 *)L_2);
return L_1;
}
}
// TMsg UnityEngine.Networking.NetworkReader::ReadMessage<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * NetworkReader_ReadMessage_TisRuntimeObject_mC5E98B9BA6B486F0C1E31B34412C83F96673B6D0_gshared (NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (( RuntimeObject * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
RuntimeObject * L_1 = (RuntimeObject *)L_0;
NullCheck((MessageBase_t2EA42B01AD6A5F36EAF84BE623801951B9F55416 *)L_1);
VirtActionInvoker1< NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 * >::Invoke(4 /* System.Void UnityEngine.Networking.MessageBase::Deserialize(UnityEngine.Networking.NetworkReader) */, (MessageBase_t2EA42B01AD6A5F36EAF84BE623801951B9F55416 *)L_1, (NetworkReader_t7011A2F66F461EA5D4413F3979F1F3244D82FD12 *)__this);
return L_1;
}
}
// TOutput[] System.Array::ConvertAll<System.Object,System.Object>(TInput[],System.Converter`2<TInput,TOutput>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m4EB6BCB9266D31902A76F2F846B438DDC3B6A79D_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979 * ___converter1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m4EB6BCB9266D31902A76F2F846B438DDC3B6A79D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
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_ConvertAll_TisRuntimeObject_TisRuntimeObject_m4EB6BCB9266D31902A76F2F846B438DDC3B6A79D_RuntimeMethod_var);
}
IL_000e:
{
Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979 * L_2 = ___converter1;
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*)_stringLiteral2C3199988097E4BB3103E8C34B8DFE8796545D8F, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m4EB6BCB9266D31902A76F2F846B438DDC3B6A79D_RuntimeMethod_var);
}
IL_001c:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0;
NullCheck(L_4);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_5;
V_1 = (int32_t)0;
goto IL_0041;
}
IL_0029:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = V_0;
int32_t L_7 = V_1;
Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979 * L_8 = ___converter1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = ___array0;
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
RuntimeObject * L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck((Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979 *)L_8);
RuntimeObject * L_13 = (( RuntimeObject * (*) (Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979 *)L_8, (RuntimeObject *)L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject *)L_13);
int32_t L_14 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_0041:
{
int32_t L_15 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = ___array0;
NullCheck(L_16);
if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))))
{
goto IL_0029;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = V_0;
return L_17;
}
}
// TSource System.Linq.Enumerable::SingleOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_gshared (RuntimeObject* ___source0, Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * ___predicate1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
int64_t V_1 = 0;
RuntimeObject* V_2 = NULL;
RuntimeObject * V_3 = NULL;
RuntimeObject * V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_RuntimeMethod_var);
}
IL_000e:
{
Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * L_2 = ___predicate1;
if (L_2)
{
goto IL_001c;
}
}
{
Exception_t * L_3 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral04444310B8C9D216A6BC1D1CC9542ECC75BC02DF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_RuntimeMethod_var);
}
IL_001c:
{
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
V_1 = (int64_t)(((int64_t)((int64_t)0)));
RuntimeObject* L_4 = ___source0;
NullCheck((RuntimeObject*)L_4);
RuntimeObject* L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_4);
V_2 = (RuntimeObject*)L_5;
}
IL_002e:
try
{ // begin try (depth: 1)
{
goto IL_0047;
}
IL_0030:
{
RuntimeObject* L_6 = V_2;
NullCheck((RuntimeObject*)L_6);
RuntimeObject * L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_6);
V_3 = (RuntimeObject *)L_7;
Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * L_8 = ___predicate1;
RuntimeObject * L_9 = V_3;
NullCheck((Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *)L_8);
bool L_10 = (( bool (*) (Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *)L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
if (!L_10)
{
goto IL_0047;
}
}
IL_0040:
{
RuntimeObject * L_11 = V_3;
V_0 = (RuntimeObject *)L_11;
int64_t L_12 = V_1;
if (il2cpp_codegen_check_add_overflow((int64_t)L_12, (int64_t)(((int64_t)((int64_t)1)))))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_RuntimeMethod_var);
V_1 = (int64_t)((int64_t)il2cpp_codegen_add((int64_t)L_12, (int64_t)(((int64_t)((int64_t)1)))));
}
IL_0047:
{
RuntimeObject* L_13 = V_2;
NullCheck((RuntimeObject*)L_13);
bool L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
if (L_14)
{
goto IL_0030;
}
}
IL_004f:
{
IL2CPP_LEAVE(0x5B, FINALLY_0051);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0051;
}
FINALLY_0051:
{ // begin finally (depth: 1)
{
RuntimeObject* L_15 = V_2;
if (!L_15)
{
goto IL_005a;
}
}
IL_0054:
{
RuntimeObject* L_16 = V_2;
NullCheck((RuntimeObject*)L_16);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_16);
}
IL_005a:
{
IL2CPP_END_FINALLY(81)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(81)
{
IL2CPP_JUMP_TBL(0x5B, IL_005b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_005b:
{
int64_t L_17 = V_1;
if (!L_17)
{
goto IL_0065;
}
}
{
int64_t L_18 = V_1;
if ((((int64_t)L_18) == ((int64_t)(((int64_t)((int64_t)1))))))
{
goto IL_0070;
}
}
{
goto IL_0072;
}
IL_0065:
{
il2cpp_codegen_initobj((&V_4), sizeof(RuntimeObject *));
RuntimeObject * L_19 = V_4;
return L_19;
}
IL_0070:
{
RuntimeObject * L_20 = V_0;
return L_20;
}
IL_0072:
{
Exception_t * L_21 = Error_MoreThanOneMatch_m85C3617F782E9F2333FC1FDF42821BE069F24623(/*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_RuntimeMethod_var);
}
}
// TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.Object,System.Object>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m65245601C668347780A2F6D1A8D7EEC7D79AD673_gshared (RuntimeObject* ___dictionary0, RuntimeObject * ___key1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
RuntimeObject* L_0 = ___dictionary0;
RuntimeObject * L_1 = ___key1;
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_2 = V_0;
RuntimeObject * L_3 = (( RuntimeObject * (*) (RuntimeObject*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((RuntimeObject*)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_3;
}
}
// TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.Object,System.Object>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m5D116C3383F95724C01C628C0D0069F3D7F65621_gshared (RuntimeObject* ___dictionary0, RuntimeObject * ___key1, RuntimeObject * ___defaultValue2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m5D116C3383F95724C01C628C0D0069F3D7F65621_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeObject* L_0 = ___dictionary0;
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*)_stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m5D116C3383F95724C01C628C0D0069F3D7F65621_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___dictionary0;
RuntimeObject * L_3 = ___key1;
NullCheck((RuntimeObject*)L_2);
bool L_4 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject ** >::Invoke(0 /* System.Boolean System.Collections.Generic.IReadOnlyDictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_2, (RuntimeObject *)L_3, (RuntimeObject **)(RuntimeObject **)(&V_0));
if (L_4)
{
goto IL_001b;
}
}
{
RuntimeObject * L_5 = ___defaultValue2;
return L_5;
}
IL_001b:
{
RuntimeObject * L_6 = V_0;
return L_6;
}
}
// T[] System.Array::Empty<System.Char>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* Array_Empty_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mB69B3E7C1276AE609F2B9FA977634893619F966D_gshared (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ((EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::Empty<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* Array_Empty_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m9EF9C1558CFFF96DB7596CA1EBBD30B5FCAB0538_gshared (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* L_0 = ((EmptyArray_1_t2F6E359A64FCAE440B259B477121A341730D73D3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::Empty<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* Array_Empty_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m1A60190AB0E2A341E03194FC70B762E9A91708D5_gshared (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_0 = ((EmptyArray_1_tA835F9169F98551C5189EB04F9D45B0E331E6B98_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::Empty<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* Array_Empty_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m70299FD71AF4EBCB301FA4BE52FFC24ACB084846_gshared (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_0 = ((EmptyArray_1_t11B3969D38E2BF74B97BD01F02D6E2583FAA1D8F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::Empty<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Array_Empty_TisRuntimeObject_m9CF99326FAC8A01A4A25C90AA97F0799BA35ECAB_gshared (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ((EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::Empty<UnityEngine.Networking.ChannelPacket>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ChannelPacketU5BU5D_t4F30D435CDD109EFAC04DDAA14FFCA6EC3FD3C68* Array_Empty_TisChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_m2E3849C9BEEE5F81EC442C192B6FD76616495A11_gshared (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
ChannelPacketU5BU5D_t4F30D435CDD109EFAC04DDAA14FFCA6EC3FD3C68* L_0 = ((EmptyArray_1_t165B5C598FC8FD3BE53DB6F40BD61821CD2CDEBB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::Empty<UnityEngine.Networking.LocalClient_InternalMsg>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalMsgU5BU5D_t9FE1EB9BD31AEA326D79AC2749B4D89621EB99B6* Array_Empty_TisInternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_mA5BD4D41B679B4B7694794913A0443CF188248D3_gshared (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
InternalMsgU5BU5D_t9FE1EB9BD31AEA326D79AC2749B4D89621EB99B6* L_0 = ((EmptyArray_1_tC97ACD4D9D5808AE2F19E11EFE6DFF24D128FADE_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::FindAll<System.Object>(T[],System.Predicate`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Array_FindAll_TisRuntimeObject_mA98E5A13A8737A1E5CD968D85C81A5275D98270D_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___match1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_FindAll_TisRuntimeObject_mA98E5A13A8737A1E5CD968D85C81A5275D98270D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** G_B9_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** G_B8_0 = NULL;
int32_t G_B10_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** G_B10_1 = 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_FindAll_TisRuntimeObject_mA98E5A13A8737A1E5CD968D85C81A5275D98270D_RuntimeMethod_var);
}
IL_000e:
{
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_2 = ___match1;
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_FindAll_TisRuntimeObject_mA98E5A13A8737A1E5CD968D85C81A5275D98270D_RuntimeMethod_var);
}
IL_001c:
{
V_0 = (int32_t)0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_4;
V_2 = (int32_t)0;
goto IL_006b;
}
IL_0028:
{
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_5 = ___match1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = ___array0;
int32_t L_7 = V_2;
NullCheck(L_6);
int32_t L_8 = L_7;
RuntimeObject * L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
NullCheck((Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_5);
bool L_10 = (( bool (*) (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_5, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
if (!L_10)
{
goto IL_0067;
}
}
{
int32_t L_11 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_1;
NullCheck(L_12);
if ((!(((uint32_t)L_11) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))))))
{
goto IL_0055;
}
}
{
int32_t L_13 = V_0;
G_B8_0 = (&V_1);
if (!L_13)
{
G_B9_0 = (&V_1);
goto IL_0047;
}
}
{
int32_t L_14 = V_0;
G_B10_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_14, (int32_t)2));
G_B10_1 = G_B8_0;
goto IL_0048;
}
IL_0047:
{
G_B10_0 = 4;
G_B10_1 = G_B9_0;
}
IL_0048:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = ___array0;
NullCheck(L_15);
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_16 = Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525((int32_t)G_B10_0, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))), /*hidden argument*/NULL);
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)G_B10_1, (int32_t)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
}
IL_0055:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = V_1;
int32_t L_18 = V_0;
int32_t L_19 = (int32_t)L_18;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = ___array0;
int32_t L_21 = V_2;
NullCheck(L_20);
int32_t L_22 = L_21;
RuntimeObject * L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (RuntimeObject *)L_23);
}
IL_0067:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_006b:
{
int32_t L_25 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = ___array0;
NullCheck(L_26);
if ((((int32_t)L_25) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length)))))))
{
goto IL_0028;
}
}
{
int32_t L_27 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_28 = V_1;
NullCheck(L_28);
if ((((int32_t)L_27) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))))
{
goto IL_007f;
}
}
{
int32_t L_29 = V_0;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)(&V_1), (int32_t)L_29, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
}
IL_007f:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = V_1;
return L_30;
}
}
// T[] System.Reflection.CustomAttributeData::UnboxValues<System.Object>(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* CustomAttributeData_UnboxValues_TisRuntimeObject_mFB1257FB7BD27255281B2111A20203E3A93E7050_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values0, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
int32_t V_1 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___values0;
NullCheck(L_0);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_1;
V_1 = (int32_t)0;
goto IL_0020;
}
IL_000d:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = V_0;
int32_t L_3 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___values0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0020:
{
int32_t L_9 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = ___values0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))))
{
goto IL_000d;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = V_0;
return L_11;
}
}
// T[] System.Reflection.CustomAttributeData::UnboxValues<System.Reflection.CustomAttributeNamedArgument>(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828* CustomAttributeData_UnboxValues_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mC152FBD94252DA2417B7773AE16C51154C9F6A72_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values0, const RuntimeMethod* method)
{
CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828* V_0 = NULL;
int32_t V_1 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___values0;
NullCheck(L_0);
CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828* L_1 = (CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828*)(CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))));
V_0 = (CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828*)L_1;
V_1 = (int32_t)0;
goto IL_0020;
}
IL_000d:
{
CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828* L_2 = V_0;
int32_t L_3 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___values0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E )((*(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)((CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))))));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0020:
{
int32_t L_9 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = ___values0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))))
{
goto IL_000d;
}
}
{
CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828* L_11 = V_0;
return L_11;
}
}
// T[] System.Reflection.CustomAttributeData::UnboxValues<System.Reflection.CustomAttributeTypedArgument>(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05* CustomAttributeData_UnboxValues_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m846F81B95C445180214406E0D355EBA8EC9644D1_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values0, const RuntimeMethod* method)
{
CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05* V_0 = NULL;
int32_t V_1 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___values0;
NullCheck(L_0);
CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05* L_1 = (CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05*)(CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))));
V_0 = (CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05*)L_1;
V_1 = (int32_t)0;
goto IL_0020;
}
IL_000d:
{
CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05* L_2 = V_0;
int32_t L_3 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___values0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 )((*(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)((CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))))));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0020:
{
int32_t L_9 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = ___values0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))))
{
goto IL_000d;
}
}
{
CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05* L_11 = V_0;
return L_11;
}
}
// T[] UnityEngine.Component::GetComponents<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Component_GetComponents_TisRuntimeObject_mDC1D023FE07F73E1E8433D1E896D5F1250180C10_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this, /*hidden argument*/NULL);
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_1;
goto IL_0012;
}
IL_0012:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = V_0;
return L_2;
}
}
// T[] UnityEngine.Component::GetComponentsInParent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Component_GetComponentsInParent_TisRuntimeObject_m4C178287A7D9F411324F0D20D7214B40AC502A26_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_0;
goto IL_000e;
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = V_0;
return L_1;
}
}
// T[] UnityEngine.Component::GetComponentsInParent<System.Object>(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Component_GetComponentsInParent_TisRuntimeObject_m56104E1DFC5F47D3DB51348DD3935EEE53DCB433_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, bool ___includeInactive0, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this, /*hidden argument*/NULL);
bool L_1 = ___includeInactive0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2;
goto IL_0013;
}
IL_0013:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
return L_3;
}
}
// T[] UnityEngine.GameObject::GetComponents<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* GameObject_GetComponents_TisRuntimeObject_m5EA1B9B8C5B01E9DE33C6FB0D9AD52F85E0D3911_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GameObject_GetComponents_TisRuntimeObject_m5EA1B9B8C5B01E9DE33C6FB0D9AD52F85E0D3911_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = 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);
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this);
RuntimeArray * L_2 = GameObject_GetComponentsInternal_mAB759217A3AD0831ABD9387163126D391459E1B8((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this, (Type_t *)L_1, (bool)1, (bool)0, (bool)1, (bool)0, (RuntimeObject *)NULL, /*hidden argument*/NULL);
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_0021;
}
IL_0021:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
return L_3;
}
}
// T[] UnityEngine.GameObject::GetComponentsInChildren<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* GameObject_GetComponentsInChildren_TisRuntimeObject_mF6284FE6B77A126095C692AA4FAC2A7748448AFA_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_0;
goto IL_000e;
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = V_0;
return L_1;
}
}
// T[] UnityEngine.GameObject::GetComponentsInChildren<System.Object>(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* GameObject_GetComponentsInChildren_TisRuntimeObject_m480234581F731A03837A715CDD95230957255B5B_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, bool ___includeInactive0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GameObject_GetComponentsInChildren_TisRuntimeObject_m480234581F731A03837A715CDD95230957255B5B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = 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);
bool L_2 = ___includeInactive0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this);
RuntimeArray * L_3 = GameObject_GetComponentsInternal_mAB759217A3AD0831ABD9387163126D391459E1B8((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this, (Type_t *)L_1, (bool)1, (bool)1, (bool)L_2, (bool)0, (RuntimeObject *)NULL, /*hidden argument*/NULL);
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_0021;
}
IL_0021:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
return L_4;
}
}
// T[] UnityEngine.GameObject::GetComponentsInParent<System.Object>(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* GameObject_GetComponentsInParent_TisRuntimeObject_m80BC53BC6926863115F0039372F2CB123D4A44BE_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, bool ___includeInactive0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GameObject_GetComponentsInParent_TisRuntimeObject_m80BC53BC6926863115F0039372F2CB123D4A44BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = 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);
bool L_2 = ___includeInactive0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this);
RuntimeArray * L_3 = GameObject_GetComponentsInternal_mAB759217A3AD0831ABD9387163126D391459E1B8((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this, (Type_t *)L_1, (bool)1, (bool)1, (bool)L_2, (bool)1, (RuntimeObject *)NULL, /*hidden argument*/NULL);
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_0021;
}
IL_0021:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
return L_4;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<System.Object>(UnityEngine.Rendering.VertexAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Mesh_GetAllocArrayFromChannel_TisRuntimeObject_mA5F18E3462F04632978FDE240F85E28A870C2B2F_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___channel0;
int32_t L_2 = Mesh_DefaultDimensionForChannel_mF943AF434BB9F54DBB3B3DE65F7B816E617A89C9((int32_t)L_1, /*hidden argument*/NULL);
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_0, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_3;
goto IL_0015;
}
IL_0015:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
return L_4;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<System.Object>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh_InternalVertexChannelType,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Mesh_GetAllocArrayFromChannel_TisRuntimeObject_mB70F49316410928344D97591B36FEF0E8F7A9F21_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, int32_t ___format1, int32_t ___dim2, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_0 = Mesh_get_canAccess_m1E0020EA7961227FBC0D90D851A49BCF7EB1E194((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0033;
}
}
{
int32_t L_1 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_2 = Mesh_HasChannel_mF94FB364044F2A0812AF6DDDC811318159D2D4AD((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_002d;
}
}
{
int32_t L_3 = ___channel0;
int32_t L_4 = ___format1;
int32_t L_5 = ___dim2;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
RuntimeArray * L_6 = Mesh_GetAllocArrayFromChannelImpl_m965F3844FBD29C866754948D036A6BC6ECF89334((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_3, (int32_t)L_4, (int32_t)L_5, /*hidden argument*/NULL);
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
goto IL_0048;
}
IL_002d:
{
goto IL_003c;
}
IL_0033:
{
int32_t L_7 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Mesh_PrintErrorCantAccessChannel_m2E8A25959739B006557A94F7E460E8BE0B3ABB19((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_7, /*hidden argument*/NULL);
}
IL_003c:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (uint32_t)0);
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_8;
goto IL_0048;
}
IL_0048:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = V_0;
return L_9;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Color32>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh_InternalVertexChannelType,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* Mesh_GetAllocArrayFromChannel_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mBD28E289F6DA9261F8B48C346E498E4CE24131C9_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, int32_t ___format1, int32_t ___dim2, const RuntimeMethod* method)
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* V_0 = NULL;
{
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_0 = Mesh_get_canAccess_m1E0020EA7961227FBC0D90D851A49BCF7EB1E194((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0033;
}
}
{
int32_t L_1 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_2 = Mesh_HasChannel_mF94FB364044F2A0812AF6DDDC811318159D2D4AD((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_002d;
}
}
{
int32_t L_3 = ___channel0;
int32_t L_4 = ___format1;
int32_t L_5 = ___dim2;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
RuntimeArray * L_6 = Mesh_GetAllocArrayFromChannelImpl_m965F3844FBD29C866754948D036A6BC6ECF89334((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_3, (int32_t)L_4, (int32_t)L_5, /*hidden argument*/NULL);
V_0 = (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)((Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
goto IL_0048;
}
IL_002d:
{
goto IL_003c;
}
IL_0033:
{
int32_t L_7 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Mesh_PrintErrorCantAccessChannel_m2E8A25959739B006557A94F7E460E8BE0B3ABB19((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_7, /*hidden argument*/NULL);
}
IL_003c:
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_8 = (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)(Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (uint32_t)0);
V_0 = (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)L_8;
goto IL_0048;
}
IL_0048:
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_9 = V_0;
return L_9;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector2>(UnityEngine.Rendering.VertexAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* Mesh_GetAllocArrayFromChannel_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m5C40565F81077409CEBD6BB7B2C5ABC02A44F0A8_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, const RuntimeMethod* method)
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* V_0 = NULL;
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___channel0;
int32_t L_2 = Mesh_DefaultDimensionForChannel_mF943AF434BB9F54DBB3B3DE65F7B816E617A89C9((int32_t)L_1, /*hidden argument*/NULL);
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_3 = (( Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* (*) (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_0, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_3;
goto IL_0015;
}
IL_0015:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_4 = V_0;
return L_4;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector2>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh_InternalVertexChannelType,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* Mesh_GetAllocArrayFromChannel_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m2F05741DD1B1A6FA9D8A822335B3AFF732E51535_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, int32_t ___format1, int32_t ___dim2, const RuntimeMethod* method)
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* V_0 = NULL;
{
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_0 = Mesh_get_canAccess_m1E0020EA7961227FBC0D90D851A49BCF7EB1E194((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0033;
}
}
{
int32_t L_1 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_2 = Mesh_HasChannel_mF94FB364044F2A0812AF6DDDC811318159D2D4AD((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_002d;
}
}
{
int32_t L_3 = ___channel0;
int32_t L_4 = ___format1;
int32_t L_5 = ___dim2;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
RuntimeArray * L_6 = Mesh_GetAllocArrayFromChannelImpl_m965F3844FBD29C866754948D036A6BC6ECF89334((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_3, (int32_t)L_4, (int32_t)L_5, /*hidden argument*/NULL);
V_0 = (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
goto IL_0048;
}
IL_002d:
{
goto IL_003c;
}
IL_0033:
{
int32_t L_7 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Mesh_PrintErrorCantAccessChannel_m2E8A25959739B006557A94F7E460E8BE0B3ABB19((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_7, /*hidden argument*/NULL);
}
IL_003c:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_8 = (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (uint32_t)0);
V_0 = (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_8;
goto IL_0048;
}
IL_0048:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_9 = V_0;
return L_9;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector3>(UnityEngine.Rendering.VertexAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* Mesh_GetAllocArrayFromChannel_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m2A198BF0F2DF179DF0C126C5A0BAFA1B75765F4E_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, const RuntimeMethod* method)
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* V_0 = NULL;
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___channel0;
int32_t L_2 = Mesh_DefaultDimensionForChannel_mF943AF434BB9F54DBB3B3DE65F7B816E617A89C9((int32_t)L_1, /*hidden argument*/NULL);
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_3 = (( Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* (*) (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_0, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_3;
goto IL_0015;
}
IL_0015:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_4 = V_0;
return L_4;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector3>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh_InternalVertexChannelType,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* Mesh_GetAllocArrayFromChannel_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m6941226C08A606477C40149880CDB6D9D7142485_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, int32_t ___format1, int32_t ___dim2, const RuntimeMethod* method)
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* V_0 = NULL;
{
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_0 = Mesh_get_canAccess_m1E0020EA7961227FBC0D90D851A49BCF7EB1E194((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0033;
}
}
{
int32_t L_1 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_2 = Mesh_HasChannel_mF94FB364044F2A0812AF6DDDC811318159D2D4AD((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_002d;
}
}
{
int32_t L_3 = ___channel0;
int32_t L_4 = ___format1;
int32_t L_5 = ___dim2;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
RuntimeArray * L_6 = Mesh_GetAllocArrayFromChannelImpl_m965F3844FBD29C866754948D036A6BC6ECF89334((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_3, (int32_t)L_4, (int32_t)L_5, /*hidden argument*/NULL);
V_0 = (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
goto IL_0048;
}
IL_002d:
{
goto IL_003c;
}
IL_0033:
{
int32_t L_7 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Mesh_PrintErrorCantAccessChannel_m2E8A25959739B006557A94F7E460E8BE0B3ABB19((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_7, /*hidden argument*/NULL);
}
IL_003c:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_8 = (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (uint32_t)0);
V_0 = (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_8;
goto IL_0048;
}
IL_0048:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_9 = V_0;
return L_9;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector4>(UnityEngine.Rendering.VertexAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* Mesh_GetAllocArrayFromChannel_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mBDD94A90E9F34CAC60C6B772992E35F66EF2D64D_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, const RuntimeMethod* method)
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* V_0 = NULL;
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___channel0;
int32_t L_2 = Mesh_DefaultDimensionForChannel_mF943AF434BB9F54DBB3B3DE65F7B816E617A89C9((int32_t)L_1, /*hidden argument*/NULL);
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_3 = (( Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* (*) (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_0, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_3;
goto IL_0015;
}
IL_0015:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_4 = V_0;
return L_4;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector4>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh_InternalVertexChannelType,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* Mesh_GetAllocArrayFromChannel_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m3CF4E55B415536795AD1C1C3B620AE9546B674AF_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, int32_t ___format1, int32_t ___dim2, const RuntimeMethod* method)
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* V_0 = NULL;
{
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_0 = Mesh_get_canAccess_m1E0020EA7961227FBC0D90D851A49BCF7EB1E194((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0033;
}
}
{
int32_t L_1 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_2 = Mesh_HasChannel_mF94FB364044F2A0812AF6DDDC811318159D2D4AD((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_002d;
}
}
{
int32_t L_3 = ___channel0;
int32_t L_4 = ___format1;
int32_t L_5 = ___dim2;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
RuntimeArray * L_6 = Mesh_GetAllocArrayFromChannelImpl_m965F3844FBD29C866754948D036A6BC6ECF89334((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_3, (int32_t)L_4, (int32_t)L_5, /*hidden argument*/NULL);
V_0 = (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
goto IL_0048;
}
IL_002d:
{
goto IL_003c;
}
IL_0033:
{
int32_t L_7 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Mesh_PrintErrorCantAccessChannel_m2E8A25959739B006557A94F7E460E8BE0B3ABB19((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_7, /*hidden argument*/NULL);
}
IL_003c:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_8 = (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)(Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (uint32_t)0);
V_0 = (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_8;
goto IL_0048;
}
IL_0048:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_9 = V_0;
return L_9;
}
}
// T[] UnityEngine.Object::FindObjectsOfType<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Object_FindObjectsOfType_TisRuntimeObject_mE570B614F68E0A19BD5F65061CDA9BEE6EDBD159_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Object_FindObjectsOfType_TisRuntimeObject_mE570B614F68E0A19BD5F65061CDA9BEE6EDBD159_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = 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);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* L_2 = Object_FindObjectsOfType_m3FC26FB3B36525BFBFCCCD1AEEE8A86712A12203((Type_t *)L_1, /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_3;
goto IL_001b;
}
IL_001b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
return L_4;
}
}
// T[] UnityEngine.Resources::ConvertObjects<System.Object>(UnityEngine.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Resources_ConvertObjects_TisRuntimeObject_m94711E44E9B970084C63588FDEBE3D295D14A0DA_gshared (ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* ___rawObjects0, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
{
ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* L_0 = ___rawObjects0;
if (L_0)
{
goto IL_000e;
}
}
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL;
goto IL_0041;
}
IL_000e:
{
ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* L_1 = ___rawObjects0;
NullCheck(L_1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))));
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2;
V_2 = (int32_t)0;
goto IL_0031;
}
IL_001e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_1;
int32_t L_4 = V_2;
ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* L_5 = ___rawObjects0;
int32_t L_6 = V_2;
NullCheck(L_5);
int32_t L_7 = L_6;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))));
int32_t L_9 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0031:
{
int32_t L_10 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = V_1;
NullCheck(L_11);
if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))))
{
goto IL_001e;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_1;
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_12;
goto IL_0041;
}
IL_0041:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = V_0;
return L_13;
}
}
// T[] UnityEngine.Resources::FindObjectsOfTypeAll<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Resources_FindObjectsOfTypeAll_TisRuntimeObject_mC9CD64DDE6AECE8EB6C5FC87DBB92322CD77DEF1_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Resources_FindObjectsOfTypeAll_TisRuntimeObject_mC9CD64DDE6AECE8EB6C5FC87DBB92322CD77DEF1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = 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);
ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* L_2 = Resources_FindObjectsOfTypeAll_mFFDC0207FEBD620424377896FC1B67307DB42520((Type_t *)L_1, /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_3;
goto IL_001b;
}
IL_001b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
return L_4;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m4703200E8457C0A92046ED760F00CE44005EF424_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 * L_0 = ((Caster_1_t1C42C521F7CF8631FF6985A641436B54CEE018E8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m39405AED72DA92F26E0172BAAE2234CAD45EBB81_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 * L_0 = ((Caster_1_tE0B5719D5D953F42A65E75E7D46BD8D7DD83D018_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m98E56B5A92D022D027A74E25FDCC3D799EAB6804_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 * L_0 = ((Caster_1_tAFB70D9BBAD381451752BAEF28C81B52B2869977_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mB928A3EAFC85B48CA5F8746998096D6892171B3C_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A * L_0 = ((Caster_1_t09B5032BA61F81ADC8AEF23DEF9F301CE607AF7C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m67EC6A4FF20B881663660072CA639825FC347F8C_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 * L_0 = ((Caster_1_tB37D2514A59669003F7F156FB271151F0D11E5FB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m3F6FD286745E992B6827D8C75772F7A3012CB51E_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 * L_0 = ((Caster_1_tAD8FA143928683B1E0B6BEB460980A8543022E9B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m27A19C22B04469C383D0777A361CC0504DBFF8ED_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD * L_0 = ((Caster_1_t58883F2D0ACC52F20C8978FC28C9C9D9CCFC69C2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_mFE62B63ADDBFC56BD3809BA6A7C01D084B593D37_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 * L_0 = ((Caster_1_tAFED591EF13E015162D8B2F6F629837E43482837_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2642AADE370AEBFF905A6B0DA0A6259F236F748C_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D * L_0 = ((Caster_1_tF3B99FF3BBCDEA3D042AAF9F41A16C7AD4A29ED2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisGuid_t_m5A0AFEE2BF910E98D56D0880005B1DDD51FD939C_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B * L_0 = ((Caster_1_tD296AE417E6EE7ADB8DAF202B8BC3203CBE89300_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m230E24E784CB02937D8335B389AEB021289B0A82_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 * L_0 = ((Caster_1_t699B4565B14DC3E4AAE69424E8CCCB8C5F5C84BF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB2ED9C3B935700D4BE55749949D58FE3B63B9B55_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 * L_0 = ((Caster_1_t847B65F78580B4C35C46212B37066290881E839D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m8DCE839F3A6EA158B607CC83266509F8F1BE588F_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 * L_0 = ((Caster_1_tEE77AB8F884BD2579C99A38CFB1AAFEE0DCF07FA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisIntPtr_t_mABB7C010A235E7F7443E34811536985C56709032_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 * L_0 = ((Caster_1_t02312CA733627756FCC99C1ED8322D3A6C51FB60_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisRuntimeObject_mB6959F0D52C5FF6F05B485070A979E423C7C058C_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 * L_0 = ((Caster_1_t79B0C615C852AD755B10B324A903BD8ECE30C1D2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m562963CD9F91D60E971EFA159959EF8A92E0C3AD_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 * L_0 = ((Caster_1_t27F1F99B9A4CEB186ECF7805145934EA77CB1257_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m0349C7393DD78A2B9EAFD91BBD31A83D1AEF0E06_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 * L_0 = ((Caster_1_t5908B8116E70EA9E946E9F5128B622E9063630CC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mA16C77DBC2AE7C44F2DD9EF81CB34C302590EBBB_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 * L_0 = ((Caster_1_t0B12755AB11A35CCF3F2B11D0A02101A3A325F45_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m90785014402CE39C95C6A464FF15913865F0D20A_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 * L_0 = ((Caster_1_t408C47A521D832C453740F1E3F374FCCB5E32E8A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m9BCA2BA360B336C8F1990736BDD2CD3C0532B5F9_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 * L_0 = ((Caster_1_t674C9A8AF3118A1ACC250CBE1B160B5287944451_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m2C4DC528C0AE341726424A1F3F5856B320DD6B99_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 * L_0 = ((Caster_1_t80311815F1B7E9467CB0674AEC735F4E06AF50CA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisUIntPtr_t_m1E02775612B080FE1AF0FD5661569EDC66A781E0_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D * L_0 = ((Caster_1_t57C825D368DB63A6299B8DF204CDB497F51F538D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m192073E98ADAA1A5F226CDF612C5F4A1EA326F04_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD * L_0 = ((Caster_1_tCAA6ACA318706EA3CFC28187859C80CD568A8943_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mB151EF5C27C8C3E67DC8EF7612BB364AF5AE71CB_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 * L_0 = ((Caster_1_tCFD75E9DB3970A86144B6EFA3E793B6C12B52B33_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mA781CBF81CB566C5B97681482DDE49EE24BF2D39_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 * L_0 = ((Caster_1_tDE1C83FE3C48AB3782D0BCBC7ACD4EA1700DBF59_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD2D22DC060CF312B9A3016DE6A971B06E2A060E7_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 * L_0 = ((Caster_1_t6B1DD3EE8B308447896C88A6A69138BC65A5FA40_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m25D70E9A31AFD54807927CE75E424595D55EE885_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 * L_0 = ((Caster_1_t502C258C3B6A03A1FD5B2E3254072F77EE89A675_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m3C1554928412F1AFB670D5FE501C29108FD1BE6A_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 * L_0 = ((Caster_1_t11F20427B499F3CD52E11D6A1AB7C931DCF96DB8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m5C13043D24E9A69C7DCB2C4FCEF55CF0AF1C2C5F_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C * L_0 = ((Caster_1_tB676512E7A350DB4ED01AA9C00F5621E3A8C7F0F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_m4923214A4EAA4DAA4CEC11C2C911816FE1F47ABD_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C * L_0 = ((Caster_1_t8218635FFE52C666262AEEAEE207339F47173DFF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mF5FF48C2DBF5A36B8C7AAEBD55DA020E48AF83FB_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 * L_0 = ((Caster_1_t03D8E1F7D51ED3D2AE2677EDF3B6A0F0A4416AB5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisGuid_t_mB76EE32A727B7F98A0F65C59B00E43C0D8FB43A7_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 * L_0 = ((Caster_1_t5932849F6E79E1885331632BE0371A5087A6DD8C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m8F6C334DF8F1564AB5E45BA8211EE4456CBBB231_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 * L_0 = ((Caster_1_t1F87BBD03AF9272751C51F5D605EFEF43AB46FE1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m1D6C095DECABD7ECA612CE50A9323CC7558CE492_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 * L_0 = ((Caster_1_tB23D3BA31E450FB0952F33E1D2DB4DBFCD754BE1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mA8667973E976E623362B3916BD0A01EEFB22FB84_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 * L_0 = ((Caster_1_tCA7F280780B937135FD0247CC90F5BCAD8963441_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisIntPtr_t_m5938B0521628AA9D2A57E92925B307C735673EDC_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 * L_0 = ((Caster_1_t33C636F2356154C6CDFA5421A2797B1F58F30BCC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisRuntimeObject_m8EE8133972CA40759750FDFE5701582530670348_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F * L_0 = ((Caster_1_tF7A61263020C72F89182A7A8527DE53779F6D045_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m93E20FE7F1103F6F41FD560C2458DD73F85633A3_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 * L_0 = ((Caster_1_tE4ED47E76B44B007CC692D239C61ED53AE3DEC20_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mD0181E906F9F43D543F29CE6062EB5408367D10C_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 * L_0 = ((Caster_1_tFFE1731A5A18D2FC62FB4FD0E140F893FEFCBFBC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m69F9C79C03AB361FF42EBA7B6B818AF9BC434D35_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A * L_0 = ((Caster_1_tE7B6AE02946C8C7D035775855D3F8667EECF49F0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m98848A814468F001D1BAE2AC1382BB04F4B9A0FA_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 * L_0 = ((Caster_1_tAB8276A53DE8D0B71D0C922FBDC1EA643B4B0801_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mB30F83D8D6EF175B27FD93FA87B6997566BDC30E_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 * L_0 = ((Caster_1_t46C35E368FA9C3535F632F4A43107C8C0DECDF2D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m40973C82E1D5B4B70939CE0007C506D0AB05F808_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 * L_0 = ((Caster_1_t0DD4ACB69C178BCC9281945CB5322037FF50ACD4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisUIntPtr_t_mB8B15AA4089033746DB5FC9A7D782222FA37760A_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 * L_0 = ((Caster_1_tAB93366D39B91199FA6BB514B138640EEA06D826_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mD87021825E28AB9152A64711E36E831AB5BC1A69_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B * L_0 = ((Caster_1_t48A24901856804183E97D899F37E2B095C3D3AD0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m904BD89D0794EDD4BA1ECD63B007E98198FE842A_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C * L_0 = ((Caster_1_tB8F12CF62FE2B524624E09DCE78970BE6555258F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m250DB1C0688ED8987DEA68C8B4005B4C94701E81_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 * L_0 = ((Caster_1_tD430240C674256CDF3116A5E5C05D32D14ADE25B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mE245467808C465EB51EE6E7A6D381E77C35886C1_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE * L_0 = ((Caster_1_tA4C9DBDB9984A7DBDBE1E328A1E6D32056B598D5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mE31527D1BE35D2661853F15F4C0D708E9C0B8FD9_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A * L_0 = ((Caster_1_t910ED4892D830D9260544CCD5A5BA17D0EAAC5A7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m9DE76E933754179F978E8996F91230BAC513DE6D_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 * L_0 = ((Caster_1_t3B656E50540D77F8D98EC3723A33AD022BA02142_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m6B23A7ADD84FEEFE2CF495A10C5F7F8A237F12F8_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 * L_0 = ((Caster_1_t37CFBE48D145A145182032241D4C96C7A9651872_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_mE33D0543DFD396F129480CE6EBB5AB7ED4953C63_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 * L_0 = ((Caster_1_t6C69308FA9D7112A4603D39468BDA09974918F69_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m18B425A1BD292BF835CD978A840B2B0495672AB6_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B * L_0 = ((Caster_1_t667DCCFE8DA1234CBF65A5978B6D27BE63CD598A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisGuid_t_m929A4D0FCC3C16092FBF35AB0C12A9A3C4ACA976_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 * L_0 = ((Caster_1_tB84AF4B31F4DAF0AB144E99A83CE997FB4C72D58_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m79C33E1C8F36629007121977ACA4722E2BFB97A5_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 * L_0 = ((Caster_1_t10436C94D617CD0D6ABB2F7D073CFA27B74C1E30_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m3352690FD9B7810E53BD0226ABA15061DABC3861_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 * L_0 = ((Caster_1_t14BB827E485FED333B17154453079AE34F1F49AD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mCE856A4A6FA913D30106882D36D439389EBED04F_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 * L_0 = ((Caster_1_t7A312140662B26A86CC59C245C7C848163A49AB4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisIntPtr_t_mCFDB3D5473BAE1CBA9286BB2552E06C1C389121A_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A * L_0 = ((Caster_1_t9C36147697AE67003B8A0EF11EEF2516066D90C4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisRuntimeObject_m5381A5A027D55D6BD1F5AFEFDEFA4F6045D163AE_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 * L_0 = ((Caster_1_t31EFD992543429652A6ED1652D545CCD372DB7C5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m60FDEFA18A26FD45A8D1668C7844B4EC02D525B0_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF * L_0 = ((Caster_1_t9347D88993875351431679E4107168C7CD28B825_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m120DF6B1F211DE3BB1CB7D07FEF84C22A6704F3F_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B * L_0 = ((Caster_1_t3EA25BC7E67BA9A7DA94FB04B9939AA009AE1F2D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m77E6D4B131D8064BC00515F25FC3D872D1F189D1_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 * L_0 = ((Caster_1_tFDA8B5B6F494CA32867BEDA1744607B9DE4AC7FD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m76AE6217EF496F71CA44BF726149CA82CA98A851_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 * L_0 = ((Caster_1_t5A5C0360CA0AE23E50B74262E52C01F758755C97_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCF05B647DA52B81D78F7C1C9E805162DCC534EC0_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE * L_0 = ((Caster_1_t3A7D9F3C5EC2EF5D573D0A6E3F67BA58C73B050A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mD9ACCDE304740CCDD7DE5D3061FEBA4751A50AAD_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D * L_0 = ((Caster_1_t5606234865DF0152C73166D640BD2651AAC8D43E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisUIntPtr_t_mCF8F606BDF81C71855C4901A31FE3DDE2B41D07D_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A * L_0 = ((Caster_1_t0233A96550545D6F17A5141586520D492131F3AF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mB862CD59E18B5D6DE3975635D248445FC1DCFEDC_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 * L_0 = ((Caster_1_t78D880B4DED6A81AFFB3DA6D32BA8A0E295F3788_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m767C2FDFF9ED64B0241800DCD45D84B6C424BBAF_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 * L_0 = ((Caster_1_tF1E9F5ACC455E168230D60D0AE5E848A5DBE2930_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mCA8359EA41F7B4D4F0334509E5C772674870DF27_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 * L_0 = ((Caster_1_t95AC156F3D75823ABA3B6749B8E5DAAF8EB6AB25_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mDED6BE58F3B45FF48522331B6D37042116DC852B_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 * L_0 = ((Caster_1_t8B6EA4487FE31C415BCD954287C70DF849E09E08_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m7AF2CC9A88EF6C7BA7062CBC9E6671DCFDDDE6C4_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE * L_0 = ((Caster_1_t2314A24A7931390C6867F5AB59BCE7DF7875EDB6_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_mA79E752D231DF346C6FDB3DB95DC5E91D1E994D5_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 * L_0 = ((Caster_1_t39143C74EFB8AD6200EFEE9E31A9EBDC9718F1E5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mF70A048030A6D511CFFA1F5C68CDF76AF0817985_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 * L_0 = ((Caster_1_t4B1D64CB72ED6461809D48568ECB009A92F781FE_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_m438A2CEB68A593F5B57AC0CC95CCBDF3E5746A53_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D * L_0 = ((Caster_1_t279DFE68F30E6659059D94B02BD5361A9BBE40D4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m576C2E63208E9FA2318899CD5A9E0CD526980673_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A * L_0 = ((Caster_1_tFFC10B3F233B81FE8D4EA64668FE2EA15A433C6D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisGuid_t_m0AB9E683843C5F8026B4BE353B704B9C0445562B_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 * L_0 = ((Caster_1_t7F15074A7BC9B5DA634F74067B2CAA3E4D8C7379_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mC7DC8A4161C7584AECE6AF041D57B381EE5A477F_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 * L_0 = ((Caster_1_tE25B230380E2CE54B9276690CD814DE511450833_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m037FE224C3CFAAD3497F4B3F31C82178225B384B_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 * L_0 = ((Caster_1_t3B87E9C89959ABEE4F6F1172FFA2D99D20FEAF4D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mECC8829C16BE4538050F0A94F292AB8BC5EEE745_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 * L_0 = ((Caster_1_t7D3ABA04133A298DFD0422ADFEBDEF3656AF0031_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisIntPtr_t_mA69192E793A3C7BEE631D420533AFFBBEE0E6F70_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 * L_0 = ((Caster_1_t9E4D034C656C467484BBD42F5B9FF5B91F790BED_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisRuntimeObject_m9841D59B401BD9CBB358259BD32F5CE8276474C0_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D * L_0 = ((Caster_1_t7F4B7F98CCD80CC0E1B52334B484C566B3772846_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m053631F41BC7D2E505B1600D5DF0B87718AC9F26_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 * L_0 = ((Caster_1_tD1867CCD99C0E4D6779357AA6EAE58CA54AE0AF4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mD79C3D4ADCAC01009016633870F0F851B99BD7C7_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 * L_0 = ((Caster_1_tCADDC259BB0BC859D77522BE7660068F2B40F0FC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m5562E71891F3CD5A26093B67877C592DC57BF410_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 * L_0 = ((Caster_1_tB392A04593C4239456BD2F10286A27F0AE928679_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mD5B60AFDB1E022C0979DE3346D185C44D2022A2C_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 * L_0 = ((Caster_1_t9F5AB8620B99DD3C4BBDD28E6F5A78003016D254_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mB6D6836EC3E9686143CEF67C24015E934AFFF69D_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE * L_0 = ((Caster_1_t5F92169CA22878B796AF5109203D193F987A4A39_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m17B3592AA114BB4F62C43FBE77386893E6A81672_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B * L_0 = ((Caster_1_tF96225B214D9B7EE71FE55E75A65EBD3AFEFAB6C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisUIntPtr_t_mBC233F334A4E586EC36F2284329A6B2E317ABF44_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 * L_0 = ((Caster_1_t02CDD619AF43E06FEDAB4F242EB5DAB284E98B19_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Object>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EnumHelper_1_Cast_TisRuntimeObject_m14B8662697DCB26B5CE66EFF6D0A9BA01937351F_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA * L_0 = ((Caster_1_t195DBA8A516B142DCC1ACA2DA98380583B5F1D8E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA *)L_0);
RuntimeObject * L_2 = (( RuntimeObject * (*) (Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mAE533483D2EB9736CA5036F45470ADB1E9F54524_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 * L_0 = ((Caster_1_t9548AD2802014C51CE95C2D167F4C5AFF00F7AB0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m9C053DC9213280343424F5D4E6CA5412421EE9C1_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE * L_0 = ((Caster_1_t6D09AA62870A76ABA6E5E4D301AFCCF93F194424_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m76E7947556939FCC5864462556D6EABBED1A2885_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E * L_0 = ((Caster_1_t7BED5C159FA7237F00FC5BF1362A67DD3DEE749A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mFEFA14B14A9E77A4CE09CAE160CF3D675326177F_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D * L_0 = ((Caster_1_tFE5F9417466A4CB788D519C7878ECCB397E668A1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m673C9F8CB81B95A3CB90E49ABBE57EF86259907F_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 * L_0 = ((Caster_1_tB027436891672D8E446545806D30A74D601A125F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_mC26286A6D4E8B13D974E305ED759B60852346A79_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 * L_0 = ((Caster_1_tC50D5F2635E0A7DCD57C363B1CA71CFEA00F93EF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m740C047BDE43758747E4B36E049DC0AE266AFA60_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 * L_0 = ((Caster_1_tE749C798EEF25AA04DF0E56627917C360336EBA4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_mECD8FBA0366809F56BB17362A9D59211AE7C3285_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 * L_0 = ((Caster_1_t70BCB30FF0C2DF9E545F34DEF21271408068477F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m51A5D50B60E6833C3719179DAE4C745C4F72C18E_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 * L_0 = ((Caster_1_tC218F4859CF65473DA915EE5333EFDCFEE72392E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisGuid_t_m0FE9A2031A026A598CD001010D084B0045B6A34D_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 * L_0 = ((Caster_1_t8409BE0ECE6FE2A29D79E7044752D251CB863421_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mF38F852ACA2D84A5A751E725A2BD6E8075EAF7BF_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 * L_0 = ((Caster_1_t62F9F0EA0D2CF70BE880EC5B4DB6C4E3BD191FF1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mDC45B432580ACAEF29CFB6EAD130C43FD4EE2EE0_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 * L_0 = ((Caster_1_t12F7AE622EDC8B8147BB5162376EAEBD2A1A716D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m02A2989AD15E5C61CC8170CC360AD7D12462E6B0_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 * L_0 = ((Caster_1_t9136EB8D74B86E14C4D0B7DE2699BB30FF62ADE0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisIntPtr_t_m10DFA878C4388DB28234BEDE38F5B5102467D111_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 * L_0 = ((Caster_1_t3AEE07159271C04282D4520F761455EA4BF25B90_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisRuntimeObject_mE1FDE0675779B26082666516C621FEC19B207148_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 * L_0 = ((Caster_1_tDE4AB1F4E3BD9C2B0BF368F239F02CD0D92D7D3B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m8ADF6B2EB361F9687FF8AD704E272E4CC73B65DD_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 * L_0 = ((Caster_1_tCC08F4371265D272EC5F5C61F06234FB4C49F905_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mC50E5A46276EEA9830E1DC4EE36D82C22F66C64A_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 * L_0 = ((Caster_1_tB1E0520D57EA2A38EB25F38157F7FAE2077D0519_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m136ECC8F15796D07201EF82AB5087C8577204CE7_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 * L_0 = ((Caster_1_t063FFE54B6E834FCAADA9B98B6556AFEC0411632_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mB9241B4372765DCC3E2FB1E580E530F582D1DC42_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC * L_0 = ((Caster_1_tA4C712C2F66B1CCA6198D56E9156B3ED627F7E7F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mD1099AA921562AC8786F080BFFE193F342C52968_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 * L_0 = ((Caster_1_t4E01ADD98CF6A52B499B239DD79900153A6E8CB9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m2D0D20AC9F0E60DE8262A897B6FE18ED9D025C75_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 * L_0 = ((Caster_1_tA76F3CD44521225217CEE9D5E70655913B3652F6_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisUIntPtr_t_mD2B5AC3EAE3E39B8293CD9DC72D51C837C0783F5_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 * L_0 = ((Caster_1_t27A7F78CA974CB9EB88650C0F7D4CCB345E0D6F0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3B872FF621B738CE1DF433FB14FE279F77DB875B_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 * L_0 = ((Caster_1_t2AC7FD1B9C92018FCD42D2FBB7DE1C15E7C6141D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mDA9B765AC14F77C923A7CDB3C0D706221CFD15E5_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F * L_0 = ((Caster_1_tA9F99D3DE3C2B79878574DA79394D40484CF909C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m08A6E25B90A3E4623E4D4C20C9BDED75E046317C_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 * L_0 = ((Caster_1_t439110BADC840296B0301DC221E3742B2C8E8934_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mC622F6D0E6E8E105E53938B01F21FBBE3929BE59_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 * L_0 = ((Caster_1_t9CF680A45E2713569B0D6E5DCD3ACE8E5CE11A5F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mC92B8CBBB0C4B10ED4E2450902EE2786DC858170_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 * L_0 = ((Caster_1_t45EEB8AA14910B5FE2FEA34EC88A9154085E86BC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_mA1D9F1862F772E31942176AD3F8CD00167E46851_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 * L_0 = ((Caster_1_t0AD7C98192FA0900645BFF7111DF2264C1F11843_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mCD324132C02011B0B32CCC47A4808A77236AED44_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC * L_0 = ((Caster_1_tB30E4B83744A2AB4B34E2140F09FF2DBAD9067A2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_m9B67538CB09A9BE23FFCE9BEC85E666C9A431017_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 * L_0 = ((Caster_1_t9F48A0F7F413295607FDDD8C95EAA2A8FB1BA77F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m47C7D923FD0FB3DB00E561558507770017AE9BCE_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 * L_0 = ((Caster_1_tFA61F79F888D97CEE77D5548328774BE7E4EB84A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisGuid_t_m654610841B56D96AD377D93B265DFEA5BCCD849F_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 * L_0 = ((Caster_1_t62DA063BB7BB019FFBE6B9ED3A08D069E330FE87_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m68BD7EC0E8A27ABE7F05B6775C994BBF0AC9CF61_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 * L_0 = ((Caster_1_tF5CE3C0B8FDD93C834FC13D907003475F7844594_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mFD2ADB5D6FF91AD34628103AB08D7D69E52B3F80_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 * L_0 = ((Caster_1_t8F8BD84B7E2CC9232254A7A82FBEA7C1C7227E24_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mDEB00F12BF02652DD353CC17480C93E61DAD532F_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 * L_0 = ((Caster_1_t7796DD6DA3A2E903A8337A4426EA117003E4FF07_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisIntPtr_t_mA4FC52AC62D68943074BF8C0C5BFD283DBCC73D0_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 * L_0 = ((Caster_1_tF06869CDE05BEA07C45D10B5C27C152492D8F494_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisRuntimeObject_m33C8E0733764B34A5BCE1F2E6AFB8C155F39BEBF_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 * L_0 = ((Caster_1_t0E97020316A62558167F5F018A989125D28729AD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m0E9A83FB710C70A26B0CCECD93E36054FD591BC6_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A * L_0 = ((Caster_1_t7194A004154AABF5CF224780C51648A67A6757A2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mCF0D075974C55087E231D074BC65919B184F61B0_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 * L_0 = ((Caster_1_t073650CFFC30F591C4E5B47753CBDF6EAEC9AA0D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m2B04CEE74D1BE3CF4EDB28113F73829B46C02053_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE * L_0 = ((Caster_1_tC9893BC43C67D8FE44500C545C7D0B22FBDFA338_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mD814412C42F9D58EA1FDD6CE78D85CD7912178EC_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 * L_0 = ((Caster_1_t97E30322734EE96D22D5EDDDA8A32D7F28BF9E0D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m569864A50A8516B4ED140C81F5208CAF8ABE5054_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C * L_0 = ((Caster_1_tEAB5EDC98E125207E56614BEDA0E194CDB6A81D2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m10412A2B6C85347835984822C2FA20E792A40553_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD * L_0 = ((Caster_1_tE1468C16E0D935665BAFEAE58EC1DC80FEA18FD0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisUIntPtr_t_m4C89E4587F264A9DCAD1F7C77B9D279AA1CC44D1_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 * L_0 = ((Caster_1_t9DA7DEC0029E18FF11AF097849FFE2FD2B961C60_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mE45474D78C9C75421B50BA3B6F0D8A036086E3D4_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 * L_0 = ((Caster_1_t1B6BC63943ECA453AF4038A2F429DC89D1C88504_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mA021FB7B9377D61AD510EFEE22C14B074DE4A97C_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 * L_0 = ((Caster_1_t1E5C78F2324B0966F93815A21CF15C56A6D1D763_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mCB509FD508A9096FD819CB976FCE17421E34AD79_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 * L_0 = ((Caster_1_tEED0D769437F89233D231DC79626AC0A6337593C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m3214E0BD22A7B25FE44C18CF248F52316E7BC735_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA * L_0 = ((Caster_1_t722135795C75F590A8BC1E4CE7DB7DDFFA14314A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mB9853A7D22563E8B8B771F5876882C9B092C5B20_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 * L_0 = ((Caster_1_t3F3455CCFC9311D353A7D8C4A42200408CA558BC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m7D5EB067A14234897ACF89E7DF83657410CC2A50_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 * L_0 = ((Caster_1_t2EE1EC204134DA58566A851DFA40A0B880948A86_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m31875099D68E21BE514D36A42DE21BFB3C26AB90_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC * L_0 = ((Caster_1_t0BBCE2A7CB1298EE3E1F92A4EE98EE1FEA34EC7F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_m52991F9C4A2BAFC16B33C6A3C863FF0EECE550DE_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 * L_0 = ((Caster_1_tEB26AB756A5FFD5D46CEFADFD4354B569FE79E35_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mE4FDEAE7059AF2D9FAFF04E2F28F252697F34DD3_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 * L_0 = ((Caster_1_t4EF5B9F285768775D3C068FAF5475BD3A7560098_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisGuid_t_m6635AF97CD8EFCDC822515F565C0503A6035A773_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E * L_0 = ((Caster_1_t82D455B6810AAD5E0FB1B33CBEAE2D7F6B1215C1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m3A03746E9FB5A67E1FAFBC546A726D7D461367CB_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 * L_0 = ((Caster_1_tFBB6815F7209EA2669845E4F5390708755B6A996_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m817E92EDAC63A713BB5FC2374E08E7999D44CC40_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C * L_0 = ((Caster_1_t79F9BB0534172847D8A8840D22FEA3ACBF6E2E30_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m802F634F8484AA08CF5375C2FA35BFA704082BEC_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D * L_0 = ((Caster_1_t2E73FCE9B801A6C9D2357B69DB15EE7FF8CCDBD8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisIntPtr_t_mB193F58608DFB76891B646A614E6FFA5CAF045AC_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 * L_0 = ((Caster_1_t7428F42D13DDC0C1A066BD1EE9BC521E66BA5BC1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisRuntimeObject_m2FF75954BEE32E7CBA81F696CFADEB32570A5295_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA * L_0 = ((Caster_1_tB69CF02AAB845E9B3DDB7E61DDA09AE13B6C05C2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mB1165679FE03D30141CFB54B4E2BE302E9BA770A_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 * L_0 = ((Caster_1_t5B781D2583194FDAD58A1DEB85D1364FB241544E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m70BC7C784870C55D1141CCE9A5418C9043782C55_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D * L_0 = ((Caster_1_tFB47F8B972002AEAC72800811486FA13E467A8BF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m29031690307B405A095E8E3B3592FF735CA185CF_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 * L_0 = ((Caster_1_tC8767D376B189ACD381153C9C173514211A0FE0F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m12942B34C5E83255DBD90AEB2A90B3E7951E8864_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 * L_0 = ((Caster_1_t42992A2C9D038623500C211031C77C7208D43273_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m71AFD836AA7C64489EEF9407F203B4EC27425961_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A * L_0 = ((Caster_1_t87A4B6548293C1368DDFCB40BA06CF49106148F9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mE1C98F17A06AA92C3F21999A6E0FFE8EBEE7EC00_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 * L_0 = ((Caster_1_tFD458BDD72B070794987225E3DB7C380E3CC37D2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisUIntPtr_t_mE20967A9C6BCC22F95A0C0F33954E8F20C099B10_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD * L_0 = ((Caster_1_t941B28C129B116297C114C4519CDE8190AB5C2D9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mA6D4DB9B4A0AEBFDB545206DD5F50F1B3B99E137_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 * L_0 = ((Caster_1_tD2A776BD441B8E1E656DBDBEA29CE09F6370B01D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mBB6EBFF5DB5352C897AF4E4871D475088E798CE8_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF * L_0 = ((Caster_1_t482CB7C00B7672BE86AB37B58803EDDA5253C159_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m9A4AE5F28B661AB3608A08D4A008C6EFD59C8EF3_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 * L_0 = ((Caster_1_tC3C7676E4988AB84AD5D483DF6D6D51F652B8EAA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mBE29FD6567FF1B7F5CC17B11E8A50CBCB4E457F8_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA * L_0 = ((Caster_1_tAEB42C1C02AED929BC1BEC04D98C0DF0C1BEFFC8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mAC44106BE1CC32C04B8323E028317909E16DE5D9_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 * L_0 = ((Caster_1_tCDE1BC83F41D1B9514A301F4F689ECD00B852E4B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_mA92902179E75C6237A1FAF1A93DBC8A54C3D9F1C_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 * L_0 = ((Caster_1_t648D614B6DE9FA1B879A571830C1B8BC23894BC0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mD190CF4C4FFCF5CF0B55A6551271A963D62BACB4_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 * L_0 = ((Caster_1_t4F5F7A38C557F7B9436C5C1F5FF63A6B645F482C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_mD96A07754EB55396C0767DDFF0990FDE4642BA5C_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F * L_0 = ((Caster_1_t816F760E4CB91E8ED4749C51E1906DAA5FBFCBDD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m89DE2BCD31E38F694C6C046DD591D93E6A4905BD_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 * L_0 = ((Caster_1_tCA85C27159D944B0FA3E9E3AF4E43F1301C0856A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisGuid_t_m6A79FE5AAC75B2E933B0F2DF4316BDA9E79E6848_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 * L_0 = ((Caster_1_t32E967508060A04E0F6F4A5A9E516B2751446098_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mED333DF6FD1DC9723DE9E7A47A894EF358196150_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C * L_0 = ((Caster_1_tF3538AE7B545B5E66C20C4C751A1EAEE76E82FEF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mC432022B01CCED53D1279F08CCAAB4DBB83FBB41_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 * L_0 = ((Caster_1_t053E7CA3C6B09080F453D7B9ADCED0B07B7355B2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m51B47E785BA2597ABFBD0A9E7CAEBF2ECF1877AC_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 * L_0 = ((Caster_1_t3DD97367B1E8C9F032197273CF90E5919C74B518_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisIntPtr_t_m1BE5340DBEDC930432982B6738A5820A9A4FCD42_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 * L_0 = ((Caster_1_t3E5340F9C3D63DE7B3280B37BCD14B25362CC87E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisRuntimeObject_m24E9DBADCE63823F1FB2AA2A116982AD2BEA67FF_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B * L_0 = ((Caster_1_t1C8C6FEDED1BBCC86BF7F183BAAA65A65E37F6B9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m40171CC2B05F787A453D415B7B354C70FA91EB3C_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 * L_0 = ((Caster_1_t261B67D54DDBEE2E45C594357E6132EBCFC20C43_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m08399F0F8C4F12BD2E29A845B2D5F7796C41B29E_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 * L_0 = ((Caster_1_t758D846F58655E22B936DD8A2DB64283EA3805A2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mBD8CF0C29D9F8046510C4F5872622EB351F706AE_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F * L_0 = ((Caster_1_t01551B272EDA007DB4640BBDA9745FCD8150E90F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m663895C442194B5C317393C7D716656B08408CAE_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 * L_0 = ((Caster_1_t927662BF5FDD93421514AD6DFF5810834FC65437_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m3A2842E06D5905F6E685A3033ECE6BB76E8912CF_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 * L_0 = ((Caster_1_t4FBD60419DE1522A1D8D6D26E18CCE6C5CBE862C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m4F2C115C6D08D4097EC80756F75A08786FF84C9B_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE * L_0 = ((Caster_1_tCD382BFE18B540FD55BB3D1DE0739E2718F2B9F7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisUIntPtr_t_mF6BC18592D238BE188D32FDF0722A5D2882A7763_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 * L_0 = ((Caster_1_tE9665C2AD78EA0AECF9AA50DC59E256EA789B56B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<System.Int32>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m79812A22661959D2B4F290958FD9C61E69528D28_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF L_3 = V_1;
V_0 = (NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF )L_3;
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF L_4 = V_0;
V_2 = (NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF )L_4;
goto IL_002a;
}
IL_002a:
{
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<UnityEngine.Experimental.GlobalIllumination.LightDataGI>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_mD7AFB293FDB633E3BAAE963C0F5DB9A4A25E9649_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE L_3 = V_1;
V_0 = (NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE )L_3;
NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE L_4 = V_0;
V_2 = (NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE )L_4;
goto IL_002a;
}
IL_002a:
{
NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<UnityEngine.Plane>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m9610FDE0388D2A14248C97656170DC5B83C8BA88_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 L_3 = V_1;
V_0 = (NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 )L_3;
NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 L_4 = V_0;
V_2 = (NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 )L_4;
goto IL_002a;
}
IL_002a:
{
NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<UnityEngine.Rendering.BatchVisibility>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_mB397E70D8182B23E8F1F1F3D18CC3EF2290AC0D6_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 L_3 = V_1;
V_0 = (NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 )L_3;
NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 L_4 = V_0;
V_2 = (NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 )L_4;
goto IL_002a;
}
IL_002a:
{
NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 L_5 = V_2;
return L_5;
}
}
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<System.Object>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_mB2DEEAF3F86ED5BECA570432FD5440948D5CB3B8_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C * ___callbackFunction2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_mB2DEEAF3F86ED5BECA570432FD5440948D5CB3B8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_1 = NULL;
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___root0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * L_1 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_InternalTransformList_18();
ExecuteEvents_GetEventChain_mD90FFC4A70E16AFA81AC6C9CFF174630F77C608C((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0, (RuntimeObject*)L_1, /*hidden argument*/NULL);
V_0 = (int32_t)0;
goto IL_0035;
}
IL_000f:
{
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * L_2 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_InternalTransformList_18();
int32_t L_3 = V_0;
NullCheck((List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE *)L_2);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_4 = List_1_get_Item_m88FE4B6F43A2CD95BB9ECF8D801F206618FFFFB8_inline((List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE *)L_2, (int32_t)L_3, /*hidden argument*/List_1_get_Item_m88FE4B6F43A2CD95BB9ECF8D801F206618FFFFB8_RuntimeMethod_var);
V_1 = (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA *)L_4;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_5 = V_1;
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_5);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_6 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_5, /*hidden argument*/NULL);
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_7 = ___eventData1;
EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C * L_8 = ___callbackFunction2;
bool L_9 = (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_6, (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *)L_7, (EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
if (!L_9)
{
goto IL_0031;
}
}
{
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_10 = V_1;
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_10);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_11 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_10, /*hidden argument*/NULL);
return L_11;
}
IL_0031:
{
int32_t L_12 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_0035:
{
int32_t L_13 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * L_14 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_InternalTransformList_18();
NullCheck((List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE *)L_14);
int32_t L_15 = List_1_get_Count_mFB4F65ABD2DD0845C2448493238223FB4079A90C_inline((List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE *)L_14, /*hidden argument*/List_1_get_Count_mFB4F65ABD2DD0845C2448493238223FB4079A90C_RuntimeMethod_var);
if ((((int32_t)L_13) < ((int32_t)L_15)))
{
goto IL_000f;
}
}
{
return (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL;
}
}
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<System.Object>(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ExecuteEvents_GetEventHandler_TisRuntimeObject_m4A0A387AEA9C47C3DB85EAB3FE49C0689C0FFFA8_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_GetEventHandler_TisRuntimeObject_m4A0A387AEA9C47C3DB85EAB3FE49C0689C0FFFA8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_0 = NULL;
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___root0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000b;
}
}
{
return (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL;
}
IL_000b:
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_2 = ___root0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_2);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_3 = GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_2, /*hidden argument*/NULL);
V_0 = (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA *)L_3;
goto IL_002f;
}
IL_0014:
{
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_4 = V_0;
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_4);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_5 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
bool L_6 = (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
if (!L_6)
{
goto IL_0028;
}
}
{
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_7 = V_0;
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_7);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_8 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_7, /*hidden argument*/NULL);
return L_8;
}
IL_0028:
{
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_9 = V_0;
NullCheck((Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA *)L_9);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_10 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403((Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA *)L_9, /*hidden argument*/NULL);
V_0 = (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA *)L_10;
}
IL_002f:
{
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_11 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_12 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_11, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_12)
{
goto IL_0014;
}
}
{
return (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6_inline (intptr_t* __this, void* ___value0, const RuntimeMethod* method)
{
{
void* L_0 = ___value0;
*__this = ((intptr_t)L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__size_2();
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550(/*hidden argument*/NULL);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_1();
int32_t L_3 = ___index0;
RuntimeObject * L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)L_3);
return L_4;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_2();
return L_0;
}
}
| [
"[email protected]"
] | |
09fd1b5094b4afbb33f80447ddb2fb565c55e746 | 6c8e23a8899b01379944edcb19814ad5da2ccdf0 | /lab4/Archiever/Archiever/Archiever.cpp | a1e34d809da1f2380a6ef6ce696f35c0880f0f5e | [] | no_license | istrokan/SPlabs | aa8e171282a78977ee68788892b5535a688dac0a | 69ec855265fe4053be4a9d8449b2ad33fcf87a35 | refs/heads/master | 2022-07-31T12:01:03.789624 | 2020-05-20T10:08:47 | 2020-05-20T10:08:47 | 265,519,806 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,635 | cpp | // Archiever.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#define MAX_BUF 200
#define STCHAR sizeof(TCHAR)
#define WAITING_TIME 2000
int _tmain(INT argc, TCHAR** argv)
{
DWORD realC = 1;
LPCTSTR utilPath = TEXT("7z.exe");
LPTSTR act = argv[1];
LPTSTR archName, dirOrFile;
//making a pipe
HANDLE meReads, childWrites;
SECURITY_ATTRIBUTES saAttr =
{sizeof(SECURITY_ATTRIBUTES), NULL, TRUE};
if (!CreatePipe(&meReads, &childWrites, &saAttr, MAX_BUF*STCHAR)) {
_tprintf(TEXT("Pipe hasn't been created\n"));
return 0;
}
if (!SetHandleInformation(meReads, HANDLE_FLAG_INHERIT, 0)) {
_tprintf(TEXT("Not inherited handle\n"));
return 0;
}
//creating process
LPTSTR cmdLine = new TCHAR[MAX_BUF];
memset(cmdLine, 0, MAX_BUF*STCHAR);
//making command line
archName = new TCHAR[MAX_BUF];
dirOrFile = new TCHAR[MAX_BUF];
GetFullPathName(argv[2], MAX_BUF, archName, NULL);
GetFullPathName(argv[3], MAX_BUF, dirOrFile, NULL);
switch (act[0]) {
case TEXT('zip'):
_stprintf(cmdLine, TEXT("%s %s %s %s"),
utilPath, act, archName, dirOrFile);
break;
case TEXT('unzip'):
_stprintf(cmdLine, TEXT("%s %s %s"),
utilPath, act, archName);
//set cwd for extraction
if(!SetCurrentDirectory(dirOrFile)){
_tprintf(TEXT("Wrong path"));
return 0;
}
break;
default :
_tprintf(TEXT("Wrong command"));
return 0;
}
STARTUPINFO si = {};
PROCESS_INFORMATION pi = {};
GetStartupInfo(&si);
si.cb = sizeof(STARTUPINFO);
si.hStdOutput = si.hStdError = childWrites;
si.hStdInput = NULL;
si.dwFlags = STARTF_USESTDHANDLES;
if (!CreateProcess(NULL,
cmdLine,
NULL, NULL, TRUE, 0, NULL, NULL,
&si, &pi)) {
_tprintf(TEXT("Can't create process"));
return 0;
}
////
//GetCurrentDirectory(MAX_BUF, wbuf);
//_tprintf(TEXT("\n===Cwd is: %s"), wbuf);
//delete[] wbuf;
////
//get result of process
realC = 1;
LPSTR buf = new CHAR[MAX_BUF+1];
memset(buf, 0, MAX_BUF+1);
BOOL r = TRUE;
BOOL error = FALSE;
LPSTR
needle1 = "WARNING",
needle2 = "ERROR";
WaitForSingleObject(pi.hThread, WAITING_TIME);
//define if operation succeeded
do {
r = ReadFile(meReads, (LPVOID)buf, MAX_BUF, &realC, NULL);
buf[realC] = '\0';
//error search
if (!error) {
error = strstr(buf, needle1)
|| strstr(buf, needle2);
}
printf("%s", buf);
} while ((realC | r != 0) && realC == MAX_BUF);
if (!error) {
_tprintf(TEXT("\n\n\tEverithing is ok.\n"));
}
else {
_tprintf(TEXT("\n\n\tSorry, error occured.\n"));
}
//close process
CloseHandle(pi.hThread);
CloseHandle(pi.hProcess);
CloseHandle(childWrites);
return 0;
} | [
"[email protected]"
] | |
f9367f0010506c7c06b1dfb0fc6b8956dd02d6d2 | 8175c0d8a68a644cf05d8bb19b345587aefc499f | /test/host_api/test_rot.cpp | 2ec3c16213a61de612530ed02a04a7834aa6b24d | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | kirilleizeman/FBLAS | 6859233e5d9e64e260c1765b13db40ad106c7d85 | c9655623897711758fcff98c741f556872ad3882 | refs/heads/master | 2022-09-21T21:36:21.668465 | 2019-09-12T08:57:20 | 2019-09-12T08:57:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,072 | cpp | /**
FBLAS: BLAS implementation for Intel FPGA
Copyright (c) 2019 ETH-Zurich. All rights reserved.
See LICENSE for license information.
Tests for rot routine.
Tests ideas borrowed from Blas testing
*/
#include <gtest/gtest.h>
#include <string>
#include <exception>
#include "../../include/utils/ocl_utils.hpp"
#include "../../include/fblas_environment.hpp"
#include "test_tier2.hpp"
FBLASEnvironment fb;
TEST(TestSrot,TestSrot)
{
cl::CommandQueue queue;
cl::Context context=fb.get_context();
cl::Device device=fb.get_device();
IntelFPGAOCLUtils::createCommandQueue(context,device,queue);
float fpga_res_x[N_L1],fpga_res_y[N_L1];
cl::Buffer input_output_x(context, CL_MEM_READ_WRITE|CL_CHANNEL_1_INTELFPGA, N_L1 * sizeof(float));
cl::Buffer input_output_y(context, CL_MEM_READ_WRITE|CL_CHANNEL_2_INTELFPGA, N_L1 * sizeof(float));
//copy data only once
const float sc = .8f;
const float ss = .6f;
std::string kernel_names[]={"test_srot_0","test_srot_1","test_srot_2","test_srot_3"};
for(int ki=0; ki<nincs;ki++)
{
int incx=incxs[ki];
int incy=incys[ki];
for(int kn=0;kn<4;kn++)
{
//copy data
queue.enqueueWriteBuffer(input_output_x,CL_TRUE,0,N_L1*sizeof(float),dx1);
queue.enqueueWriteBuffer(input_output_y,CL_TRUE,0,N_L1*sizeof(float),dy1);
int curr_n=ns[kn];
fb.srot(kernel_names[ki],curr_n,input_output_x,incx,input_output_y,incy,sc,ss);
queue.enqueueReadBuffer(input_output_x,CL_TRUE,0,N_L1*sizeof(float),fpga_res_x);
queue.enqueueReadBuffer(input_output_y,CL_TRUE,0,N_L1*sizeof(float),fpga_res_y);
//check
for (int i = 0; i < curr_n; i++) {
ASSERT_FLOAT_EQ(fpga_res_x[i],dt9x[i+1+ (kn +1+ ((ki+1) << 2)) * 7 - 36]);
ASSERT_FLOAT_EQ(fpga_res_y[i],dt9y[i+1 + (kn+1 + ((ki+1) << 2)) * 7 - 36]);
}
}
}
}
TEST(TestDrot,TestDrot)
{
cl::CommandQueue queue;
cl::Context context=fb.get_context();
cl::Device device=fb.get_device();
IntelFPGAOCLUtils::createCommandQueue(context,device,queue);
double fpga_res_x[N_L1],fpga_res_y[N_L1];
cl::Buffer input_output_x(context, CL_MEM_READ_WRITE|CL_CHANNEL_1_INTELFPGA, N_L1 * sizeof(double));
cl::Buffer input_output_y(context, CL_MEM_READ_WRITE|CL_CHANNEL_2_INTELFPGA, N_L1 * sizeof(double));
//copy data only once
const double sc = .8;
const double ss = .6;
std::string kernel_names[]={"test_drot_0","test_drot_1","test_drot_2","test_drot_3"};
for(int ki=0; ki<nincs;ki++)
{
int incx=incxs[ki];
int incy=incys[ki];
for(int kn=0;kn<4;kn++)
{
//copy data
queue.enqueueWriteBuffer(input_output_x,CL_TRUE,0,N_L1*sizeof(double),double_dx1);
queue.enqueueWriteBuffer(input_output_y,CL_TRUE,0,N_L1*sizeof(double),double_dy1);
int curr_n=ns[kn];
fb.drot(kernel_names[ki],curr_n,input_output_x,incx,input_output_y,incy,sc,ss);
queue.enqueueReadBuffer(input_output_x,CL_TRUE,0,N_L1*sizeof(double),fpga_res_x);
queue.enqueueReadBuffer(input_output_y,CL_TRUE,0,N_L1*sizeof(double),fpga_res_y);
//check
for (int i = 0; i < curr_n; i++) {
//These are tested as float since it fails for a digit around e-10
ASSERT_FLOAT_EQ(fpga_res_x[i],double_dt9x[i+1+ (kn +1+ ((ki+1) << 2)) * 7 - 36]);
ASSERT_FLOAT_EQ(fpga_res_y[i],double_dt9y[i+1 + (kn+1 + ((ki+1) << 2)) * 7 - 36]);
}
}
}
}
int main(int argc, char *argv[])
{
if(argc<3)
{
std::cerr << "Usage: [env CL_CONTEXT_EMULATOR_DEVICE_INTELFPGA=1 " << argv[0] << " <fpga binary file> <json description>" << std::endl;
return -1;
}
std::string program_path=argv[1];
std::string json_path=argv[2];
fb =FBLASEnvironment (program_path,json_path);
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
| [
"[email protected]"
] | |
930587f01fe26cc4492d3767ded67aaa01e2d810 | f428ce841c4b6be41822fb22bd0b75032da345c3 | /WechatDllCpp/FriendListBTree.cpp | 3b6e969446fd1a88d08fa133cf520cfc4cbe1907 | [] | no_license | sumerzhang/WechatHookDll | 32da4fe2e1fec54d7271d6bcecac1079891eb6ca | 80b3fc2e99b17757d5eaa34f62586d2842d2251c | refs/heads/master | 2022-12-20T18:08:26.954446 | 2020-09-15T06:23:07 | 2020-09-15T06:23:07 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,541 | cpp | #include "stdafx.h"
#include "resource1.h"
#include "malloc.h"
#include "inc.h"
#include "FriendListBtree.h"
#include <tchar.h>
#include <list>
#include <commctrl.h>
#include <exception>
HWND hwnd_list;
typedef void(__stdcall *PLFUN)(void);
typedef std::list<DWORD> DWORD_LIST;
typedef std::list<std::wstring> WSTRING_LIST;
typedef struct _RAW_WX_NODE
{
union
{
DWORD dwStart;
PDWORD pStartNode;
} ul;
DWORD dwTotal;
} RAW_WX_NODE, *RAW_WXNODE;
void InitFriendListControl(HWND hwnd) {
//InitCommonControls();
hwnd_list = GetDlgItem(hwnd, IDC_LIST_FRIEND);
if (NULL == hwnd_list) {
MessageBox(NULL, L"list is null", L"错误提示", 0);
return;
}
LVCOLUMN lv_col = { 0 };
LPCWSTR title[] = { L"wxid", L"微信账号", L"昵称" };
lv_col.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT;
lv_col.fmt = LVCFMT_LEFT;
lv_col.cx = 140;
for (int i = 0; i < 3; i++) {
lv_col.pszText = (LPWSTR)title[i];
ListView_InsertColumn(hwnd_list, i, &lv_col);
}
}
void TraversalWxUserNode(PDWORD pWxNode, DWORD_LIST& dwListAddr, DWORD dwStart, DWORD dwTotal)
{
if (dwListAddr.size() >= dwTotal)return;
for (int i = 0; i < 3; i++)
{
DWORD dwAddr = pWxNode[i];
DWORD_LIST::iterator iterator;
iterator = std::find(dwListAddr.begin(), dwListAddr.end(), dwAddr);
if (iterator == dwListAddr.end() && dwAddr != dwStart)
{
//递归查找
dwListAddr.push_back(dwAddr);
TraversalWxUserNode((PDWORD)dwAddr, dwListAddr, dwStart, dwTotal);
}
}
}
typedef struct _WXTEXT
{
PWSTR buffer;
UINT length;
UINT maxLen;
UINT fill;
UINT fill2;
} WXTEXT, *PWXTEXT;
/*返回值暂时用不上,先留着*/
std::list<WxUser> GetFriendList()
{
std::list<WxUser> list;
auto pBase = (PDWORD)(GetModuleWeChatWinAddress() + 0x113227C);
DWORD dwWxUserLinkedListAddr = (*pBase) + 0x24 + 0x68; //链表的地址
RAW_WXNODE wxFriendsNode = (RAW_WXNODE)dwWxUserLinkedListAddr;
DWORD_LIST listFriendAddr;
if (wxFriendsNode == nullptr) {
return list;
}
//if (0 != IsBadReadPtr((void*)wxFriendsNode, sizeof(DWORD))) {
// return list;
//}
TraversalWxUserNode(wxFriendsNode->ul.pStartNode, listFriendAddr, wxFriendsNode->ul.dwStart, wxFriendsNode->dwTotal);
DWORD_LIST::iterator itor;
for (itor = listFriendAddr.begin(); itor != listFriendAddr.end(); itor++)
{
WxUser user;
DWORD dwAddr = *itor;
WXTEXT wxId = *((PWXTEXT)(dwAddr + 0x10));
WXTEXT account = *((PWXTEXT)(dwAddr + 0x30));
WXTEXT remark = *((PWXTEXT)(dwAddr + 0x78));
WXTEXT nickname = *((PWXTEXT)(dwAddr + 0x8C));
WXTEXT avatar = *((PWXTEXT)(dwAddr + 0x11C));
WXTEXT bigAvatar = *((PWXTEXT)(dwAddr + 0x130));
WXTEXT addType = *((PWXTEXT)(dwAddr + 0x294));
swprintf_s(user.wxid, L"%s", wxId.buffer);
swprintf_s(user.account, L"%s", account.buffer);
swprintf_s(user.username, L"%s", account.buffer);
swprintf_s(user.remark, L"%s", remark.buffer);
swprintf_s(user.nickname, L"%s", nickname.buffer);
swprintf_s(user.avatar, L"%s", avatar.buffer);
//swprintf_s(user.addType, L"%s", addType.buffer);
/*if (user.remark == "(null)") {
}*/
LVITEM lvI;
ZeroMemory(&lvI, sizeof(lvI));
lvI.mask = LVIF_TEXT;
lvI.iSubItem = 0;
lvI.iItem = 0;
lvI.pszText = wxId.buffer;
int now = ListView_InsertItem(hwnd_list, (LPARAM)&lvI);
if (now == -1)
continue;
//ListView_SetItem(hwnd_list, &lvI);
ListView_SetItemText(hwnd_list, now, 0, wxId.buffer);
ListView_SetItemText(hwnd_list, now, 1, account.buffer);
ListView_SetItemText(hwnd_list, now, 2, nickname.buffer);
list.push_back(user);
}
return list;
} | [
"[email protected]"
] | |
f3a121cace5833039e48272b17b4323044760f3e | 1d506a4d22a61f66de9019bf3795d10297ef9e4a | /HTTPServer/Headers/VHTTPResponse.h | 15ddfad5cba8510b6d556de9aeb190dd7ce8d3c5 | [] | no_license | sanyaade-teachings/core-Components | b439c37bbe0e5d896645848d8db183e40f40b9e7 | a93d30e32da6f5fd58c76dfed430093746906ed1 | refs/heads/master | 2021-01-18T10:56:50.349393 | 2013-05-16T15:04:40 | 2013-05-16T15:04:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,344 | h | /*
* This file is part of Wakanda software, licensed by 4D under
* (i) the GNU General Public License version 3 (GNU GPL v3), or
* (ii) the Affero General Public License version 3 (AGPL v3) or
* (iii) a commercial license.
* This file remains the exclusive property of 4D and/or its licensors
* and is protected by national and international legislations.
* In any event, Licensee's compliance with the terms and conditions
* of the applicable license constitutes a prerequisite to any use of this file.
* Except as otherwise expressly stated in the applicable license,
* such license does not include any other license or rights on this file,
* 4D's and/or its licensors' trademarks and/or other proprietary rights.
* Consequently, no title, copyright or other proprietary rights
* other than those specified in the applicable license is granted.
*/
#ifndef __HTTP_RESPONSE_INCLUDED__
#define __HTTP_RESPONSE_INCLUDED__
#include "ServerNet/VServerNet.h"
class VHTTPRequest;
class VHTTPServer;
class VVirtualHost;
class VHTTPResponse : public VHTTPMessage, public IHTTPResponse
{
typedef VHTTPMessage inherited;
public:
VHTTPResponse (VHTTPServer * inServer, XBOX::VTCPEndPoint* inEndPoint, XBOX::VTCPSelectIOPool* inIOPool);
virtual ~VHTTPResponse();
void Reset();
/* HTTP Request Message manipulation functions */
XBOX::VError ReadRequestFromEndPoint (uLONG inTimeout = 0);
const IHTTPRequest& GetRequest() const;
const HTTPVersion GetRequestHTTPVersion() const;
const XBOX::VHTTPHeader& GetRequestHeader() const;
const XBOX::VString& GetRequestURL() const;
const XBOX::VString& GetRequestRawURL() const;
const XBOX::VString& GetRequestURLPath() const;
const XBOX::VString& GetRequestURLQuery() const;
HTTPRequestMethod GetRequestMethod() const;
void GetRequestMethodName (XBOX::VString& outMethodName) const;
void SetRequestURLPath (const XBOX::VString& inURLPath);
/* Request Header accessor functions */
bool GetIfModifiedSinceHeader (XBOX::VTime& outTime);
bool GetIfUnmodifiedSinceHeader (XBOX::VTime& outTime);
/* HTTP Response Message manipulation functions */
HTTPStatusCode GetResponseStatusCode() const { return fResponseStatusCode; }
void SetResponseStatusCode (HTTPStatusCode inValue) { fResponseStatusCode = inValue; }
XBOX::VPtrStream& GetResponseBody() { return GetBody(); }
XBOX::VError SetResponseBody (const void *inData, XBOX::VSize inDataSize);
XBOX::VError SetFileToSend (XBOX::VFile *inFileToSend); // Used to send larges files with chunked buffer
bool HasFileToSend();
/* Response Header manipulation functions */
void SetHTTPVersion (HTTPVersion inValue) { fHTTPVersion = inValue; }
HTTPVersion GetHTTPVersion() const { return fHTTPVersion; }
bool AddResponseHeader (const HTTPCommonHeaderCode inCode, const XBOX::VString& inValue, bool inOverride = true);
bool AddResponseHeader (const XBOX::VString& inName, const XBOX::VString& inValue, bool inOverride = true);
bool AddResponseHeader (const XBOX::VString& inName, sLONG inValue, bool inOverride = true);
bool AddResponseHeader (const XBOX::VString& inName, const XBOX::VTime& inValue, bool inOverride = true);
bool SetContentLengthHeader (const sLONG8 inValue);
bool SetExpiresHeader (const sLONG inValue);
bool SetExpiresHeader (const XBOX::VTime& inValue);
bool IsResponseHeaderSet (const HTTPCommonHeaderCode inCode) const;
bool IsResponseHeaderSet (const XBOX::VString& inName) const;
bool GetResponseHeader (const HTTPCommonHeaderCode inCode, XBOX::VString& outValue) const;
bool GetResponseHeader (const XBOX::VString& inName, XBOX::VString& outValue) const;
bool SetContentTypeHeader (const XBOX::VString& inValue, const XBOX::CharSet inCharSet = XBOX::VTC_UNKNOWN);
bool GetContentTypeHeader (XBOX::VString& outValue, XBOX::CharSet *outCharSet = NULL) const;
MimeTypeKind GetContentTypeKind() const;
const XBOX::VHTTPHeader& GetResponseHeader() const { return GetHeaders(); }
XBOX::VHTTPHeader& GetResponseHeader() { return GetHeaders(); }
/* Cookies manipulation functions */
bool AddCookie ( const XBOX::VString& inName,
const XBOX::VString& inValue,
const XBOX::VString& inComment,
const XBOX::VString& inDomain,
const XBOX::VString& inPath,
bool inSecure,
bool inHTTPOnly,
sLONG inMaxAge,
bool inAlwaysUseExpires = true);
/* Cookies manipulations functions */
bool IsCookieSet (const XBOX::VString& inName) const;
bool IsCookieSet (const VHTTPCookie& inCookie) const;
bool GetCookie (const XBOX::VString& inName, XBOX::VString& outValue) const;
bool SetCookie (const XBOX::VString& inName, const XBOX::VString& inValue);
bool DropCookie (const XBOX::VString& inName);
void SetCacheBodyMessage (bool inValue) { fCanCacheBody = inValue; }
bool CanCacheBodyMessage() const { return fCanCacheBody; }
void AllowCompression (bool inValue, sLONG inMinThreshold = -1, sLONG inMaxThreshold = -1);
bool CompressionAllowed() const { return fCanCompressBody; }
HTTPCompressionMethod GetCompressionMethod() const { return fCompressionMode; }
XBOX::VError SendResponse();
XBOX::VError ReplyWithStatusCode (HTTPStatusCode inValue, XBOX::VString *inExplanationString = NULL);
/* Send chunked data */
XBOX::VError SendData (void *inData, XBOX::VSize inDataSize, bool isChunked);
/* Normalize and Send Header only - Thou SHALL not use that function, for specific uses (WebSockets) only */
XBOX::VError SendResponseHeader();
#if WITH_DEPRECATED_IPV4_API
IP4 /*done*/ GetIPv4() const;
#else
void GetIP (XBOX::VString& outIP) const;
#endif
XBOX::VTCPEndPoint * GetEndPoint() const { return fEndPoint; }
VHTTPServer * GetHTTPServer() const { return fHTTPServer; }
IVirtualHost * GetVirtualHost();
bool IsSSL() const;
void SetWantedAuthMethod (HTTPAuthenticationMethod inValue) { fWantedAuthMethod = inValue; }
HTTPAuthenticationMethod GetWantedAuthMethod() const { return fWantedAuthMethod; }
void SetWantedAuthRealm (const XBOX::VString& inValue);
void GetWantedAuthRealm (XBOX::VString& outValue) const;
uLONG GetStartRequestTime() const { return fStartRequestTime; }
sLONG GetRawSocket() const;
bool GetForceCloseSession() const { return fForceCloseSession; }
void SetForceCloseSession (bool inValue = true) { fForceCloseSession = inValue; }
bool GetUseDefaultCharset() const { return fUseDefaultCharset; }
void SetUseDefaultCharset (bool inValue) { fUseDefaultCharset = inValue; }
private:
uLONG fStartRequestTime;
VHTTPServer * fHTTPServer;
mutable VVirtualHost * fVirtualHost;
XBOX::VTCPEndPoint * fEndPoint;
VHTTPRequest * fRequest;
HTTPStatusCode fResponseStatusCode;
HTTPVersion fHTTPVersion;
bool fCanCacheBody;
bool fCanCompressBody;
HTTPCompressionMethod fCompressionMode; // Compression Method Used for body when applicable
HTTPAuthenticationMethod fWantedAuthMethod;
XBOX::VFile * fFileToSend;
/* Handle Chunked Responses */
bool fIsChunked;
sLONG fNumOfChunkSent;
/* Compression Thresholds */
sLONG fMinCompressionThreshold;
sLONG fMaxCompressionThreshold;
bool fHeaderSent;
bool fForceCloseSession; // To avoid waiting Keep-Alive timeout when HTTP Server is shutting down
bool fUseDefaultCharset;
private:
/* private functions */
bool _NormalizeResponseHeader();
XBOX::VError _SendResponseHeader();
XBOX::VError _SendResponseBody();
XBOX::VError _SendResponseWithStatusCode (HTTPStatusCode inStatusCode);
XBOX::VError _WriteChunkSize (XBOX::VSize inChunkSize);
XBOX::VError _WriteToSocket (void *inBuffer, uLONG *ioBytes);
bool _UpdateRequestURL (const XBOX::VString& inProjectPattern);
/* Automatically compress Response Body-Message when applicable
* (size > compressionMinThreshold && size < compressionMaxThreshold && mime-type allows compression)
*/
XBOX::VError _CompressData();
bool _InitResponseHeaderFromBuffer (void *inBuffer, XBOX::VSize inBufferSize, XBOX::VSize& outBodyOffset);
};
#endif // __HTTP_RESPONSE_INCLUDED__ | [
"[email protected]"
] | |
618003300847489546ccdb4846982dda5c52a87d | 2f931e946e9de8a46d8aee5a237b7b251ee78eed | /src/light/light_area.cpp | 5e2d98277286c7e94265321ce5605a4358f4da15 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | lwkobe/lightmetrica-v3 | 6d9e9539e844f55913d562ddb304574f4b28b265 | 181d6598c84abce95e553da9a7adeb6935432fb6 | refs/heads/master | 2020-06-20T13:23:11.592289 | 2019-06-21T09:10:52 | 2019-06-21T09:10:52 | 197,135,848 | 1 | 0 | NOASSERTION | 2019-07-16T06:41:44 | 2019-07-16T06:41:44 | null | UTF-8 | C++ | false | false | 3,416 | cpp | /*
Lightmetrica - Copyright (c) 2019 Hisanari Otsu
Distributed under MIT license. See LICENSE file for details.
*/
#include <pch.h>
#include <lm/light.h>
#include <lm/mesh.h>
#include <lm/json.h>
#include <lm/user.h>
#include <lm/serial.h>
#include <lm/surface.h>
LM_NAMESPACE_BEGIN(LM_NAMESPACE)
/*
\rst
.. function:: light::area
Area light.
:param color Ke: Luminance.
:param str mesh: Underlying mesh specified by asset name or locator.
\endrst
*/
class Light_Area final : public Light {
private:
Vec3 Ke_; // Luminance
Dist dist_; // For surface sampling of area lights
Float invA_; // Inverse area of area lights
Mesh* mesh_; // Underlying mesh
public:
LM_SERIALIZE_IMPL(ar) {
ar(Ke_, dist_, invA_, mesh_);
}
virtual void foreachUnderlying(const ComponentVisitor& visit) override {
comp::visit(visit, mesh_);
}
private:
Float tranformedInvA(const Transform& transform) const {
// TODO: Handle degenerated axis
// e.g., scaling by (.2,.2,.2) leads J=1/5^3
// but the actual change of areae is J=1/5^2
return invA_ / transform.J;
}
public:
virtual bool construct(const Json& prop) override {
Ke_ = prop["Ke"];
mesh_ = comp::get<Mesh>(prop["mesh"]);
if (!mesh_) {
return false;
}
// Construct CDF for surface sampling
// Note we construct the CDF before transformation
mesh_->foreachTriangle([&](int, const Mesh::Tri& tri) {
const auto cr = cross(tri.p2.p - tri.p1.p, tri.p3.p - tri.p1.p);
dist_.add(math::safeSqrt(glm::dot(cr, cr)) * .5_f);
});
invA_ = 1_f / dist_.c.back();
dist_.norm();
return true;
}
virtual std::optional<LightRaySample> sample(Rng& rng, const PointGeometry& geom, const Transform& transform) const override {
const int i = dist_.samp(rng);
const auto s = math::safeSqrt(rng.u());
const auto tri = mesh_->triangleAt(i);
const auto a = tri.p1.p;
const auto b = tri.p2.p;
const auto c = tri.p3.p;
const auto p = math::mixBarycentric(a, b, c, Vec2(1_f-s, rng.u()*s));
const auto n = glm::normalize(glm::cross(b - a, c - a));
const auto geomL = PointGeometry::makeOnSurface(
transform.M * Vec4(p, 1_f),
transform.normalM * n);
const auto ppL = geomL.p - geom.p;
const auto wo = glm::normalize(ppL);
const auto pL = pdf(geom, geomL, transform, -wo);
if (pL == 0_f) {
return {};
}
const auto Le = eval(geomL, -wo);
return LightRaySample{
geomL,
-wo,
Le / pL
};
}
virtual Float pdf(const PointGeometry& geom, const PointGeometry& geomL, const Transform& transform, Vec3) const override {
const auto G = surface::geometryTerm(geom, geomL);
return G == 0_f ? 0_f : tranformedInvA(transform) / G;
}
virtual bool isSpecular(const PointGeometry&) const override {
return false;
}
virtual bool isInfinite() const override {
return false;
}
virtual Vec3 eval(const PointGeometry& geom, Vec3 wo) const override {
return glm::dot(wo, geom.n) <= 0_f ? Vec3(0_f) : Ke_;
}
};
LM_COMP_REG_IMPL(Light_Area, "light::area");
LM_NAMESPACE_END(LM_NAMESPACE)
| [
"[email protected]"
] | |
ffa406c78c174c72d47fefbc241a1c660423da1c | d95dc1beb1f3681919bf787c9141b1119dc3e9ba | /supervisor/server/src/controllers/Controller.h | 0b15dd087cbcc35fb8462aaa6ae48582fcdc9655 | [] | no_license | ansartnl/GRANIT | ec26d53a291e98a098e7f1e6bb8812ed9983a8dd | 5f687b47c52444d9f0801414cebe903658678a53 | refs/heads/main | 2022-12-30T14:04:40.779016 | 2020-10-16T09:12:22 | 2020-10-16T09:12:22 | 304,633,662 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,739 | h | #ifndef _CONTROLLER_H__
#define _CONTROLLER_H__
#include "common.h"
#include <QtCore/QObject>
#include <QtCore/QTimer>
#include <QtCore/QSharedPointer>
#include <QtCore/QStringList>
#include <QtCore/QVariant>
#include <QtCore/QFile>
#include <QDateTime>
class DbConnThread;
QStringList readStream(const QString &filePath, int countLines);
QStringList packLines(QStringList &lines);
//! Base controller declaration.
class Controller : public QObject
{
Q_OBJECT
public:
//! Controller information
struct Info
{
Type type;
QString name;
QString description;
Status status;
QString visualName;
};
//! Type associated with this controller.
virtual Type type() const = 0;
//! Retrieve current controller info.
virtual Info information() const = 0;
//! Retrieve current status.
virtual Status status() const = 0;
//! Name associated with this controller.
inline const QString& name() const { return mName; }
inline void setName(const QString &n) { mName = n; }
//! Visual controller name.
inline QString visualName() const { return mVisualName; }
inline void setVisualName(const QString &visName) { mVisualName = visName; }
//! Current description of this controller.
inline QString description() const { return mDescription; }
inline void setDescription(const QString &desc) { mDescription = desc; }
//! Command line arguments.
inline QString arguments() const { return mArguments; }
inline void setArguments(const QString &args = QString()) { mArguments = args; }
//! Read log file associated with this controller.
/*!
\param countLines Number of read lines. If -1 - read all log.
*/
virtual QStringList readLog(int countLines = 300) const;
//! Read log file associated with this controller starting from specified date/time.
/*!
\param from - a moment to start reading log from
\param to - a moment to end reading
\param extractLines - if true - return lines from specified period,
otherwise - returns list of log files containing theese lines
*/
const QStringList readLogByTime(const QDateTime &from, const QDateTime &to, bool extractLines = true) const;
//! Check if service or process is running.
virtual bool isRunning() const = 0;
//! Set additional relative log search pathes.
/*! Relative path string separated by semicolon: ";".
*/
void setLogPath(const QString &path) { mLogPath = path; }
const QString& logPath() { return mLogPath; }
//! Set path to configuration file.
void setConfigPath(const QString &path) { mConfigPath = path; }
const QString& configPath() const { return mConfigPath; }
//! True if controller needs to monitore the restart.
void setRestartable(bool on) { mIsRestartable = on; }
//! Set reference to database connection checker object.
void setDatabaseChecker(DbConnThread *dbConnChecker);
//! User data of database checker object.
QVariant databaseCheckerUserData() const;
public slots:
//! Starts service.
virtual bool start() = 0;
//! Restarts service.
virtual void restart() = 0;
//! Stops specified service.
virtual bool stop();
signals:
void statusChanged(Type type, const QString &name, Status status);
protected:
Controller(QObject *parent=0);
const QString nextLog(QString prevName) const;
const QDateTime lineTimeFromFile(QString &log) const;
//! Returns path to log file according to the controller.
virtual QString logFilePath() const = 0;
//! Returns true if restart is required for controller.
bool isRestartable() const { return mIsRestartable; }
//! Reference to current database checker.
DbConnThread* databaseChecker() const { return mDbConnection; }
//! True if database connection checker is null.
bool isDatabaseCheckerNull() const { return mDbConnection == 0; }
/** Controller identifier (name) */
QString mName;
/** List of relative log pathes to the current folder of controller or supervisor server */
QString mLogPath;
/** Configuration file path */
QString mConfigPath;
/** True if restart is needed */
bool mIsRestartable;
/** Visual name of the controller */
QString mVisualName;
/** Description of the controller */
QString mDescription;
/** Arguments for command line */
QString mArguments;
/** True when service was stopped */
bool mIsStopped;
private:
/** Cloned instance of database thread */
DbConnThread *mDbConnection;
};
#endif // _CONTROLLER_H__
| [
"[email protected]"
] | |
11a65246bc3a96813ec08f2c703a2eaf1eebc356 | 30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a | /scrape/data/Tokitsukaze and Discard Items/pulkit_287_TLE.cpp | dd4ac0692e16f1b17b9cf944a6968eefa7f43e7c | [] | 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 | 677 | cpp | #include<bits/stdc++.h>
using namespace std;
#define ll long long int
#define ff first
#define ss second
#define pb push_back
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
ll n,m,k,i,j,q,r,c=0,count=0;
cin>>n>>m>>k;
ll a[m];
for(i=0;i<m;i++)
cin>>a[i];
ll co=0,p;
i=0;
while(i<m)
{
p=ceil((a[i]-c)/(1.0*k));
q=p*k;
co=0;
for(j=i;j<m && j<i+k;j++)
{
if((a[j]-c)<=q)
co++;
else
break;
}
c+=co;
count++;
i+=co;
}
cout<<count<<endl;
return 0;
} | [
"[email protected]"
] | |
670d7643500362ee679871b95fe6ae67cd5440b8 | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/git/new_hunk_8092.cpp | 629745169f078757e98c108049b63205e2ac5326 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 333 | cpp | die("tag '%s' already exists", tag);
if (annotate)
create_tag(object, tag, &buf, message, sign, object);
lock = lock_any_ref_for_update(ref, prev, 0);
if (!lock)
die("%s: cannot lock the ref", ref);
if (write_ref_sha1(lock, object, NULL) < 0)
die("%s: cannot update the ref", ref);
strbuf_release(&buf);
return 0;
}
| [
"[email protected]"
] | |
7e0aebed54ce797d07238b3035f4b951c0e4272e | e0d9eccdcae2480aad690ff9756591f5c56ba0ff | /master/controll/testNode/test.cpp | bd61de584b3e461ef32ea2b0b938256f147d98a9 | [] | no_license | UiRobotics/2018-2019_Robotics | ff871cd39025259abbe99ff04c5141344c99bdef | b416236bac7c424d4de3ab9186d66a5964b54b15 | refs/heads/master | 2020-03-28T00:35:53.322214 | 2019-08-12T12:58:03 | 2019-08-12T12:58:03 | 147,431,491 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,682 | cpp | /*
* test.cpp
*
* Created on: Feb 14, 2017
* Author: JJB07
*/
//#include <iostream>
#include "inc/IDevice.h"
#include <iostream>
#include "lib/TransToOldFormat/msgParser.h"
#include "header/motor.h"
#include "header/SKit.h"
#include "lib/arduino-serial-lib.h"
#include "unistd.h"
int main(){
std::cout << "working" << std::endl;
int fd=-1;
fd = serialport_init("/dev/ttyACM0", 9600); //opening port
(fd == -1) ? std::cout<< "couldn't open port for RC arduino! :(" << std::endl : std::cout<< "opened port " << std::endl;
serialport_flush(fd);
uiRobotics::IDevice* dev;
char str[] = "6011";
uiRobotics::CREATE_UI_ROBOTICS_DEVICE(&dev, str);
motor motor("/dev/ttyACM1", 115200);
//uiRobotics::SKit skit(8800);
dev->Bind(&motor);
dev->SetServerPort(7017);
dev->Start();
//TCPServerSocket sock(7090);
sleep(1);
//TCPSocket* s = sock.accept();
TCPSocket revS("0.0.0.0", 7017);
char buffer[255];
while(true)
{
int read = serialport_read_until(fd, buffer, '\n', 255, 10000);
//s->recv(buffer, 255);
if(read != -1 && buffer[0]=='m'){
this_thread::yield();
//std::string str;//("motor_controller:set_servo1-90;");//(buffer);//= msgParser::TransToNewFormat(std::string(buffer));
//std::cin >> str;
std::string str(buffer);
std::cout << str << std::endl;
//std::cout << msgParser::TransToOldFormat(str) << std::endl;
revS.send(str.c_str(), MSG_MAX_BUFFER_SIZE);
//char buffer[MSG_MAX_BUFFER_SIZE];
//std::cin >> buffer;
revS.recv(buffer, MSG_MAX_BUFFER_SIZE);
this_thread::yield();
/*while(true)
{
this_thread::yield();
}*/
}
}
}
| [
"[email protected]"
] | |
0c0125b88216d351c9b016e8c231cce2af990def | 5a8b8953015a188dfa18164c98941af578e5921d | /src/SurfPair.h | f41c22927359f710ebd59958aa393105ac1cd3d5 | [] | no_license | clobosmesher/MixedOcTree | 5664063693b46dfb80d9763788da81cdd4a59879 | 9ba14e375137c04531c408f6fcf362658aa5e52d | refs/heads/master | 2023-01-24T22:34:17.527946 | 2023-01-19T20:39:42 | 2023-01-19T20:39:42 | 224,405,359 | 4 | 3 | null | 2023-01-19T20:39:44 | 2019-11-27T10:30:44 | C++ | UTF-8 | C++ | false | false | 1,287 | h | /*
<Mix-mesher: region type. This program generates a mixed-elements mesh>
Copyright (C) <2013,2017> <Claudio Lobos>
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 3 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, see <http://www.gnu.org/licenses/gpl.txt>
*/
#ifndef SurfPair_h
#define SurfPair_h 1
#include <iostream>
using std::ostream;
namespace SurfMesh {
class SurfPair{
public:
SurfPair();
SurfPair(unsigned int key, unsigned int val);
virtual ~SurfPair();
virtual unsigned int &operator[](unsigned int pos);
virtual void operator=(SurfPair p2);
protected:
unsigned int key,val;
};
ostream& operator<<(ostream& o,SurfPair &p);
bool operator==(SurfPair &p1,SurfPair &p2);
bool operator!=(SurfPair &p1,SurfPair &p2);
}
#endif
| [
"[email protected]"
] | |
4afe6eff8a0f19d22b7175b5352875db37799042 | 1e8099b598f7d8563fb2bcd620740e26bad46f58 | /tests/UnitTests/DecomposeAmountIntoDigits.cpp | c39f8ebf753358dcfc9fb96737063b4e9757fd61 | [] | no_license | gmin/darknetspace2 | 2ffaa0a3a57f5205e12773926ab448de75cba765 | b2259b1fdcf2d2aa726bf97ad7ec0649b8568d00 | refs/heads/master | 2021-01-19T16:36:16.534635 | 2016-06-25T14:35:22 | 2016-06-25T14:35:22 | 101,009,074 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,633 | cpp | // Copyright (c) 2011-2016 The Cryptonote developers
// Copyright (c) 2014-2016 darknetspace developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "gtest/gtest.h"
#include <cstdint>
#include <vector>
#include "CryptoNoteCore/CryptoNoteFormatUtils.h"
#define VEC_FROM_ARR(vec) \
std::vector<uint64_t> vec; \
for (size_t i = 0; i < sizeof(vec##_arr) / sizeof(vec##_arr[0]); ++i) \
{ \
vec.push_back(vec##_arr[i]); \
}
namespace
{
struct chunk_handler_t
{
void operator()(uint64_t chunk) const
{
m_chunks.push_back(chunk);
}
mutable std::vector<uint64_t> m_chunks;
};
struct dust_handler_t
{
dust_handler_t()
: m_dust(0)
, m_has_dust(false)
{
}
void operator()(uint64_t dust) const
{
m_dust = dust;
m_has_dust = true;
}
mutable uint64_t m_dust;
mutable bool m_has_dust;
};
class decompose_amount_into_digits_test : public ::testing::Test
{
protected:
chunk_handler_t m_chunk_handler;
dust_handler_t m_dust_handler;
};
}
TEST_F(decompose_amount_into_digits_test, is_correct_0)
{
std::vector<uint64_t> expected_chunks;
CryptoNote::decompose_amount_into_digits(0, 0, m_chunk_handler, m_dust_handler);
ASSERT_EQ(m_chunk_handler.m_chunks, expected_chunks);
ASSERT_EQ(m_dust_handler.m_has_dust, false);
}
TEST_F(decompose_amount_into_digits_test, is_correct_1)
{
std::vector<uint64_t> expected_chunks;
CryptoNote::decompose_amount_into_digits(0, 10, m_chunk_handler, m_dust_handler);
ASSERT_EQ(m_chunk_handler.m_chunks, expected_chunks);
ASSERT_EQ(m_dust_handler.m_has_dust, false);
}
TEST_F(decompose_amount_into_digits_test, is_correct_2)
{
uint64_t expected_chunks_arr[] = {10};
VEC_FROM_ARR(expected_chunks);
CryptoNote::decompose_amount_into_digits(10, 0, m_chunk_handler, m_dust_handler);
ASSERT_EQ(m_chunk_handler.m_chunks, expected_chunks);
ASSERT_EQ(m_dust_handler.m_has_dust, false);
}
TEST_F(decompose_amount_into_digits_test, is_correct_3)
{
std::vector<uint64_t> expected_chunks;
uint64_t expected_dust = 10;
CryptoNote::decompose_amount_into_digits(10, 10, m_chunk_handler, m_dust_handler);
ASSERT_EQ(m_chunk_handler.m_chunks, expected_chunks);
ASSERT_EQ(m_dust_handler.m_dust, expected_dust);
}
TEST_F(decompose_amount_into_digits_test, is_correct_4)
{
uint64_t expected_dust = 8100;
std::vector<uint64_t> expected_chunks;
CryptoNote::decompose_amount_into_digits(8100, 1000000, m_chunk_handler, m_dust_handler);
ASSERT_EQ(m_chunk_handler.m_chunks, expected_chunks);
ASSERT_EQ(m_dust_handler.m_dust, expected_dust);
}
TEST_F(decompose_amount_into_digits_test, is_correct_5)
{
uint64_t expected_chunks_arr[] = {100, 900000, 8000000};
VEC_FROM_ARR(expected_chunks);
CryptoNote::decompose_amount_into_digits(8900100, 10, m_chunk_handler, m_dust_handler);
ASSERT_EQ(m_chunk_handler.m_chunks, expected_chunks);
ASSERT_EQ(m_dust_handler.m_has_dust, false);
}
TEST_F(decompose_amount_into_digits_test, is_correct_6)
{
uint64_t expected_chunks_arr[] = {900000, 8000000};
VEC_FROM_ARR(expected_chunks);
uint64_t expected_dust = 100;
CryptoNote::decompose_amount_into_digits(8900100, 1000, m_chunk_handler, m_dust_handler);
ASSERT_EQ(m_chunk_handler.m_chunks, expected_chunks);
ASSERT_EQ(m_dust_handler.m_dust, expected_dust);
}
| [
"[email protected]"
] | |
8cfadc5e082a0f2b803c079687c710b1c156a006 | 672d9fb60b6ae7fe1ba29ca4e0984701bb4691af | /Graphs/inlab/middleearth.cpp | eb4ef23101aab3a6ac017576b6ee8d85b5ccf50d | [] | no_license | nsalafranca/Data-Structures | ce3846dc7a49c0665bc3162d19881eb086f70d57 | b7ea4b1b10d593d9e2355fdd0bf546c3972a9df8 | refs/heads/master | 2021-01-11T18:43:40.547730 | 2017-01-20T23:59:52 | 2017-01-20T23:59:52 | 79,610,112 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,203 | cpp | //Nico Salafranca nms6dz middleearth.cpp
#include "middleearth.h"
#include <algorithm>
#include <stdlib.h>
#include <math.h>
#include <time.h>
// The list of all the place names that we'll be using
string all_city_names[] = {
// human towns, cities and strongholds
"Bree", // a human and hobbit town between the Shire and Rivendell
"Isengard", // the tower fortress where Saruman resided; Gandalf was imprisoned there.
"Minas Tirith", // capital of Gondor, the "white city"; home to Boromir, Denethor, and later, Aragorn
"Osgiliath", // city on the river Anduin; is at the other end of Pelennor Fields from M. Tirith
"Edoras", // the capital city of Rohan, where King Theoden resides
"Helm's Deep", // fortress of Rohan, it is where the people of Edoras fled to from the orc invasion
"Dunharrow", // a refuge of Rohan, it is where Elrond presents the sword to Aragorn in the movie
// dwarf cities
"Moria", // the enormous dwarven underground complex that the Fellowship traveled through
// elvish cities
"Lothlorien", // the elvish tree-city, home of Lady Galadriel and Lord Celeborn
"Rivendell", // the elvish city that is home to Lord Elrond
"The Grey Havens", // the port city on the western coast from which the elves travel westward
// hobbit villages
"Bucklebury", // a Shire village, it has a ferry across the Brandywine River that the Hobbits use
"Bywater", // a Shire village, it is the site of the Battle of Bywater (removed from the movie)
"Hobbiton", // a Shire village, it is home to Bilbo and, later, Frodo
"Michel Delving", // a Shire village, it is the chief town of the Shire
// Mordor places
"Orodruin", // Mount Doom in Mordor, it is where the Ring was made, and later, unmade
"Barad-Dur", // Sauron's fortress that was part castle, part mountain
"Minas Morgul", // formerly the Gondorian city of Minas Ithil; renamed when Sauron took it over
"Cirith Ungol", // the mountianous pass that Sam & Frodo went through; home of Shelob
"Gorgoroth", // the plains in Mordor that Frodo & Sam had to cross to reach Mount Doom
// places that are not cities
"Emyn Muil", // the rocky region that Sam & Frodo climb through after leaving the Fellowship
"Fangorn Forest", // the forest where Treebeard (and the other Ents) live
"Dagorlad", // great plain/swamp between Emyn Muil & Mordor where a great battle was fought long ago
"Weathertop", // the tower between Bree and Rivendell where Aragorn and the Hobbits take refuge
"Gladden Fields", // this is where the Ring is lost in the River Anduin, after Isildur is ambushed and killed by Orcs
"Entwash River", // a river through Rohan, which flows through Fangorn Forest
"River Isen", // river through the Gap of Rohan; Theoden's son was slain in a battle here.
"The Black Gate", // huge gate to Mordor that Aragorn and company attack as the ring is destroyed
"The Old Forest", // a forest to the west of the Shire (adventures there were removed from the movie)
"Trollshaws", // area to the west of Rivendell that was home to the trolls that Bilbo met
"Pelennor Fields", // great plain between M. Tirith and Osgiliath; site of the Battle of M. Tirith
"Hollin", // the empty plains that the Fellowship crosses between Rivendell and Moria
"Mirkwood", // Legolas' forest home; Bilbo travels there in 'The Hobbit'.
"Misty Mountains", // the north-south moutain range that runs through Middle-earth
"Prancing Pony", // an inn in Bree where the hobbits tried to meet Gandalf, but meet Aragorn instead
// places from the Hobbit book and movies
"Laketown", // also called Esgaorth, it is the town of men on the Long Lake near Erebor
"Dale", // the town of men outside Erebor, destroyed by Smaug long before the Hobbit story
"Erebor", // the Elvish name for the Lonely Mountain, where the dwarves had their fortress
"Beorn's House", // Beorn is the shape-shifter who shelters the dwarf party
"Dol Guldur", // fortress in Mirkwood where Sauron, as the Necromancer, hid during most of the Hobbit
// END marker
"END"
};
// Iluvatar, the creator of Middle-Earth
/** @brief MiddleEarth constructor
*
* @param xsize
* @param ysize
* @param num_cities
* @param seed
*
*/
MiddleEarth::MiddleEarth (int xsize, int ysize, int num_cities, int seed) {
// set up the random number seed
srand( (seed==-1) ? time(NULL) : seed );
// count the number of cities in the array
for ( num_city_names = 0; all_city_names[num_city_names] != "END";
num_city_names++ );
if ( num_cities > num_city_names ) {
cout << "There are only " << num_city_names << " city names, so "
<< num_cities << " cities cannot be created.\nExiting." << endl;
exit(0);
}
if ( num_cities < 5 )
num_cities = 5;
// select the num_cities names of the cities that we'll be using
for ( int i = 0; all_city_names[i] != "END"; i++ )
cities.push_back(string(all_city_names[i]));
random_shuffle(cities.begin(), cities.end());
cities.erase(cities.begin()+num_cities,cities.end());
// compute random city positions
for ( unsigned int i = 0; i < cities.size(); i++ ) {
xpos.push_back((rand()/((float)RAND_MAX)) * xsize);
ypos.push_back((rand()/((float)RAND_MAX)) * ysize);
}
// compute the 2-d distance array
this->xsize = xsize;
this->ysize = ysize;
// we assume that num_cities < xsize*ysize
distances = new float[num_cities*num_cities]; // row-major order
for ( int r = 0; r < num_cities; r++ )
for ( int c = 0; c < num_cities; c++ ) {
distances[r*num_cities+c] = sqrt((xpos[c]-xpos[r])*(xpos[c]-xpos[r]) +
(ypos[c]-ypos[r])*(ypos[c]-ypos[r]));
}
// create hash of indices so we don't have to do a linear search
// each time we want to find a city name to index mapping
for ( unsigned int i = 0; i < cities.size(); i++ )
indices[cities[i]] = i;
}
// Sauron, the destructor of Middle-Earth.
/** @fn MiddleEarth destructor
* @brief - destructor
*
*/
MiddleEarth::~MiddleEarth () {
delete[] distances;
}
// The Mouth of Sauron! (prints out info on the created 'world')
/** @brief - print function
*
* @fn print function
*
*/
void MiddleEarth::print() {
cout << "there are " << num_city_names
<< " locations to choose from; we are using " << cities.size() << endl;
cout << "they are: " << endl;
for ( unsigned int i = 0; i < cities.size(); i++ )
cout << "\t" << cities[i] << " @ (" << xpos[i] << ", " << ypos[i]
<< ")" << endl;
}
// prints a tab-separated table of the distances (this can be loaded
// into Excel or similar)
/** @brief printTable
*
* @fn prints a tab-separated table of the distances
*
*/
void MiddleEarth::printTable() {
cout << "Table: " << endl << endl << "Location\txpos\typos\t";
for ( unsigned int r = 0; r < cities.size(); r++ )
cout << cities[r] << "\t";
cout << endl;
for ( unsigned int r = 0; r < cities.size(); r++ ) {
cout << cities[r] << "\t" << xpos[r] << "\t" << ypos[r] << "\t";
for ( unsigned int c = 0; c < cities.size(); c++ )
cout << distances[r*cities.size()+c] << "\t";
cout << endl;
}
}
// This method returns the distance between the two passed cities. If
// we assume that the hash table (i.e. the map) is O(1), then this
// method call is also O(1)
/** @brief getDistance func
*
* @fn returns distance between two passed cities
*
*/
float MiddleEarth::getDistance (string city1, string city2) {
return distances[indices[city1]*cities.size()+indices[city2]];
}
// Returns the list of cities to travel to. The first city is the
// original start point as well as the end point. The number of
// cities passed in does not include this start/end point (so there
// will be length+1 entries in the returned vector).
/** @brief getItinerary
*
* @fn returns list of cities to travel to
*
*/
vector<string> MiddleEarth::getItinerary (unsigned int length) {
length++; // to account for the start point
// check parameter
if ( length > cities.size() ) {
cout << "You have requested a itinerary of " << length-1
<< " cities; you cannot ask for an itinerary of more than length "
<< cities.size()-1 << endl;
exit(0);
}
// we need to make a deep copy of the cities vector. itinerary is a
// pointer so that it doesn't get deleted when it goes out of scope.
vector<string> itinerary;
for ( unsigned int i = 0; i < cities.size(); i++ )
itinerary.push_back(cities[i]);
// shuffle, erase unneeded ones, and return the itinerary
random_shuffle(itinerary.begin(), itinerary.end());
itinerary.erase(itinerary.begin()+length,itinerary.end());
return itinerary;
}
| [
"[email protected]"
] | |
84468fd0f17053d5c0c4207295b0db66f2c2025c | 86fd61f00f021f46de3e8297854181a599cf02c2 | /plugins /textureSplatting/textureSplatting.cpp | c3f39101124da0a64b2c9a7b10927f0c1ffdad28 | [] | no_license | danielmabo/G-FIB | 5e7624e5137cc39efbbbf3497a48c6732eeffeba | 1a644a57dd58c7dd5736e2998f08f82c897b5d3c | refs/heads/master | 2020-04-01T04:45:34.051983 | 2018-10-13T13:55:25 | 2018-10-13T13:55:25 | 152,876,267 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,922 | cpp | #include "textureSplatting.h"
#include <QFileDialog>
void TextureSplatting::onPluginLoad()
{
GLWidget &g = *glwidget();
g.makeCurrent();
// BoundingBox: Carrega shader, compila i munta
vs = new QOpenGLShader(QOpenGLShader::Vertex, this);
vs->compileSourceFile("splatting.vert");
fs = new QOpenGLShader(QOpenGLShader::Fragment, this);
fs->compileSourceFile("splatting.frag");
// Program
program = new QOpenGLShaderProgram(this);
program->addShader(vs);
program->addShader(fs);
program->link();
// Load Texture 1
g.glActiveTexture(GL_TEXTURE0);
//QString filename = QFileDialog::getOpenFileName(0, "Open Image", "/home/dmartinezbordes/App_Viewer/Textures", "Image file (*.png *.jpg)");
//QString filename = QFileDialog::getOpenFileName(0, "Open Image", "./Textures", "Image file (*.png *.jpg)");
//QString filename = QFileDialog::getOpenFileName(0, "Open Image", "/assig/grau-g/Textures", "Image file (*.png *.jpg)");
QString filename = "/home/dmartinezbordes/App_Viewer/Textures/noise.png";
g.makeCurrent();
QImage img0(filename);
QImage im0 = img0.convertToFormat(QImage::Format_ARGB32).rgbSwapped().mirrored();
g.glGenTextures( 1, &textureId0);
g.glBindTexture(GL_TEXTURE_2D, textureId0);
g.glTexImage2D( GL_TEXTURE_2D, 0, GL_RGB, im0.width(), im0.height(), 0, GL_RGBA, GL_UNSIGNED_BYTE, im0.bits());
g.glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR );
g.glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR );
g.glBindTexture(GL_TEXTURE_2D, 0);
// Load Texture 2
g.glActiveTexture(GL_TEXTURE1);
//QString filename2 = QFileDialog::getOpenFileName(0, "Open Image 2", "/home/dmartinezbordes/App_Viewer/Textures", "Image file (*.png *.jpg)");
//QString filename2 = QFileDialog::getOpenFileName(0, "Open Image 2", "./Textures", "Image file (*.png *.jpg)");
//QString filename2 = QFileDialog::getOpenFileName(0, "Open Image 2", "/assig/grau-g/Textures", "Image file (*.png *.jpg)");
QString filename2 = "/home/dmartinezbordes/App_Viewer/Textures/rock.png";
g.makeCurrent();
QImage img1(filename2);
QImage im1 = img1.convertToFormat(QImage::Format_ARGB32).rgbSwapped().mirrored();
g.glGenTextures( 1, &textureId1);
g.glBindTexture(GL_TEXTURE_2D, textureId1);
g.glTexImage2D( GL_TEXTURE_2D, 0, GL_RGB, im1.width(), im1.height(), 0, GL_RGBA, GL_UNSIGNED_BYTE, im1.bits());
g.glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR );
g.glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR );
g.glBindTexture(GL_TEXTURE_2D, 0);
// Load Texture 3
g.glActiveTexture(GL_TEXTURE2);
//QString filename3 = QFileDialog::getOpenFileName(0, "Open Image", "/home/dmartinezbordes/App_Viewer/Textures", "Image file (*.png *.jpg)");
//QString filename3 = QFileDialog::getOpenFileName(0, "Open Image", "./Textures", "Image file (*.png *.jpg)");
//QString filename3 = QFileDialog::getOpenFileName(0, "Open Image", "/assig/grau-g/Textures", "Image file (*.png *.jpg)");
QString filename3 = "/home/dmartinezbordes/App_Viewer/Textures/grass.png";
g.makeCurrent();
QImage img2(filename3);
QImage im2 = img2.convertToFormat(QImage::Format_ARGB32).rgbSwapped().mirrored();
g.glGenTextures( 1, &textureId2);
g.glBindTexture(GL_TEXTURE_2D, textureId2);
g.glTexImage2D( GL_TEXTURE_2D, 0, GL_RGB, im2.width(), im2.height(), 0, GL_RGBA, GL_UNSIGNED_BYTE, im2.bits());
g.glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR );
g.glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR );
g.glBindTexture(GL_TEXTURE_2D, 0);
}
void TextureSplatting::preFrame()
{
GLWidget &g = *glwidget();
g.makeCurrent();
// bind shader and define uniforms
program->bind();
program->setUniformValue("sampler0", 0); // texture unit del primer sampler
program->setUniformValue("sampler1", 1); // texture unit del segon sampler
program->setUniformValue("sampler2", 2); // texture unit del segon sampler
//program->setUniformValue("radius", float(scene()->boundingBox().radius())); // radi d'una esfera que engloba l'escena
program->setUniformValue("modelViewProjectionMatrix", g.camera()->projectionMatrix() * g.camera()->viewMatrix());
// bind textures
g.glActiveTexture(GL_TEXTURE0);
g.glBindTexture(GL_TEXTURE_2D, textureId0);
g.glActiveTexture(GL_TEXTURE1);
g.glBindTexture(GL_TEXTURE_2D, textureId1);
g.glActiveTexture(GL_TEXTURE2);
g.glBindTexture(GL_TEXTURE_2D, textureId2);
}
void TextureSplatting::postFrame()
{
GLWidget &g = *glwidget();
g.makeCurrent();
// unbind shader
program->release();
// unbind textures
g.glActiveTexture(GL_TEXTURE0);
g.glBindTexture(GL_TEXTURE_2D, 0);
g.glActiveTexture(GL_TEXTURE1);
g.glBindTexture(GL_TEXTURE_2D, 0);
g.glActiveTexture(GL_TEXTURE2);
g.glBindTexture(GL_TEXTURE_2D, 0);
}
| [
"[email protected]"
] | |
c7462a3ed72044d9b6d88428322c2fe1e2117a7d | 269d369c40395fd6886251a0872a7f6363694ea6 | /CS-0.0.1-new/CS/include/CS/Config.h | a013ee89fca855fc6d0aab90c692d549e4828bf1 | [] | no_license | wuyu201321060203/ColumnStore | 8e17c7149255a01393d118a78866d323a2f55c58 | 184dd698f9e16e49d41b14d1408650deb214ff39 | refs/heads/master | 2020-06-30T05:49:24.126550 | 2015-06-25T06:55:30 | 2015-06-25T06:55:30 | 37,957,405 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,991 | h | #ifndef CONFIG_H
#define CONFIG_H
#include <string>
#include <vector>
#include <google/protobuf/message.h>
#include <boost/shared_ptr.hpp>
#include <protocol/common.pb.h>
#include <protocol/MSG_CS_CS_ENTRY_GET.pb.h>
#include <protocol/MSG_CS_CS_VALUE_GET.pb.h>
#include <protocol/MSG_CS_DC_COLUMN_POSITION_LOCATE.pb.h>
#include <protocol/MSG_CS_DC_LOCATION_INDEX_SEND.pb.h>
#include <protocol/MSG_CS_DC_RTABLE_POSITION_GET.pb.h>
#include <protocol/MSG_DC_CS_SYSTEM_STATUS_GET.pb.h>
#include <protocol/MSG_DS_CS_RAW_DATA_SEND.pb.h>
#include <protocol/MSG_DS_CS_RTABLE_CREATE.pb.h>
#include <protocol/MSG_DS_CS_RTABLE_SEND.pb.h>
#include <protocol/MSG_DS_CS_UPDATE_DATA_SEND.pb.h>
#include <protocol/MSG_PING_PONG.pb.h>
#include <protocol/MSG_CS_DC_MEMORY_INFO_SEND.pb.h>
#include <protocol/MSG_QE_CS_DICTINDEX_VALUE.pb.h>
#include <protocol/MSG_QE_CS_REQUEST_COLUMN.pb.h>
#include <protocol/MSG_QE_CS_ROWKEY_DICTINDEX.pb.h>
typedef unsigned int DB_ID_TYPE;
typedef boost::shared_ptr<google::protobuf::Message> MessagePtr;
typedef std::vector<uint64_t> Uint64Vec;
typedef boost::shared_ptr<std::vector<uint64_t> > Uint64VecPtr;
typedef std::string STDSTR;
typedef boost::shared_ptr<std::string> StdStrPtr;
#define ROLL_SIZE 4096
#define DEFAULT_THREADS 13
#define SHM_PATH "CSQE.shm"
#define RET_SUCCESS 0
#define RET_FAIL -1
#define INITIALORDER 0
#define PROTO_STRING 0
#define PROTO_INT 1
#define PROTO_DOUBLE 2
#define GROUPKEY_STRING 0
#define GROUPKEY_INT 1
#define GROUPKEY_DOUBLE 2
#define SUCCESS 0
#define NO_RTABLE_OF_THIS_TABLE -37
#define UNKNOWN_DICT_TYPE -38
#define EXISTED_RTABLE -39
#define UNEXISTED_DATABASE -40
#define UNEXISTED_TABLE -41
#define UNEXISTED_COL -42
#define SHM_FAILED -43
#define MSG_DS_CS_RAW_DATA_SEND_CMD 0x1c
#define MSG_CS_DS_RAW_DATA_SEND_ACK_CMD 0x1d
#define MSG_DS_CS_RTABLE_CREATE_CMD 0x26
#define MSG_CS_DS_RTABLE_CREATE_ACK_CMD 0x27
#define MSG_DS_CS_UPDATE_DATA_SEND_CMD 0x28
#define MSG_CS_DS_UPDATE_DATA_SEND_ACK_CMD 0x29
#define MSG_DS_CS_RTABLE_SEND_CMD 0x2a
#define MSG_CS_DS_RTABLE_SEND_ACK_CMD 0x2b
#define MSG_DC_CS_SYSTEM_STATUS_GET_CMD 0x40
#define MSG_CS_DC_SYSTEM_STATUS_GET_ACK_CMD 0x41
#define MSG_CS_DC_LOCATION_INDEX_SEND_CMD 0x44
#define MSG_DC_CS_LOCATION_INDEX_SEND_ACK_CMD 0x45
#define MSG_CS_DC_MEMORY_INFO_SEND_CMD 0x42
#define MSG_DC_CS_MEMORY_INFO_SEND_ACK_CMD 0x43
#define MSG_QE_CS_REQUEST_COLUMN_CMD 0x50
#define MSG_CS_QE_REQUEST_COLUMN_ACK_CMD 0x51
#define MSG_QE_CS_DICTINDEX_VALUE_CMD 0x52
#define MSG_CS_QE_DICTINDEX_VALUE_ACK_CMD 0x53
#define MSG_QE_CS_ROWKEY_DICTINDEX_CMD 0x54
#define MSG_CS_QE_ROWKEY_DICTINDEX_ACK_CMD 0x55
enum class Choice
{
choiceRead = 0,
choiceWrite
};
typedef unsigned int UINT;
#define AVERAGE_ROW_NUM 1000
#define LIKELY(x) __builtin_expect(!!(x), 1)
#define UNLIKELY(x) __builtin_expect(!!(x), 0)
typedef MSG_CS_CS_ENTRY_GET EntryGetMsg;
typedef boost::shared_ptr<EntryGetMsg> EntryGetMsgPtr;
typedef MSG_CS_CS_ENTRY_GET_ACK EntryGetAck;
typedef boost::shared_ptr<EntryGetAck> EntryGetAckPtr;
typedef MSG_CS_CS_VALUE_GET ValueGetMsg;
typedef boost::shared_ptr<ValueGetMsg> ValueGetMsgPtr;
typedef MSG_CS_CS_VALUE_GET_ACK ValueGetAck;
typedef boost::shared_ptr<ValueGetAck> ValueGetAckPtr;
typedef MSG_CS_DC_COLUMN_POSITION_LOCATE ColumnLocateMsg;
typedef boost::shared_ptr<ColumnLocateMsg> ColumnLocateMsgPtr;
typedef MSG_DC_CS_COLUMN_POSITION_LOCATE_ACK ColumnLocateAck;
typedef boost::shared_ptr<ColumnLocateAck> ColumnLocateAckPtr;
typedef MSG_CS_DC_LOCATION_INDEX_SEND IndexSendMsg;
typedef boost::shared_ptr<IndexSendMsg> IndexSendMsgPtr;
typedef MSG_DC_CS_LOCATION_INDEX_SEND_ACK IndexSendAck;
typedef boost::shared_ptr<IndexSendAck> IndexSendAckPtr;
typedef MSG_CS_DC_RTABLE_POSITION_GET RTablePosGetMsg;
typedef boost::shared_ptr<RTablePosGetMsg> RTablePosGetMsgPtr;
typedef MSG_DC_CS_RTABLE_POSITION_GET_ACK RTablePosGetAck;
typedef boost::shared_ptr<RTablePosGetAck> RTablePosGetAckPtr;
typedef MSG_DC_CS_SYSTEM_STATUS_GET SysStatGetMsg;
typedef boost::shared_ptr<SysStatGetMsg> SysStatGetMsgPtr;
typedef MSG_CS_DC_SYSTEM_STATUS_GET_ACK SysStatGetAck;
typedef boost::shared_ptr<SysStatGetAck> SysStatGetAckPtr;
typedef MSG_DS_CS_RAW_DATA_SEND RawDataSendMsg;
typedef boost::shared_ptr<RawDataSendMsg> RawDataSendMsgPtr;
typedef MSG_CS_DS_RAW_DATA_SEND_ACK RawDataSendAck;
typedef boost::shared_ptr<RawDataSendAck> RawDataSendAckPtr;
typedef MSG_DS_CS_RTABLE_CREATE RTableCreateMsg;
typedef boost::shared_ptr<RTableCreateMsg> RTableCreateMsgPtr;
typedef MSG_CS_DS_RTABLE_CREATE_ACK RTableCreateAck;
typedef boost::shared_ptr<RTableCreateAck> RTableCreateAckPtr;
typedef MSG_DS_CS_RTABLE_SEND RTableSendMsg;
typedef boost::shared_ptr<RTableSendMsg> RTableSendMsgPtr;
typedef MSG_CS_DS_RTABLE_SEND_ACK RTableSendAck;
typedef boost::shared_ptr<RTableSendAck> RTableSendAckPtr;
typedef MSG_DS_CS_UPDATE_DATA_SEND UpdateDataSendMsg;
typedef boost::shared_ptr<UpdateDataSendMsg> UpdateDataSendMsgPtr;
typedef MSG_CS_DS_UPDATE_DATA_SEND_ACK UpdateDataSendAck;
typedef boost::shared_ptr<UpdateDataSendAck> UpdateDataSendAckPtr;
typedef PING PingMsg;
typedef PONG PongMsg;
typedef MSG_CS_DC_MEMORY_INFO_SEND MemInfoSendMsg;
typedef boost::shared_ptr<MemInfoSendMsg> MemInfoSendMsgPtr;
typedef MSG_QE_CS_REQUEST_COLUMN ReqColByFilterMsg;
typedef boost::shared_ptr<ReqColByFilterMsg> ReqColByFilterMsgPtr;
typedef MSG_CS_QE_REQUEST_COLUMN_ACK ReqColByFilterAck;
typedef boost::shared_ptr<ReqColByFilterAck> ReqColByFilterAckPtr;
typedef MSG_QE_CS_DICTINDEX_VALUE ReqColByDictIndexMsg;
typedef boost::shared_ptr<ReqColByDictIndexMsg> ReqColByDictIndexMsgPtr;
typedef MSG_CS_QE_DICTINDEX_VALUE_ACK ReqColByDictIndexAck;
typedef boost::shared_ptr<ReqColByDictIndexAck> ReqColByDictIndexAckPtr;
typedef MSG_QE_CS_ROWKEY_DICTINDEX ReqDictIndexMsg;
typedef boost::shared_ptr<ReqDictIndexMsg> ReqDictIndexMsgPtr;
typedef MSG_CS_QE_ROWKEY_DICTINDEX_ACK ReqDictIndexAck;
typedef boost::shared_ptr<ReqDictIndexAck> ReqDictIndexAckPtr;
#endif
| [
"[email protected]"
] | |
9ce4e98015b9756634a608f82d35a29e7916024d | d62d05b3efa21e66090f7b549a667f0f50b0e77e | /cagomelattice.cpp | 48dd151a54718cff922d58456b8f3b09bac3e12c | [] | no_license | piterand/partsEngine | f95a7f966dff911976042fcba097b3fb9c14d77d | 35fa3b02088ba0372672f05f286d84be5a277def | refs/heads/master | 2020-04-07T20:32:31.354609 | 2018-11-22T13:22:06 | 2018-11-22T13:22:06 | 158,692,888 | 1 | 0 | null | 2018-11-22T12:00:28 | 2018-11-22T12:00:27 | null | UTF-8 | C++ | false | false | 7,829 | cpp | #include "cagomelattice.h"
Cagomelattice::Cagomelattice()
{
}
void Cagomelattice::dropSymmetricLattice(double l, Vect size)
{
this->clear();
totalSize=size*l;
double lx=size.x;
for(int vert=0;vert<lx+1;vert++){
if(vert==0){
for(int horiz=0;horiz<(lx);horiz++){
Part *temp = new Part();
temp->pos=Vect(l/2+(horiz*2*l)+0.75*l,-l*sqrt(3)/4,0);
temp->m=Vect(1/2., -sqrt(3)/2.,0);
this->add(temp);
Part *temp1 = new Part();
temp1->pos=Vect(l/2+(horiz*2*l)+1.25*l,-l*sqrt(3)/4,0);
temp1->m=Vect(1/2., sqrt(3)/2.,0);
this->add(temp1);
}
}
else{
for(int horiz=0;horiz<lx+vert;horiz++){
Part *temp = new Part();
temp->pos=Vect(l/2+(horiz*2*l)+0.75*l-vert*l,-l*sqrt(3)/4+vert*l*sqrt(3)-l*sqrt(3)/2,0);
temp->m=Vect(1/2., sqrt(3)/2.,0);
this->add(temp);
Part *temp1 = new Part();
temp1->pos=Vect(l/2+(horiz*2*l)+1.25*l-vert*l,-l*sqrt(3)/4+vert*l*sqrt(3)-l*sqrt(3)/2,0);
temp1->m=Vect(1/2., -sqrt(3)/2.,0);
this->add(temp1);
Part *temp2 = new Part();
temp2->pos=Vect(l/2+(horiz*2*l)+0.75*l-vert*l,-l*sqrt(3)/4+l*sqrt(3)/2+vert*l*sqrt(3)-l*sqrt(3)/2,0);
temp2->m=Vect(1/2., -sqrt(3)/2.,0);
this->add(temp2);
Part *temp3 = new Part();
temp3->pos=Vect(l/2+(horiz*2*l)+1.25*l-vert*l,-l*sqrt(3)/4+l*sqrt(3)/2+vert*l*sqrt(3)-l*sqrt(3)/2,0);
temp3->m=Vect(1/2., sqrt(3)/2.,0);
this->add(temp3);
}
}
}
for(int vert=0;vert<lx;vert++){
if(vert==0){
for(int horiz=0;horiz<(lx);horiz++){
Part *temp = new Part();
temp->pos=Vect(l/2+(horiz*2*l)+0.75*l,-l*sqrt(3)/4 + 2*(4*lx-1)*l*sqrt(3)/4.,0);
temp->m=Vect(1/2., sqrt(3)/2.,0);
this->add(temp);
Part *temp1 = new Part();
temp1->pos=Vect(l/2+(horiz*2*l)+1.25*l,-l*sqrt(3)/4 + 2*(4*lx-1)*l*sqrt(3)/4.,0);
temp1->m=Vect(1/2., -sqrt(3)/2.,0);
this->add(temp1);
}
}
else{
for(int horiz=0;horiz<lx+vert;horiz++){
Part *temp = new Part();
temp->pos=Vect(l/2+(horiz*2*l)+0.75*l-vert*l,-l*sqrt(3)/4 - vert*l*sqrt(3) - l*sqrt(3)/2 + 2*(4*lx-1)*l*sqrt(3)/4. + l*sqrt(3)/2. ,0);
temp->m=Vect(1/2., sqrt(3)/2.,0);
this->add(temp);
Part *temp1 = new Part();
temp1->pos=Vect(l/2+(horiz*2*l)+1.25*l-vert*l,-l*sqrt(3)/4 - vert*l*sqrt(3) - l*sqrt(3)/2 + 2*(4*lx-1)*l*sqrt(3)/4. + l*sqrt(3)/2.,0);
temp1->m=Vect(1/2., -sqrt(3)/2.,0);
this->add(temp1);
Part *temp2 = new Part();
temp2->pos=Vect(l/2+(horiz*2*l)+0.75*l-vert*l,-l*sqrt(3)/4 + l*sqrt(3)/2 - vert*l*sqrt(3) - l*sqrt(3)/2 + 2*(4*lx-1)*l*sqrt(3)/4. + l*sqrt(3)/2.,0);
temp2->m=Vect(1/2., -sqrt(3)/2.,0);
this->add(temp2);
Part *temp3 = new Part();
temp3->pos=Vect(l/2+(horiz*2*l)+1.25*l-vert*l,-l*sqrt(3)/4 + l*sqrt(3)/2 - vert*l*sqrt(3) - l*sqrt(3)/2 + 2*(4*lx-1)*l*sqrt(3)/4. + l*sqrt(3)/2.,0);
temp3->m=Vect(1/2., sqrt(3)/2.,0);
this->add(temp3);
}
}
}
for(int vert=0;vert<2*lx;vert++){
if(vert<lx){
for(int horiz=0;horiz<(2*lx+1)+vert*2;horiz++){
Part *temp = new Part();
temp->pos=Vect(l/2+(horiz*l)-(l*vert),vert*l*sqrt(3),0);
temp->m=Vect(1,0,0);
this->add(temp);
}
}
else{
for(int horiz=0;horiz<(2*lx+1)+(2*lx-vert)*2-2;horiz++){
Part *temp = new Part();
temp->pos=Vect(-l/2+(horiz*l)+(l*(-2*lx+vert+2)),vert*l*sqrt(3),0);
temp->m=Vect(1,0,0);
this->add(temp);
}
}
}
this->setInteractionRange(0); //this->setInteractionRange(l/sqrt(8)*1.05);
}
void Cagomelattice::dropLattice2(double l, Vect size)
{
this->clear();
totalSize=size*l;
double p[][2]={
{l/2., l},
{l/4., l+l*sqrt(3)/4.},
{l*3/4., l+l*sqrt(3)/4.},
{l*3/2.,l},
{l*5/4.,l-l*sqrt(3)/4.},
{l*7/4.,l-l*sqrt(3)/4.}
};
double p2[][2]={
{l/4., l+l*3*sqrt(3)/4.},
{l*3/4., l+l*3*sqrt(3)/4.},
{l/2., l+l*sqrt(3)},
{l*3/2.,l+l*sqrt(3)},
{l*5/4.,l+5*l*sqrt(3)/4.},
{l*7/4.,l+5*l*sqrt(3)/4.}
};
double m[][2]={
{1,0},
{1/2., sqrt(3)/2.},
{1/2., -sqrt(3)/2.},
{1,0},
{1/2., -sqrt(3)/2.},
{-1/2., -sqrt(3)/2.}
};
double m2[][2]={
{1/2., -sqrt(3)/2.},
{-1/2., -sqrt(3)/2.},
{1, 0},
{1,0},
{1/2., sqrt(3)/2.},
{1/2., -sqrt(3)/2.}
};
//vector<Part*> top(size.x*4),bottom(size.x*4),left(size.y*4),right(size.y*4),front(size.z*4),back(size.z*4);
double lx,ly,ly2;
for (int i=0; i<size.x; i++){
for (int j=0; j<size.y; j++){
lx=l*(double)i;
ly=l*(double)j;
ly2=l*(double)(j-1);
if(j%2!=0)
{
for (int c=0;c<6;c++){
Part *temp = new Part();
temp->pos=Vect(p[c][0]+2*lx,p[c][1]+(2*ly*sqrt(3)/2.),0);
temp->m=Vect(m[c][0],m[c][1],0);
this->add(temp);
}
}
else {
for (int c=0;c<6;c++){
Part *temp = new Part();
temp->pos=Vect(p2[c][0]+2*lx,p2[c][1]+(2*(ly2)*sqrt(3)/2.),0);
temp->m=Vect(m2[c][0],m2[c][1],0);
this->add(temp);
}
}
}
}
this->setInteractionRange(0); //this->setInteractionRange(l/sqrt(8)*1.05);
}
void Cagomelattice::dropLattice(double l, Vect size)
{
this->clear();
totalSize=size*l;
double p[][2]={
{l/2., l},
{l/4., l+l*sqrt(3)/4.},
{l*3/4., l+l*sqrt(3)/4.},
{l*3/2.,l},
{l*5/4.,l-l*sqrt(3)/4.},
{l*7/4.,l-l*sqrt(3)/4.}
};
double m[][2]={
{1,0},
{1/2., sqrt(3)/2.},
{1/2., -sqrt(3)/2.},
{1,0},
{1/2., -sqrt(3)/2.},
{-1/2., -sqrt(3)/2.}
};
//vector<Part*> top(size.x*4),bottom(size.x*4),left(size.y*4),right(size.y*4),front(size.z*4),back(size.z*4);
double lx,ly;
for (int i=0; i<size.x; i++){
for (int j=0; j<size.y; j++){
lx=l*(double)i;
ly=l*(double)j;
for (int c=0;c<6;c++){
Part *temp = new Part();
temp->pos=Vect(p[c][0]+2*lx+ly,p[c][1]+(2*ly*sqrt(3)/2.),0);
temp->m=Vect(m[c][0],m[c][1],0);
this->add(temp);
}
}
}
this->setInteractionRange(0); //this->setInteractionRange(l/sqrt(8)*1.05);
}
| [
"[email protected]"
] |
Subsets and Splits